/* ========================================
   HEDRIX TECHNOLOGY - TRAINING DIVISION
   Premium Dark Mode Sci-Fi Theme
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;
  --bg-card: rgba(20, 20, 30, 0.8);

  /* Neon Accents */
  --neon-blue: #00d4ff;
  --neon-purple: #8b5cf6;
  --neon-cyan: #22d3ee;
  --neon-pink: #ec4899;
  --neon-green: #10b981;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--neon-blue),
    var(--neon-purple)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--neon-purple),
    var(--neon-pink)
  );
  --gradient-glow: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.3),
    rgba(139, 92, 246, 0.3)
  );

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1; /* Slightly lighter for better contrast */
  --text-muted: #94a3b8;
  --text-dark: #64748b;

  /* Effects */
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
  --glow-purple:
    0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
  --glow-combined:
    0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(139, 92, 246, 0.3);

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px); /* Increased padding for "air" */
  --container-max: 1200px;

  /* Typography */
  --font-primary: "Cairo", sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px; /* Significantly reduced base size */
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6; /* Increased line-height for readability */
  overflow-x: hidden;
  direction: rtl;
  -webkit-font-smoothing: antialiased; /* Sharper text */
}

/* ... (Keeping Particle Canvas, Selection, Container, Nav as is roughly, just minor tweaks if needed) ... */

/* Particle Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Selection */
::selection {
  background: var(--neon-purple);
  color: white;
}

/* Container */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 24px; /* Reduced padding */
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 100%; /* Removed container constraint */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px; /* Added extra padding for "Full Width" feel */
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-img {
  height: 45px; /* Reduced from 70px */
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800; /* Reduced from 900 */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px; /* Slight reduction for tightness */
}

.logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem; /* Standardized size */
  font-weight: 500;
  transition: var(--transition-normal);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--neon-blue);
}

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

/* Toggle Styles */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  transform: translateY(-20px);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-link:hover {
  color: var(--neon-blue);
}

.mobile-cta {
  padding: 12px 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: var(--glow-blue);
}

.nav-cta {
  padding: 12px 28px; /* Slightly larger clickable area */
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  box-shadow: var(--glow-blue);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-combined);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px; /* Increased top padding */
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: -1;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-xl);
  font-size: 0.9rem; /* Increased legibility */
  font-weight: 600;
  color: var(--neon-purple);
  margin-bottom: 32px; /* More space */
  animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
  }
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Aggressively reduced */
  font-weight: 800; /* Reduced from 900 for cleaner look */
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -1px; /* Tighter heading */
}

.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.glitch-text:hover::before {
  animation: glitch-1 0.3s linear;
  color: var(--neon-cyan);
  opacity: 0.8;
}

.glitch-text:hover::after {
  animation: glitch-2 0.3s linear;
  color: var(--neon-pink);
  opacity: 0.8;
}

@keyframes glitch-1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(3px, -3px);
  }
  60% {
    transform: translate(-3px, -3px);
  }
  80% {
    transform: translate(3px, 3px);
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(3px, -3px);
  }
  40% {
    transform: translate(-3px, 3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(-3px, -3px);
  }
}

.highlight-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem; /* 18px */
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 90%;
}

.brand-highlight {
  color: var(--neon-blue);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--glow-blue);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow-combined);
}

.cta-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.cta-primary:hover .cta-glow {
  left: 100%;
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Thinner border */
}

.cta-secondary:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.cta-icon {
  font-size: 1.2rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem; /* Slightly smaller */
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hologram-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.hologram-ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: ring-rotate 20s linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-color: rgba(0, 212, 255, 0.3);
  animation-duration: 20s;
}

.ring-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: rgba(139, 92, 246, 0.3);
  animation-duration: 15s;
  animation-direction: reverse;
}

.ring-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: rgba(34, 211, 238, 0.3);
  animation-duration: 10s;
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.code-blocks {
  position: absolute;
  width: 100%;
  height: 100%;
}

.code-block {
  position: absolute;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: "Fira Code", monospace;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  direction: ltr;
  text-align: left;
}

.block-1 {
  top: 5%;
  right: -10%;
  animation-delay: 0s;
}

.block-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 2s;
}

.block-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 4s;
  color: var(--neon-green);
  border-color: rgba(16, 185, 129, 0.3);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.phone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 360px;
  background: linear-gradient(145deg, #1a1a25, #0a0a0f);
  border-radius: 30px;
  padding: 10px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--glow-blue);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 22px;
  overflow: hidden;
  padding: 20px 12px;
}

