/* ========================================
   ZENTRONIQ INTERNSHIP PROGRAM
   Glassmorphism B&W Design with Pastel Accents
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@600&family=Urbanist:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Base Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --color-gray-950: #0a0a0a;

  /* Pastel Accent Colors - Brighter */
  --pastel-pink: rgba(255, 130, 170, 0.7);
  --pastel-blue: rgba(100, 200, 255, 0.7);
  --pastel-purple: rgba(200, 130, 255, 0.7);
  --pastel-mint: rgba(100, 255, 180, 0.7);
  --pastel-peach: rgba(255, 180, 130, 0.7);
  --pastel-lavender: rgba(180, 180, 255, 0.7);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;

  /* Typography */
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Urbanist', sans-serif;

  /* Spacing */
  --section-padding: 100px 5%;
  --nav-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  background: var(--color-black);
  overflow-x: hidden;
}

::selection {
  background: var(--pastel-purple);
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 40px;
  height: 40px;
  border-color: var(--pastel-purple);
  background: rgba(200, 130, 255, 0.1);
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple));
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.cursor-glow {
  position: fixed;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(200, 130, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-glow.active {
  opacity: 1;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

  .cursor,
  .cursor-trail,
  .cursor-glow {
    display: none;
  }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-white);
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo-img {
  height: 60px;
  width: auto;
  animation: pulse 1.5s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--color-gray-800);
  margin: 30px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue));
  animation: loading 1.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(350%);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ========================================
   FLOATING ORBS (Pastel Accents)
   ======================================== */
.orbs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--pastel-pink);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--pastel-blue);
  top: 60%;
  right: -5%;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--pastel-purple);
  bottom: 10%;
  left: 30%;
  animation-delay: -10s;
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: var(--pastel-mint);
  top: 30%;
  right: 20%;
  animation-delay: -15s;
}

.orb-5 {
  width: 280px;
  height: 280px;
  background: var(--pastel-peach);
  top: 70%;
  left: 10%;
  animation-delay: -7s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(50px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-30px, 50px) scale(0.9);
  }

  75% {
    transform: translate(-50px, -20px) scale(1.05);
  }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue), var(--pastel-pink));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(200, 130, 255, 0.5));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--color-gray-200);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-fast);
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */
.section {
  min-height: 100vh;
  padding: var(--section-padding);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--color-white);
}

.section-title span {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue), var(--pastel-pink));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

/* ========================================
   HERO SECTION
   ======================================== */
#home {
  padding-top: calc(var(--nav-height) + 60px);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--color-gray-300);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
  content: '';
}

.hero-program-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(255, 130, 170, 0.15), rgba(200, 130, 255, 0.15), rgba(100, 200, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
  display: inline-block;
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
  overflow: hidden;
}

.hero-program-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .gradient-text {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 0.75rem;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue), var(--pastel-pink));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

@media (max-width: 768px) {
  .hero-title .gradient-text {
    white-space: normal;
    font-size: 1rem;
  }
}

.hero-description,
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  max-width: 750px;
  margin: 1.5rem auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-primary:hover {
  background: var(--color-gray-200);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gray-700);
}

.btn-secondary:hover {
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.hero-powered {
  margin-top: 4rem;
  font-size: 0.85rem;
  color: var(--color-gray-600);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-powered strong {
  color: var(--color-gray-400);
}

/* ========================================
   GLASS CARDS
   ======================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-medium);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: left;
}

.why-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-blue), var(--pastel-purple));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 1rem;
  animation: gradientFlow 4s ease infinite;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.why-card-text {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* ========================================
   LIVE PROJECTS SECTION
   ======================================== */
.live-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.live-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.live-text p {
  color: var(--color-gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.live-criteria {
  margin-bottom: 2rem;
}

.live-criteria h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}

.live-criteria ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.live-criteria li {
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--color-gray-300);
}

.live-benefits {
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.benefit-item::before {
  content: '✔';
  font-size: 1rem;
  color: var(--pastel-mint);
}

.benefit-item span {
  font-size: 0.95rem;
  color: var(--color-gray-300);
}

/* ========================================
   STREAMS SECTION
   ======================================== */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.stream-card {
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stream-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue));
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.stream-card:hover::before {
  transform: scaleX(1);
}

.stream-icon {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue), var(--pastel-pink));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.stream-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.stream-desc {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

/* ========================================
   DIFFERENCE SECTION
   ======================================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.diff-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  border-radius: 50%;
  font-size: 1.2rem;
}

.diff-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.diff-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.diff-note p {
  color: var(--color-gray-400);
  font-size: 1rem;
  line-height: 1.8;
}

.diff-note strong {
  color: var(--color-white);
}

/* ========================================
   STRUCTURE SECTION
   ======================================== */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.structure-card {
  position: relative;
  overflow: hidden;
}

.structure-card.recommended {
  border-color: var(--pastel-purple);
}

.structure-card.recommended::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 0.75rem;
  right: -5.5rem;
  padding: 0.25rem 3rem;
  background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
  z-index: 1;
}

.structure-duration {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-purple), var(--pastel-blue));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: gradientFlow 4s ease infinite;
}

