/* ================================================
   MOBILE CARE CENTER ACADEMY — style.css
   Dark Mode Professional Theme
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1525;
  --bg-card: #131b2e;
  --bg-card-hover: #1a2540;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --accent-glow: rgba(245, 166, 35, 0.4);
  --accent2: #e63946;
  --blue: #3a86ff;
  --blue-dim: rgba(58, 134, 255, 0.15);
  --text-primary: #f0f4ff;
  --text-secondary: #8a9bc0;
  --text-muted: #4a5a7a;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(245, 166, 35, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Spider Canvas ---------- */
#spiderCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #e0941a);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
  border: 2px solid transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn-path {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border-accent);
  transition: var(--transition);
  margin-top: 20px;
  text-align: center;
}
.btn-path:hover {
  background: var(--accent);
  color: #0a0e1a;
}

.btn-path-gold {
  background: var(--accent-dim);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-ms {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  text-shadow: 0 0 20px var(--accent-glow);
}
.logo-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); background: var(--accent-dim); }
.nav-cta {
  background: var(--accent) !important;
  color: #0a0e1a !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); background: var(--accent) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}
.highlight {
  color: var(--accent);
  position: relative;
}
.brand-name {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-tags span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.3), transparent);
  border-radius: var(--radius);
}
.video-play-hint {
  position: absolute;
  bottom: 20px; right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.video-play-hint svg { width: 16px; height: 16px; }

/* ---------- OFFER ---------- */
.offer-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.offer-card {
  background: linear-gradient(135deg, var(--bg-card), #1a2540);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.offer-badge-top {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--accent);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.offer-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}
.offer-number { color: var(--accent); font-size: 1.2em; }
.offer-text p { color: var(--text-secondary); margin-bottom: 24px; }
.offer-features { margin-bottom: 28px; }
.offer-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.feat-icon { color: var(--accent); font-weight: 900; font-size: 1.1rem; }

.offer-countdown { text-align: center; }
.countdown-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  min-width: 80px;
}
.c-box span {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.c-box small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}
.c-sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}
.countdown-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.countdown-note strong { color: var(--accent); }

/* ---------- ABOUT ---------- */
.about-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- PATHS ---------- */
.paths-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.path-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.path-card-advanced {
  border-color: var(--border-accent);
  background: linear-gradient(160deg, var(--bg-card), rgba(245,166,35,0.05));
}
.path-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.path-card:hover .path-img img {
  transform: scale(1.06);
}
.path-badge {
  display: inline-block;
  background: var(--blue-dim);
  border: 1px solid rgba(58,134,255,0.3);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.path-badge-blue { background: var(--blue-dim); border-color: rgba(58,134,255,0.3); color: var(--blue); }
.path-badge-gold { background: var(--accent-dim); border-color: var(--border-accent); color: var(--accent); }
.path-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.path-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex: 1;
}
.path-topics {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.path-topics li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.path-topics li::before {
  content: '⚡';
  font-size: 0.7rem;
  flex-shrink: 0;
}
.advanced-details { margin-bottom: 12px; }
.adv-section { margin-bottom: 16px; }
.adv-section h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.adv-note {
  font-size: 0.82rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 8px;
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-section .section-title { text-align: center; }
.how-section .section-label { display: block; text-align: center; }
.steps-row {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  max-width: 280px;
  transition: var(--transition);
}
.step-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.step-num {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.step-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-item p { color: var(--text-secondary); font-size: 0.88rem; }
.step-arrow { font-size: 2rem; color: var(--text-muted); transform: scaleX(-1); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testi-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.92rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-accent); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  background: var(--bg-card);
  transition: var(--transition);
}
.faq-q:hover { color: var(--accent); background: var(--bg-card-hover); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 300;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #0a0e1a; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-card);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

/* ---------- REGISTER ---------- */
.register-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.register-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.register-info h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.35;
}
.register-info p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}
.reg-steps { margin-bottom: 24px; }
.reg-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.reg-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #0a0e1a;
  font-weight: 900;
  font-size: 0.82rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reg-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.register-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-path-display {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.form-path-display strong { color: var(--accent); }
.reg-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-half { max-width: 50%; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.form-group input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.btn-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text-fallback { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-contact a { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- HERO FULL (centered, no video) ---------- */
.hero-full {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 24px 80px;
}
.hero-content-center {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.hero-content-center .hero-sub {
  margin: 0 auto 28px;
}
.hero-content-center .hero-tags {
  justify-content: center;
}
.hero-content-center .hero-btns {
  justify-content: center;
}

/* ---------- VIDEO SECTION ---------- */
.video-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.video-wrap-section {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.video-wrap-section video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.video-wrap-section .video-play-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  gap: 10px;
  padding: 20px 32px;
  font-size: 1rem;
}
.video-wrap-section .video-play-hint svg { width: 32px; height: 32px; }

/* ---------- OFFER START DATE ---------- */
.offer-start-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-primary);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
}
.offer-start-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offer-start-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 30px var(--accent-glow);
}

/* ======= SCROLL ANIMATIONS ======= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .paths-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .offer-inner { grid-template-columns: 1fr; gap: 32px; }
  .offer-countdown { text-align: right; }
  .register-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 32px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-video-wrap { order: -1; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 280px;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    gap: 4px;
    border-left: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; font-size: 1rem; padding: 12px 16px; }
  .hamburger { display: flex; z-index: 1000; }

  .paths-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group-half { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .c-box { min-width: 60px; padding: 12px; }
  .c-box span { font-size: 1.6rem; }
  .offer-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.7rem; }
  .register-form-wrap { padding: 24px 16px; }
}