.app-header {
  width: 60%;
  height: 12px;
  background: var(--gradient-primary);
  border-radius: 6px;
  margin-bottom: 20px;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-card {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn {
  width: 100%;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 20px;
  margin-top: 20px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem); /* Aggressively reduced */
  font-weight: 800; /* Reduced from 900 */
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.95rem; /* Reduced below 1rem */
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
  padding: var(--section-padding) 24px;
  position: relative;
  z-index: 1;
}

.advantages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  z-index: -1;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.advantage-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-normal);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.advantage-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    var(--glow-blue);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: white;
}

.card-icon svg {
  width: 30px;
  height: 30px;
}

/* ... Advantage Cards ... */
.card-title {
  font-size: 1.4rem;
  font-weight: 700; /* Reduced from 800 */
  margin-bottom: 12px;
}

.card-desc {
  color: var(--text-muted);
  line-height: 1.6; /* Consistent line-height */
  font-size: 0.95rem;
}

/* ... Timeline ... */
.marker-number {
  font-size: 1.5rem;
  font-weight: 800; /* Reduced from 900 */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700; /* Reduced from 800 */
  color: var(--text-primary);
  margin-bottom: 4px;
  direction: ltr;
  text-align: right;
  letter-spacing: -0.5px;
}

.timeline-price {
  font-size: 2rem;
  font-weight: 800; /* Reduced from 900 */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

/* ... Pricing Cards ... */
.pricing-name {
  font-size: 1.5rem;
  font-weight: 700; /* Reduced from 800 */
  letter-spacing: -0.5px;
}

.price {
  font-size: 3rem;
  font-weight: 800; /* Reduced from 900 */
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  box-shadow: var(--glow-purple);
}

.check {
  color: var(--neon-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-features li {
  font-size: 0.95rem;
}

/* ... Installment ... */
.installment-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--neon-blue);
}

/* ... Squad ... */
.squad-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.squad-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

/* ... Certification ... */
.seal-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-requirements h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.fee-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neon-purple);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.advantage-card:hover .card-glow {
  opacity: 1;
  box-shadow: var(--glow-blue);
}

/* ========================================
   ROADMAP SECTION
   ======================================== */
.roadmap {
  padding: var(--section-padding) 24px;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.timeline-progress {
  width: 100%;
  height: 50%;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: var(--glow-blue);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(30px);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 3px solid var(--neon-blue);
  border-radius: 50%;
  z-index: 2;
}

.marker-number {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marker-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--neon-blue);
  opacity: 0.2;
  filter: blur(15px);
  animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
}

.timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
}

.timeline-content:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.level-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.level-1 {
  background: rgba(0, 212, 255, 0.15);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.level-2 {
  background: rgba(139, 92, 246, 0.15);
  color: var(--neon-purple);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  direction: ltr;
  text-align: right;
}

.timeline-arabic-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.timeline-price {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.timeline-price span {
  font-size: 1rem;
  font-weight: 600;
}

.timeline-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.detail-icon {
  font-size: 1.2rem;
}

.timeline-goal {
  padding: 16px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: var(--radius-md);
  border-right: 3px solid var(--neon-blue);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
  padding: var(--section-padding) 24px;
  position: relative;
  z-index: 1;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 50%
  );
  z-index: -1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(
    145deg,
    rgba(139, 92, 246, 0.15),
    rgba(0, 212, 255, 0.1)
  );
  border: 2px solid var(--neon-purple);
  transform: scale(1.05);
  box-shadow: var(--glow-purple);
}

.pricing-card.featured.revealed {
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  box-shadow: var(--glow-purple);
}

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

.pricing-tier {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
}

.pricing-amount {
  margin-bottom: 24px;
}

.old-price {
  display: block;
  font-size: 1.2rem;
  color: var(--text-dark);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.savings-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  color: var(--neon-green);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: right;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--neon-green);
  font-weight: 700;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-normal);
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--neon-blue);
}

.pricing-cta.featured-cta {
  background: var(--gradient-primary);
  border: none;
  box-shadow: var(--glow-blue);
}

.pricing-cta.featured-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-combined);
}

/* Installment Section */
.installment-section {
  opacity: 0;
  transform: translateY(20px);
}

.installment-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.installment-card {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.installment-icon {
  font-size: 3rem;
}

.installment-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--neon-blue);
}