.structure-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.structure-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.structure-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray-400);
}

.structure-features li::before {
  content: '→';
  color: var(--pastel-mint);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
}

.benefit-card-icon {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-purple), var(--pastel-blue));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.benefit-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

/* ========================================
   ELIGIBILITY SECTION
   ======================================== */
.eligibility-content {
  text-align: center;
}

.eligibility-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.eligibility-item {
  padding: 1rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--color-gray-300);
  transition: var(--transition-fast);
}

.eligibility-item:hover {
  border-color: var(--pastel-purple);
  transform: translateY(-3px);
}

.eligibility-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(152, 251, 152, 0.1), rgba(173, 216, 230, 0.1));
  border: 1px solid rgba(152, 251, 152, 0.2);
  border-radius: 12px;
  display: inline-block;
}

.eligibility-note p {
  font-size: 0.95rem;
  color: var(--color-gray-300);
}

/* ========================================
   REGISTRATION SECTION
   ======================================== */
#apply {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.register-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Pricing Panel */
.pricing-panel {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.early-bird-banner {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 130, 170, 0.1), rgba(200, 130, 255, 0.1));
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.early-bird-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-purple), var(--pastel-blue), var(--pastel-pink));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
  margin-bottom: 1rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.countdown-label {
  font-size: 0.65rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.early-bird-note {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

.pricing-display {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

.price-original {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-gray-500);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--pastel-mint);
  background: linear-gradient(135deg, var(--pastel-mint), var(--color-gray-100));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.price-savings {
  font-size: 0.85rem;
  color: var(--pastel-mint);
  margin-top: 0.5rem;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
}

.toggle-options {
  display: flex;
  gap: 0.5rem;
}

.toggle-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-400);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.toggle-btn.active {
  background: rgba(200, 130, 255, 0.15);
  border-color: var(--pastel-purple);
  color: var(--color-white);
}

/* Registration Form */
.register-form-container {
  padding: 2rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-300);
}

.required {
  color: var(--pastel-pink);
  margin-left: 0.25rem;
}

.form-input,
.form-select {
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-gray-600);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--pastel-purple);
  background: rgba(200, 130, 255, 0.05);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23737373' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--color-gray-900);
  color: var(--color-white);
  padding: 0.5rem;
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-select {
  width: 90px;
  flex-shrink: 0;
  background-position: right 0.5rem center;
  padding-right: 1.5rem;
}

.phone-input {
  flex: 1;
}

.referral-input-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.referral-input-group .form-input {
  flex: 1;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-gray-400);
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--pastel-purple);
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.checkbox-label:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  accent-color: var(--pastel-purple);
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--color-gray-300);
  white-space: nowrap;
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .register-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-panel {
    position: relative;
    top: 0;
  }
}

@media (max-width: 480px) {
  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-item {
    min-width: 40px;
    padding: 0.4rem;
  }

  .countdown-value {
    font-size: 1rem;
  }

  .toggle-options {
    flex-direction: column;
  }

  .phone-input-group {
    flex-direction: column;
  }

  .country-select {
    width: 100%;
  }

  .referral-input-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 60px 5%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section .section-title {
  margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.25rem;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--pastel-purple);
}

.contact-icon.whatsapp svg {
  color: #25D366;
}

.contact-icon.instagram svg {
  color: #E1306C;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.contact-info {
  font-size: 0.9rem;
  color: var(--color-gray-400);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ========================================
   FOOTER
   ========================================*/
.footer {
  padding: 3rem 5%;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pastel-purple);
}

.footer-text {
  font-size: 0.85rem;
  color: var(--color-gray-600);
}

/* ========================================
   POLICY PAGES
   ======================================== */
.policy-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 60px) 5% 60px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.policy-updated {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: 3rem;
}

.policy-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy-content strong {
  color: var(--color-white);
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  max-width: 450px;
  width: 90%;
  padding: 3rem 2rem;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.success-modal.active .success-modal-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.checkmark {
  width: 100%;
  height: 100%;
}

.checkmark-circle {
  stroke: var(--pastel-mint);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: var(--pastel-mint);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.success-message {
  font-size: 1rem;
  color: var(--color-gray-400);
  margin-bottom: 2rem;
}

.success-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}

.detail-value {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.success-actions .btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  text-align: center;
}

.whatsapp-cta-text {
  font-size: 0.9rem;
  color: var(--color-gray-300);
  margin-bottom: 1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
}

.btn-copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-300);
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-copy-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.btn-copy-link.copied {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.5);
}

/* ========================================
   CORPORATE SECTIONS
   ======================================== */

/* Value Propositions */
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-prop-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.value-prop-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 130, 255, 0.2), rgba(130, 200, 255, 0.2));
  border-radius: 50%;
}

.value-prop-icon svg {
  width: 32px;
  height: 32px;
  color: var(--pastel-purple);
}

.value-prop-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.value-prop-desc {
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mission-card,
.vision-card {
  text-align: center;
  padding: 2rem;
}

.mission-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pastel-purple);
  margin-bottom: 1rem;
}

.mission-text {
  font-size: 1rem;
  color: var(--color-gray-300);
  line-height: 1.8;
}

.mission-text strong {
  color: var(--color-white);
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.solution-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.solution-card.featured {
  border-color: var(--pastel-purple);
}

.solution-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-pink));
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 50px;
  text-transform: uppercase;
}

.solution-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.solution-icon svg {
  width: 28px;
  height: 28px;
  color: var(--pastel-blue);
}

.solution-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.solution-desc {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.solution-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.solution-list li {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.solution-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pastel-purple);
}

.solution-cta {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(180deg, transparent, rgba(200, 130, 255, 0.05), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-gray-300);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--pastel-purple);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

/* CTA Section */
.cta-section {
  padding: 60px 5%;
}

.cta-content {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1rem;
  color: var(--color-gray-400);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive for Corporate Sections */
@media (max-width: 992px) {
  .value-props-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.active>*:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-children.active>*:nth-child(2) {
  transition-delay: 100ms;
}

.stagger-children.active>*:nth-child(3) {
  transition-delay: 200ms;
}

.stagger-children.active>*:nth-child(4) {
  transition-delay: 300ms;
}

.stagger-children.active>*:nth-child(5) {
  transition-delay: 400ms;
}

.stagger-children.active>*:nth-child(6) {
  transition-delay: 500ms;
}

.stagger-children.active>*:nth-child(7) {
  transition-delay: 600ms;
}

.stagger-children.active>* {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .live-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .structure-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 5%;
    --nav-height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-program-title {
    text-align: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .why-grid,
  .streams-grid,
  .diff-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .apply-steps {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .preloader-logo {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }

  .preloader-logo-img {
    height: 40px;
  }

  .preloader-bar {
    width: 150px;
  }

  .orb {
    filter: blur(60px);
    opacity: 0.3;
  }

  .orb-1,
  .orb-2,
  .orb-3,
  .orb-4,
  .orb-5 {
    width: 200px;
    height: 200px;
  }

  /* Registration form mobile */
  .register-wrapper {
    padding: 1.5rem;
  }

  .pricing-panel {
    padding: 1.5rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-item {
    padding: 0.5rem;
    min-width: 50px;
  }

  .countdown-value {
    font-size: 1.25rem;
  }

  .pricing-options {
    padding: 0.75rem;
  }

  .toggle-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .toggle-btn {
    padding: 0.625rem 1rem;
    font-size: 0.7rem;
  }

  .price-current {
    font-size: 2rem;
  }

  .register-form-container {
    padding: 1.5rem;
  }

  .form-input,
  .form-select {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .checkbox-label {
    padding: 0.875rem 1rem;
  }

  .checkbox-text {
    font-size: 0.8rem;
  }

  .btn-whatsapp {
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
  }

  .success-modal-content {
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}