.installment-content p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.installment-content strong {
  color: var(--text-primary);
}

.installment-note {
  font-size: 0.85rem;
  color: var(--neon-green);
}

/* ========================================
   SQUAD SECTION
   ======================================== */
.squad {
  padding: var(--section-padding) 24px;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.squad-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  overflow: hidden;
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(30px);
}

.squad-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.squad-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-purple);
  box-shadow: var(--glow-purple);
}

.squad-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.squad-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.squad-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.squad-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.squad-prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.squad-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.squad-level {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.squad-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

.squad-amount small {
  font-size: 0.8rem;
  font-weight: 600;
}

.squad-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: var(--transition-normal);
}

.squad-card:hover .squad-glow {
  opacity: 1;
}

/* ========================================
   CERTIFICATION SECTION
   ======================================== */
.certification {
  padding: var(--section-padding) 24px;
  position: relative;
  z-index: 1;
}

.cert-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
}

.cert-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cert-visual {
  flex-shrink: 0;
}

.cert-seal {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--neon-blue);
  border-radius: 50%;
  animation: seal-rotate 30s linear infinite;
}

.seal-outer::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--neon-blue);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes seal-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: var(--bg-secondary);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  z-index: 2;
}

.seal-text {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seal-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 3px;
}

.seal-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--neon-blue);
  opacity: 0.15;
  filter: blur(30px);
  animation: seal-pulse 3s ease-in-out infinite;
}

@keyframes seal-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.25;
  }
}

.cert-info {
  flex: 1;
}

.cert-tagline {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--neon-cyan);
  margin-bottom: 24px;
}

.cert-requirements {
  margin-bottom: 24px;
}

.cert-requirements h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cert-requirements ul {
  list-style: none;
}

.cert-requirements li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.req-icon {
  font-size: 1.2rem;
}

.cert-fee {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-md);
}

.fee-label {
  color: var(--text-muted);
}

.fee-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neon-purple);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
  padding: var(--section-padding) 24px;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 60%
  );
  z-index: -1;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
}

.cta-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-buttons {
  margin-bottom: 32px;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-size: 1.2rem;
  font-weight: 800;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-combined);
}

.mega-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 40px rgba(0, 212, 255, 0.5),
    0 0 80px rgba(139, 92, 246, 0.4);
}

.mega-cta-icon {
  font-size: 1.4rem;
}

.mega-cta-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: mega-shine 3s ease-in-out infinite;
}

@keyframes mega-shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 60px 24px 24px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 0;
  transition: var(--transition-normal);
}

.footer-col a:hover {
  color: var(--neon-blue);
}

.whatsapp-link {
  color: var(--neon-green) !important;
}

.whatsapp-link:hover {
  color: #25d366 !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-dark);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
[data-reveal] {
  opacity: 0; /* Fix initial flash */
  /* Animation handled by JS keyframes */
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 60px;
  }

  .hologram-container {
    width: 300px;
    height: 300px;
  }

  .code-block {
    display: none;
  }

  .cert-content {
    flex-direction: column;
    text-align: center;
  }

  .cert-requirements li {
    justify-content: center;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: flex; /* Show toggle */
    order: 1; /* Toggle on Right (Start) */
  }

  .logo {
    order: 2; /* Logo on Left (End) */
  }

  .timeline-line {
    right: 20px;
  }

  .timeline-item {
    gap: 20px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .marker-number {
    font-size: 1rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured.revealed {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .installment-card {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========================================
   PRICE COMPARISON & NEW ELEMENTS
   ======================================== */

/* Old Price Variations */
.old-price-sm {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 8px; /* Space between old and new */
}

.old-price-xs {
  display: block;
  font-size: 0.75rem;
  text-decoration: line-through;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
}

/* Timeline Price Update */
.timeline-price {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   REDESIGNED SQUAD OFFERS
   ======================================== */
.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.squad-item {
  position: relative;
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  display: flex;
  /* flex-direction: column; */
  transition: var(--transition-normal);
}

.squad-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.squad-visual {
  width: 100px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.squad-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
  animation: squad-pulse 3s infinite;
}

.partner-color {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.squad-emoji {
  font-size: 1.8rem;
}

.squad-details {
  flex: 1;
  padding: 24px;
}

.squad-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.squad-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.squad-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  border-radius: var(--radius-md);
}

.sp-col {
  display: flex;
  flex-direction: column;
}

.sp-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.sp-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-purple);
}

.partner-color + .squad-details .sp-val {
  color: var(--neon-blue);
}

.sp-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.squad-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

@keyframes squad-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========================================
   ENHANCED INSTALLMENT BOX
   ======================================== */
.installment-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.installment-box {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  padding: 2px; /* For gradient border */
  max-width: 700px;
  width: 100%;
  overflow: hidden;
}

.glow-border {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent, 
    rgba(16, 185, 129, 0.4), 
    transparent 30%
  );
  animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.installment-content {
  position: relative;
  background: var(--bg-secondary);
  border-radius: calc(var(--radius-xl) - 2px);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

.inst-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.inst-text h4 {
  font-size: 1.1rem;
  color: var(--neon-green);
  margin-bottom: 4px;
}

.inst-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.highlight-val {
  color: var(--text-primary);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.inst-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--neon-green);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ========================================
   ROADMAP PRICING POLISH
   ======================================== */
.timeline-price-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  min-width: 180px;
  /* backdrop-filter: blur(5px); Removed for performance */
}

.tp-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tp-values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tp-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-dark);
}

.tp-new {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-green);
  line-height: 1;
}

.level-2 .tp-new {
  color: var(--neon-cyan);
}

/* ========================================
   CAREER OPPORTUNITY (GOLD SECTION)
   ======================================== */
.career-opp {
  padding: var(--section-padding) 0;
  position: relative;
}

.career-card {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.95), rgba(30, 30, 40, 0.9));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.career-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.career-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.career-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: #fbbf24; /* Amber-400 */
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.career-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight-gold {
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.career-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
}

.career-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cf-icon {
  font-size: 1.2rem;
}

.career-visual {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.gold-badge {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(251, 191, 36, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.gb-icon {
  font-size: 4rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.gb-text {
  font-weight: 900;
  font-size: 1.2rem;
  color: #451a03;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  /* Career Card Mobile Optimization */
  .career-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }
  
  .career-title {
    font-size: 1.8rem;
  }

  .career-features {
    justify-content: center;
    gap: 12px;
  }
  
  .cf-item {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
  
  .career-visual {
    margin-top: 10px;
    flex: 0 0 auto;
  }

  .gold-badge {
    width: 160px;
    height: 160px;
  }

  .gb-icon {
    font-size: 3rem;
  }
  
  .gb-text {
    font-size: 1rem;
  }

  /* Squad & Installment Mobile */
  .squad-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .installment-box {
    margin: 0 16px;
    border-radius: var(--radius-lg);
  }

  .installment-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }

  .inst-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .cf-item {
    width: 100%;
    justify-content: center;
  }
  
  .mega-cta {
     width: 100%;
     justify-content: center;
     padding: 16px 24px;
     font-size: 1.1rem;
  }
}


/* ========================================
   GLOBAL MOBILE FIXES (CRITICAL)
   ======================================== */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

.section-container, .hero-content, .nav-container {
  max-width: 100%;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.advantage-card {
  width: 100%;
  /* max-width removed to fix desktop size */
}

/* ========================================
   MEGA SQUAD REDESIGN
   ======================================== */
.mega-squad-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .mega-squad-wrapper {
    flex-direction: column;
    gap: 60px;
  }
}

.mega-card {
  flex: 1;
  background: rgba(20, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  position: relative;
  transition: all 0.4s ease;
  /* backdrop-filter: blur(10px); Removed for performance */
}

.mega-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.family-card {
  border-top: 4px solid var(--neon-purple);
}

.friends-card {
  border-top: 4px solid var(--neon-blue);
}

.mega-visual {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mega-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.partner-icon {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.mega-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.mega-info {
  padding: 24px 30px 40px;
  text-align: center;
}

.mega-info h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #fff;
}

.mega-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.mega-pricing {
  background: rgba(0,0,0,0.3);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.mp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.mp-row span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mp-price {
  text-align: left;
}

.mp-price s {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.mp-price strong {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.highlight-row strong {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.mp-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 12px 0;
}

/* VS DIVIDER STYLE */
.mega-vs {
  width: 60px;
  height: 60px;
  background: #000;
  border: 2px solid var(--neon-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--neon-pink);
  z-index: 10;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
  font-size: 1.1rem;
  animation: pulse-pink 2s infinite;
}

@keyframes pulse-pink {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(236, 72, 153, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

@media (max-width: 900px) {
  .mega-vs {
    margin: -30px 0; /* Neg margin to overlap on mobile */
  }
}
