/* ============================================
   English M3aya — Landing Page (Premium Navy/Gold)
   ============================================ */

:root {
  --lp-navy: #0d1b3e;
  --lp-navy-mid: #152848;
  --lp-navy-light: #1E3560;
  --lp-gold: #C79A33;
  --lp-gold-light: #E0B55A;
  --lp-gold-pale: #F7EDD6;
  --lp-blue: #0C77B6;
  --lp-blue-light: #1A90D4;
  --lp-white: #FFFFFF;
  --lp-off-white: #F8F6F1;
  --lp-text-muted: #8A9BBF;
}

.landing-page {
  font-family: 'DM Sans', sans-serif !important;
  background: var(--lp-navy) !important;
  color: var(--lp-white) !important;
  overflow-x: hidden;
  min-height: 100vh;
}
/* Scoped resets — prevent global styles from leaking into landing page */
.landing-page *, .landing-page *::before, .landing-page *::after {
  box-sizing: border-box;
}
.landing-page h1, .landing-page h2, .landing-page h3,
.landing-page h4, .landing-page h5, .landing-page h6 {
  margin: 0; padding: 0; color: var(--lp-white);
  font-family: 'Playfair Display', serif;
}
.landing-page p { margin: 0; padding: 0; }
.landing-page a { color: inherit; }
.landing-page ul { margin: 0; padding: 0; }
.landing-page section { border: none; box-shadow: none; }
.landing-page button { font-family: 'DM Sans', sans-serif; }
.landing-page nav { box-shadow: none; }

/* ─── NAV ─── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(12,27,58,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,151,58,0.15);
  transition: padding 0.3s, background 0.3s;
}
.lp-nav.scrolled {
  padding: 12px 48px;
  background: rgba(12,27,58,0.97);
}
.lp-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; letter-spacing: 0.5px;
  color: var(--lp-white); text-decoration: none;
}
.lp-nav-logo span { color: var(--lp-gold); }
.lp-nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.lp-nav-links a {
  color: var(--lp-text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--lp-gold); }
.lp-nav-actions { display: flex; align-items: center; gap: 12px; }
.lp-nav-signin {
  background: transparent; color: var(--lp-text-muted);
  border: 1px solid rgba(255,255,255,0.15); padding: 9px 20px; border-radius: 6px;
  font-weight: 500; font-size: 14px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.lp-nav-signin:hover { border-color: var(--lp-gold); color: var(--lp-gold); }
.lp-nav-cta {
  background: var(--lp-gold); color: var(--lp-navy);
  border: none; padding: 10px 24px; border-radius: 6px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.lp-nav-cta:hover { background: var(--lp-gold-light); transform: translateY(-1px); }

/* Language Switcher */
.lp-lang-wrap { position: relative; }
.lp-lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--lp-white); padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.lp-lang-btn:hover { border-color: var(--lp-gold); }
.lp-lang-chevron { font-size: 10px; opacity: 0.6; }
.lp-lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--lp-navy-mid); border: 1px solid rgba(197,151,58,0.25);
  border-radius: 12px; padding: 6px;
  min-width: 160px; box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 200;
}
.lp-lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; cursor: pointer;
  font-size: 14px; color: var(--lp-text-muted);
  transition: background 0.15s, color 0.15s;
}
.lp-lang-option:hover { background: rgba(197,151,58,0.1); color: var(--lp-white); }
.lp-lang-option.active { color: var(--lp-gold); font-weight: 600; }

/* ─── HERO ─── */
.lp-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 48px 60px;
  position: relative; overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(197,151,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(12,119,182,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: center;
  max-width: 1350px;
  width: 100%;
  position: relative;
  z-index: 1;
}

[dir="rtl"] .lp-hero-inner {
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
}

@media (min-width: 993px) {
  [dir="rtl"] .lp-hero-visual {
    transform: translateX(60px);
  }
}
.lp-hero-text {
  text-align: left;
}
[dir="rtl"] .lp-hero-text { text-align: right; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(197,151,58,0.12); border: 1px solid rgba(197,151,58,0.3);
  color: var(--lp-gold); padding: 6px 18px; border-radius: 99px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
  letter-spacing: 0.4px;
}
.lp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.lp-hero h1 em {
  font-style: normal; color: var(--lp-gold);
  position: relative; white-space: nowrap;
}
.lp-hero h1 em::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--lp-gold), transparent);
  border-radius: 2px;
}
.lp-hero p.lp-hero-sub {
  max-width: 480px; font-size: 17px; line-height: 1.7;
  color: var(--lp-text-muted); margin-bottom: 36px; font-weight: 300;
}
.lp-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.lp-btn-primary {
  background: var(--lp-gold); color: var(--lp-navy);
  padding: 16px 36px; border-radius: 8px; font-size: 16px;
  font-weight: 700; text-decoration: none; cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; display: inline-block;
  box-shadow: 0 4px 24px rgba(197,151,58,0.3);
}
.lp-btn-primary:hover { background: var(--lp-gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(197,151,58,0.4); }
.lp-btn-secondary {
  background: transparent; color: var(--lp-white);
  padding: 16px 36px; border-radius: 8px; font-size: 16px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s; display: inline-block;
}
.lp-btn-secondary:hover { border-color: var(--lp-gold); color: var(--lp-gold); }

/* ─── HERO STATS ─── */
.lp-hero-stats {
  display: flex; gap: 16px; margin-top: 48px; flex-wrap: wrap;
}
.lp-stat-chip {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 20px; text-align: center;
  backdrop-filter: blur(8px);
  animation: lpFloat 4s ease-in-out infinite;
}
.lp-stat-chip:nth-child(2) { animation-delay: -1.3s; }
.lp-stat-chip:nth-child(3) { animation-delay: -2.6s; }
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.lp-stat-chip .num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: var(--lp-gold); }
.lp-stat-chip .lbl { font-size: 11px; color: var(--lp-text-muted); margin-top: 2px; font-weight: 500; letter-spacing: 0.3px; }

/* ─── HERO VISUAL (Replacing Flags) ─── */
.lp-hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-visual-inner {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-circle-solid {
  position: absolute;
  width: 380px;
  height: 380px;
  background: transparent;
  border-radius: 50%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.lp-hero-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* --- Abstract Hero Background System --- */
.lp-circle-wire {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197, 151, 58, 0.3);
  z-index: 0;
}
.lp-wire-1 { width: 440px; height: 440px; }
.lp-wire-2 { width: 500px; height: 500px; border: 1px dashed rgba(197, 151, 58, 0.2); }
.lp-wire-3 { width: 560px; height: 560px; }

.lp-hero-bg-system {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.lp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
  will-change: transform, opacity;
}

.lp-blob-gold {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--lp-gold) 0%, transparent 70%);
  top: 10%;
  left: -20%;
}

.lp-blob-blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lp-blue-light) 0%, transparent 70%);
  bottom: -10%;
  right: -20%;
}

.lp-orbit {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.03);
}

.lp-orbit-1 { width: 700px; height: 700px; }
.lp-orbit-2 { width: 900px; height: 900px; border: 1px dashed rgba(255,255,255,0.02); }

.lp-svg-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}

.lp-spin-slow {
  transform-origin: center;
  animation: lp-spin 60s linear infinite;
  will-change: transform;
}

.lp-spin-reverse {
  transform-origin: center;
  animation: lp-spin-reverse 80s linear infinite;
  will-change: transform;
}

@keyframes lp-spin { 100% { transform: rotate(360deg); } }
@keyframes lp-spin-reverse { 100% { transform: rotate(-360deg); } }

.lp-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--lp-white);
  box-shadow: 0 0 10px 2px rgba(255,255,255,0.4);
}

.lp-p-1 { width: 4px; height: 4px; top: 20%; left: 15%; animation: lp-float 4s ease-in-out infinite; }
.lp-p-2 { width: 6px; height: 6px; top: 70%; right: 10%; background: var(--lp-gold); box-shadow: 0 0 12px 2px var(--lp-gold); animation: lp-float 5s ease-in-out infinite 1s; }
.lp-p-3 { width: 3px; height: 3px; bottom: 15%; left: 30%; animation: lp-float 3s ease-in-out infinite 0.5s; }

.lp-decor-plus {
  position: absolute;
  font-family: monospace;
  font-size: 20px;
  color: rgba(255,255,255,0.2);
}

.lp-plus-1 { top: 10%; right: 20%; }
.lp-plus-2 { bottom: 20%; left: -5%; }

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

.lp-decor-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--lp-gold);
  border-radius: 50%;
  bottom: 25%;
  left: 5%;
  z-index: 1;
}

/* Floating Cards matching image */
.lp-hero-floating-card {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border: 1px solid rgba(197, 151, 58, 0.2);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(197, 151, 58, 0.05);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

.lp-hero-floating-card:hover {
  transform: scale(1.05) translateY(-5px);
}

.lp-fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lp-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.lp-fc-progress {
  width: 50px;
  height: 50px;
  margin-right: 14px;
}

.progress-ring {
  width: 100%;
  height: 100%;
}

.progress-ring .ring-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 3;
}

.progress-ring .ring-fill {
  fill: none;
  stroke: var(--lp-gold);
  stroke-width: 3;
  stroke-linecap: round;
}

.lp-fc-text {
  display: flex;
  flex-direction: column;
}

.lp-fc-text strong {
  color: #0f172a;
  font-size: 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.lp-fc-text span {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

/* Positions matching the image */
.lp-fc-1 {
  top: 35%;
  left: -35%;
  animation: float-y 6s ease-in-out infinite;
}

.lp-fc-2 {
  top: -5%;
  right: -5%;
  animation: float-y 7s ease-in-out infinite 1s;
}

.lp-fc-3 {
  bottom: 5%;
  right: -10%;
  animation: float-y 5s ease-in-out infinite 2s;
}

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

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

/* ─── SECTION COMMON ─── */
.lp-section { padding: 96px 24px; }
.lp-container { max-width: 1120px; margin: 0 auto; }
.lp-section-label {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lp-gold); margin-bottom: 16px;
}
.lp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  line-height: 1.15; margin-bottom: 16px;
}
.lp-section-sub {
  font-size: 17px; color: var(--lp-text-muted); line-height: 1.7;
  max-width: 560px; font-weight: 300;
}
.lp-gold-divider {
  width: 48px; height: 3px; background: var(--lp-gold);
  border-radius: 2px; margin: 16px 0 0;
}

/* ─── TRUSTED ─── */
.lp-trusted { background: var(--lp-navy-mid); }
.lp-trusted-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px;
}
.lp-trust-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(197,151,58,0.2);
  border-radius: 14px; padding: 20px 16px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.lp-trust-card:hover { border-color: var(--lp-gold); transform: translateY(-4px); }
.lp-trust-icon { font-size: 28px; margin-bottom: 10px; }
.lp-trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900; color: var(--lp-gold);
}
.lp-trust-lbl { font-size: 12px; color: var(--lp-text-muted); margin-top: 4px; font-weight: 500; }

/* ─── LEVELS ─── */
.lp-levels { background: var(--lp-navy); }
.lp-levels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 56px;
}
.lp-level-card {
  border-radius: 20px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.lp-level-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%; opacity: 0.12;
}
.lp-level-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lp-level-card.a1 { background: linear-gradient(135deg, #152848 0%, #1E3560 100%); border: 1px solid rgba(197,151,58,0.25); }
.lp-level-card.a1::before { background: var(--lp-gold); }
.lp-level-card.b1 { background: linear-gradient(135deg, #0D2E4B 0%, #0F3D62 100%); border: 1px solid rgba(12,119,182,0.4); }
.lp-level-card.b1::before { background: var(--lp-blue); }
.lp-level-card.c1 { background: linear-gradient(135deg, #1A2840 0%, #243659 100%); border: 1px solid rgba(255,255,255,0.15); }
.lp-level-card.c1::before { background: #fff; }
.lp-level-card.biz { background: linear-gradient(135deg, #1E1A0C 0%, #2E2810 100%); border: 1px solid rgba(197,151,58,0.5); }
.lp-level-card.biz::before { background: var(--lp-gold); }
.lp-level-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 20px;
}
.lp-level-card.a1 .lp-level-tag { background: rgba(197,151,58,0.15); color: var(--lp-gold); }
.lp-level-card.b1 .lp-level-tag { background: rgba(12,119,182,0.2); color: var(--lp-blue-light); }
.lp-level-card.c1 .lp-level-tag { background: rgba(255,255,255,0.1); color: var(--lp-white); }
.lp-level-card.biz .lp-level-tag { background: rgba(197,151,58,0.2); color: var(--lp-gold-light); }
.lp-level-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.lp-level-desc { font-size: 14px; color: var(--lp-text-muted); line-height: 1.65; }
.lp-level-topics { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.lp-topic-pill {
  font-size: 11px; padding: 4px 10px; border-radius: 99px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.lp-level-arrow {
  margin-top: 28px; color: var(--lp-gold); font-size: 20px;
  transition: transform 0.2s;
}
.lp-level-card:hover .lp-level-arrow { transform: translateX(5px); }

/* ─── FEATURES ─── */
.lp-features { background: var(--lp-navy-mid); }
.lp-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px; margin-top: 56px;
}
.lp-feature-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.lp-feature-card:hover {
  border-color: rgba(197,151,58,0.3);
  background: rgba(197,151,58,0.04);
  transform: translateY(-3px);
}
.lp-feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(197,151,58,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.lp-feat-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.lp-feat-desc { font-size: 14px; color: var(--lp-text-muted); line-height: 1.6; }

@media (max-width: 768px) {
  .lp-features-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  .lp-feature-card {
    width: calc(50% - 6px) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    padding: 20px 12px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    box-sizing: border-box !important;
  }
  .lp-feat-icon { margin-bottom: 4px !important; }
  .lp-feat-title { font-size: 15px !important; }
  .lp-feat-desc { font-size: 13px !important; }
}

/* ─── WHY US ─── */
.lp-why { background: var(--lp-navy); }
.lp-why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  margin-top: 56px;
}
.lp-why-list { display: flex; flex-direction: column; gap: 20px; }
.lp-why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.lp-why-item:hover { border-color: rgba(197,151,58,0.2); background: rgba(197,151,58,0.04); }
.lp-why-dot {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.lp-why-text h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.lp-why-text p { font-size: 13px; color: var(--lp-text-muted); line-height: 1.6; margin: 0; }
.lp-why-visual {
  background: linear-gradient(135deg, var(--lp-navy-light), var(--lp-navy-mid));
  border: 1px solid rgba(197,151,58,0.2);
  border-radius: 24px; padding: 40px 32px;
  text-align: center;
}
.lp-why-visual .big { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; color: var(--lp-gold); }
.lp-why-visual .sub { font-size: 15px; color: var(--lp-text-muted); margin-top: 8px; }
.lp-stars { color: var(--lp-gold); font-size: 22px; margin: 20px 0 10px; letter-spacing: 3px; }
.lp-testimonial { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.75); font-style: italic; }
.lp-test-author { margin-top: 16px; font-size: 13px; color: var(--lp-text-muted); }

/* ─── ABOUT ─── */
.lp-about { background: var(--lp-navy-mid); }
.lp-about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.lp-about p { font-size: 16px; color: var(--lp-text-muted); line-height: 1.8; margin-bottom: 16px; }
.lp-about-highlight {
  background: linear-gradient(135deg, rgba(197,151,58,0.1), rgba(197,151,58,0.05));
  border-left: 3px solid var(--lp-gold);
  padding: 20px 24px; border-radius: 0 12px 12px 0;
  margin-top: 24px;
}
[dir="rtl"] .lp-about-highlight {
  border-left: none;
  border-right: 3px solid var(--lp-gold);
  border-radius: 12px 0 0 12px;
}
.lp-about-highlight p { color: var(--lp-white); font-size: 17px; font-weight: 500; margin: 0; }
.lp-about-visual {
  background: var(--lp-navy); border: 1px solid rgba(197,151,58,0.2);
  border-radius: 24px; padding: 36px;
}
.lp-mission-items { display: flex; flex-direction: column; gap: 16px; }
.lp-mission-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: 12px;
  background: rgba(197,151,58,0.05);
}
.lp-mission-item .ic { font-size: 22px; }
.lp-mission-item h5 { font-size: 14px; font-weight: 600; margin: 0 0 3px; }
.lp-mission-item p { font-size: 12px; color: var(--lp-text-muted); margin: 0; }

/* ─── BOOKS ─── */
.lp-books { background: var(--lp-navy); }
.lp-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0;
}
.lp-tab-btn {
  padding: 12px 24px; border: none; background: transparent;
  color: var(--lp-text-muted); cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color 0.2s, border-color 0.2s;
}
.lp-tab-btn.active { color: var(--lp-gold); border-bottom-color: var(--lp-gold); }
.lp-tab-btn:hover { color: var(--lp-white); }
.lp-tab-panel { display: none; }
.lp-tab-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.lp-book-card {
  background: var(--lp-navy-mid); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lp-book-card:hover { transform: translateY(-5px); border-color: rgba(197,151,58,0.3); }
.lp-book-thumb {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative;
}
.lp-book-thumb.a { background: linear-gradient(135deg, #1E3560, #2A4A7A); }
.lp-book-thumb.b { background: linear-gradient(135deg, #0D2E4B, #1A4A6B); }
.lp-book-thumb.c { background: linear-gradient(135deg, #1A2840, #2A3E5A); }
.lp-book-thumb.bz { background: linear-gradient(135deg, #2E2810, #3E3A14); }
.lp-book-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lp-book-level { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--lp-gold); text-transform: uppercase; margin-bottom: 6px; }
.lp-book-title { font-size: 15px; font-weight: 600; line-height: 1.4; }
.lp-book-sub { font-size: 12px; color: var(--lp-text-muted); margin-top: 4px; }
.lp-book-buy {
  margin-top: auto; width: 100%; padding: 10px;
  background: rgba(197,151,58,0.12); border: 1px solid rgba(197,151,58,0.3);
  color: var(--lp-gold); border-radius: 8px; font-size: 13px;
  font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  min-height: 52px;
}
.lp-book-buy:hover { background: var(--lp-gold); color: var(--lp-navy); }

/* ─── FAQ ─── */
.lp-faq { background: var(--lp-navy-mid); }
.lp-faq-list { margin-top: 48px; max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
}
.lp-faq-q {
  width: 100%; text-align: left; padding: 22px 24px;
  background: none; border: none; color: var(--lp-white);
  font-size: 16px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.lp-faq-q:hover { color: var(--lp-gold); }
.lp-faq-q.open { color: var(--lp-gold); }
.lp-faq-icon { font-size: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--lp-gold); }
.lp-faq-q.open .lp-faq-icon { transform: rotate(45deg); }
.lp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px; color: var(--lp-text-muted); line-height: 1.7;
  padding: 0 24px;
}
.lp-faq-a.open { max-height: 200px; padding: 0 24px 22px; }

/* ─── FINAL CTA ─── */
.lp-final-cta {
  background: linear-gradient(135deg, var(--lp-navy-light) 0%, var(--lp-navy-mid) 50%, var(--lp-navy) 100%);
  padding: 120px 24px; position: relative; overflow: hidden;
}
.lp-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(197,151,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lp-final-cta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  z-index: 2;
}
.lp-cta-text-col {
  flex: 1;
  text-align: left;
}
[dir="rtl"] .lp-cta-text-col {
  text-align: right;
}
.lp-cta-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
}
.lp-cta-image-col img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
.lp-cta-image-col img:hover {
  transform: scale(1.05);
}
.lp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 60px); font-weight: 900;
  margin-bottom: 20px; position: relative;
}
.lp-final-cta p { font-size: 18px; color: var(--lp-text-muted); margin-bottom: 48px; font-weight: 300; position: relative; }
.lp-cta-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; position: relative; }
[dir="rtl"] .lp-cta-btns { justify-content: flex-start; }

/* ─── FOOTER ─── */
.lp-footer {
  background: #060D1E; padding: 48px 24px 32px;
  border-top: 1px solid rgba(197,151,58,0.1);
}
.lp-footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.lp-footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; }
.lp-footer-logo span { color: var(--lp-gold); }
.lp-footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.lp-footer-links a { color: var(--lp-text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.lp-footer-links a:hover { color: var(--lp-gold); }
.lp-footer-bottom {
  max-width: 1120px; margin: 32px auto 0;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  text-align: center; font-size: 12px; color: var(--lp-text-muted);
}
.lp-social-icons { display: flex; gap: 10px; }
.lp-social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.lp-social-btn svg { width: 18px; height: 18px; }
.lp-social-btn:hover { transform: translateY(-2px); }
.lp-social-tiktok:hover { background: #010101; border-color: #fe2c55; color: #fff; }
.lp-social-facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.lp-social-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e6683c; color: #fff; }
.lp-social-whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* ─── SCROLL REVEAL ─── */
.lp-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.lp-hidden {
  opacity: 0;
  transform: translateY(24px);
}
.lp-reveal.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .lp-hero { padding: 100px 24px 60px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-text, [dir="rtl"] .lp-hero-text { text-align: center; }
  .lp-hero-text .lp-hero-badge { margin-left: auto; margin-right: auto; }
  .lp-hero p.lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-btns { justify-content: center; }
  .lp-hero-stats { justify-content: center; }
  .lp-hero-flags { height: 320px; }
  .lp-flag-circle { width: 100px; height: 100px; }
  .lp-ring-1 { width: 220px; height: 220px; }
  .lp-ring-2 { width: 300px; height: 300px; }
}
@media (max-width: 768px) {
  .lp-nav { 
    padding: 16px 20px; 
    justify-content: center; 
    position: relative; 
    display: flex;
    align-items: center;
  }
  .lp-nav-actions {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .lp-nav-links { display: none; }
  .lp-why-inner, .lp-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-why-visual { order: -1; }
  .lp-hero h1 { font-size: clamp(32px, 8vw, 52px); }
  .lp-final-cta-split {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  .lp-cta-image-col {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
  }
  .lp-cta-text-col, [dir="rtl"] .lp-cta-text-col {
    text-align: center;
  }
  .lp-cta-btns, [dir="rtl"] .lp-cta-btns {
    justify-content: center;
  }
  .lp-tab-panel.active {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .lp-book-thumb {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }
  .lp-book-info {
    padding: 12px;
  }
  .lp-book-title {
    font-size: 13px;
  }
  .lp-book-sub {
    font-size: 11px;
  }
  .lp-book-buy {
    font-size: 12px;
    padding: 8px;
    margin-top: auto;
    min-height: 48px;
  }
}

/* ─── AUTH MODAL (preserved from original) ─── */
.auth-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.auth-modal {
  background: var(--color-bg, #fff); border-radius: 16px;
  padding: 40px 36px; max-width: 440px; width: 100%;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  color: var(--color-text, #1a1a2e);
}
.auth-modal h2 { text-align: center; margin-bottom: 4px; font-size: 22px; }
.auth-subtitle { text-align: center; color: var(--color-text-muted, #888); font-size: 14px; margin-bottom: 24px; }
.auth-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--color-text-muted, #888); font-size: 20px;
  padding: 4px;
}

/* Coming Soon Panel */
.lp-coming-soon-panel {
  text-align: center;
  padding: 60px 20px;
  border: 2px dashed rgba(197,151,58,0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12,27,58,0.03), rgba(197,151,58,0.06));
}
.lp-coming-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}
.lp-coming-soon-panel h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-gold);
  margin-bottom: 8px;
}
.lp-coming-soon-panel p {
  color: var(--lp-text-muted);
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============================================
   LEVEL TEST PROMO CARD (Landing Page)
   ============================================ */
.lp-quiz-section { background: #0C1B3A; }
.lp-quiz-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(197,151,58,0.15);
  border-radius: 24px;
  padding: 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.lp-quiz-2col::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
  background-size: 100% 100%;
  pointer-events: none;
}
.lp-quiz-text-col {
  text-align: left;
  position: relative;
  z-index: 1;
}
[dir="rtl"] .lp-quiz-text-col {
  text-align: right;
}
.lp-quiz-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-quiz-img-wrapper {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
}
.lp-quiz-feature-img {
  width: 100%;
  height: auto;
  display: block;
}
.lp-quiz-promo-badge {
  display: inline-block;
  background: rgba(197,151,58,0.12); border: 1px solid rgba(197,151,58,0.25);
  color: #C5973A; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 24px;
}
.lp-quiz-promo-title {
  font-size: 40px; font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 20px; font-family: 'Playfair Display', serif;
}
.lp-quiz-promo-title .lp-gold { color: #C5973A; }
.lp-quiz-promo-sub {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6;
  margin-bottom: 36px !important;
}
.lp-quiz-promo-stats { 
  display: flex; gap: 40px; margin-bottom: 48px;
  flex-wrap: wrap;
}
.lp-quiz-promo-stat { 
  display: flex; align-items: center; gap: 16px; 
}
.lp-quiz-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(197,151,58,0.1);
  color: #C5973A;
  display: flex; align-items: center; justify-content: center;
}
.lp-quiz-stat-content {
  display: flex; flex-direction: column;
}
.lp-quiz-promo-stat-num { font-size: 24px; font-weight: 800; color: #fff; font-family: 'Inter', sans-serif; line-height: 1; margin-bottom: 4px; }
.lp-quiz-promo-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.lp-quiz-promo-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 40px;
  background: #C5973A; color: #0F1E36; border: none; border-radius: 14px;
  font-size: 18px; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.25s; margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(197,151,58,0.25);
  position: relative;
  z-index: 999;
}
.lp-quiz-promo-cta:hover { background: #d4a844; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(197,151,58,0.35); }
.lp-quiz-promo-note { font-size: 13px; color: rgba(255,255,255,0.4); }
@media (max-width: 992px) {
  .lp-quiz-2col {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 48px;
    text-align: center;
  }
  .lp-quiz-text-col, [dir="rtl"] .lp-quiz-text-col {
    text-align: center;
  }
  .lp-quiz-promo-stats {
    justify-content: center;
    gap: 24px;
  }
  .lp-quiz-promo-title { font-size: 32px; }
  .lp-quiz-promo-stat { align-items: center; flex-direction: column; }
  .lp-quiz-stat-content { align-items: center; }
}

/* ============================================
   LEVEL TEST PAGE (Standalone)
   ============================================ */
.lt-page { min-height: 100vh; background: #0C1B3A; color: #fff; padding: 0 20px 60px; }
.lt-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 16px; max-width: 700px; margin: 0 auto; }
.lt-header-left { display: flex; align-items: center; gap: 16px; }
.lt-exit-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all 0.2s;
}
.lt-exit-btn:hover { background: rgba(255,60,60,0.15); color: #ff4444; border-color: rgba(255,60,60,0.3); transform: scale(1.05); }
.lt-header-brand { font-family: 'Georgia', serif; font-size: 20px; font-weight: 700; transition: opacity 0.2s; }
.lt-header-brand:hover { opacity: 0.8; }
.lt-header-brand .brand-english { color: #fff; }
.lt-header-brand .brand-m3aya { color: #C5973A; }
.lt-header-right { display: flex; align-items: center; gap: 10px; }
.lt-header-counter { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 6px 16px; }
.lt-finish-btn { padding: 6px 16px; background: rgba(197,151,58,0.15); border: 1px solid rgba(197,151,58,0.3); color: #C5973A; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.lt-finish-btn:hover { background: #C5973A; color: #0C1B3A; }
.lt-progress-bar { width: 100%; max-width: 700px; margin: 0 auto 12px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.lt-progress-fill { height: 100%; background: linear-gradient(90deg, #C5973A, #e6c36a); border-radius: 4px; transition: width 0.4s ease; }
.lt-zone-row { display: flex; align-items: center; justify-content: space-between; max-width: 700px; margin: 0 auto 6px; }
.lt-zone-text { font-size: 14px; font-weight: 700; color: #C5973A; }
.lt-zone-pct { font-size: 13px; color: rgba(255,255,255,0.4); }
.lt-section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); max-width: 700px; margin: 0 auto 20px; }
.lt-card { max-width: 700px; margin: 0 auto; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px 28px; direction: ltr; text-align: left; }
.lt-q-number { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: #C5973A; margin-bottom: 12px; }
.lt-q-text { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 24px; direction: ltr; text-align: left; }
.lt-options { display: flex; flex-direction: column; gap: 12px; }
.lt-opt { display: flex; align-items: center; gap: 14px; width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 14px; color: #fff; font-size: 16px; font-weight: 500; cursor: pointer; transition: all 0.25s ease; text-align: left; direction: ltr; }
.lt-opt:hover:not(:disabled):not(.correct):not(.wrong):not(.faded) { background: rgba(197,151,58,0.1); border-color: rgba(197,151,58,0.35); transform: translateY(-1px); }
.lt-opt:disabled { cursor: default; }
.lt-opt.correct { background: rgba(34,197,94,0.15); border-color: #22C55E; color: #22C55E; }
.lt-opt.wrong { background: rgba(239,68,68,0.15); border-color: #EF4444; color: #EF4444; }
.lt-opt.faded { opacity: 0.3; }
.lt-opt-letter { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(255,255,255,0.06); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.lt-opt.correct .lt-opt-letter { background: rgba(34,197,94,0.25); color: #22C55E; }
.lt-opt.wrong .lt-opt-letter { background: rgba(239,68,68,0.25); color: #EF4444; }
.lt-opt-text { flex: 1; }
.lt-opt-icon { font-size: 20px; font-weight: 700; flex-shrink: 0; }
.lt-feedback { margin-top: 20px; padding: 14px 20px; border-radius: 12px; font-size: 15px; font-weight: 600; text-align: center; }
.lt-feedback.correct { background: rgba(34,197,94,0.1); color: #22C55E; border: 1px solid rgba(34,197,94,0.2); }
.lt-feedback.wrong { background: rgba(239,68,68,0.1); color: #EF4444; border: 1px solid rgba(239,68,68,0.2); }
.lt-next-btn { display: block; width: 100%; margin-top: 20px; padding: 16px; background: linear-gradient(135deg, #C5973A, #e6c36a); color: #0C1B3A; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.25s; }
.lt-next-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(197,151,58,0.35); }
.lt-result-card { max-width: 560px; margin: 60px auto 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(197,151,58,0.2); border-radius: 24px; padding: 48px 36px; text-align: center; }
.lt-result-badge { font-size: 48px; margin-bottom: 16px; }
.lt-result-level { font-size: 72px; font-weight: 900; color: #C5973A; line-height: 1; margin-bottom: 8px; }
.lt-result-name { font-size: 22px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.lt-result-score { font-size: 20px; color: #C5973A; font-weight: 700; margin-bottom: 20px; }
.lt-result-desc { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 420px; margin: 0 auto 32px; }
.lt-result-actions { display: flex; flex-direction: column; gap: 12px; }
.lt-btn-primary { width: 100%; padding: 16px; background: linear-gradient(135deg, #C5973A, #e6c36a); color: #0C1B3A; border: none; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.25s; }
.lt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(197,151,58,0.35); }

/* Exit Modal */
.lt-modal-overlay {
  position: fixed; inset: 0; background: rgba(12, 27, 58, 0.85); backdrop-filter: blur(8px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.2s ease-out;
}
.lt-modal {
  background: #112347; border: 1px solid rgba(197,151,58,0.2);
  border-radius: 20px; padding: 40px; width: 100%; max-width: 400px;
  text-align: center; box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lt-modal-icon {
  font-size: 40px; margin-bottom: 16px; line-height: 1;
}
.lt-modal-title {
  font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.lt-modal-sub {
  font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 32px;
}
.lt-modal-actions {
  display: flex; gap: 12px;
}
.lt-modal-actions button {
  flex: 1; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; border: none; font-family: 'Inter', sans-serif;
}
.lt-btn-danger {
  background: rgba(255, 60, 60, 0.15); color: #ff4444; border: 1px solid rgba(255, 60, 60, 0.3) !important;
}
.lt-btn-danger:hover {
  background: #ff4444; color: #fff;
}
.lt-btn-secondary { width: 100%; padding: 14px; background: rgba(255,255,255,0.06); color: #fff; border: 1.5px solid rgba(255,255,255,0.12); border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; }
.lt-btn-secondary:hover { background: rgba(255,255,255,0.1); }
.lt-btn-ghost { width: 100%; padding: 12px; background: transparent; color: rgba(255,255,255,0.4); border: none; font-size: 14px; cursor: pointer; }
.lt-btn-ghost:hover { color: #fff; }
@media (max-width: 768px) {
  .lt-page { padding: 0 14px 40px; }
  .lt-header-brand { font-size: 17px; }
  .lt-header-counter { font-size: 12px; padding: 5px 12px; }
  .lt-card { padding: 24px 18px; border-radius: 16px; }
  .lt-q-text { font-size: 17px; }
  .lt-opt { padding: 14px 16px; font-size: 15px; gap: 10px; }
  .lt-opt-letter { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; }
  .lt-result-card { padding: 36px 20px; margin-top: 40px; }
  .lt-result-level { font-size: 56px; }
}

/* Lang Switcher */
.lt-lang-wrap { position: relative; }
.lt-lang-toggle { padding: 6px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.lt-lang-toggle:hover { background: rgba(255,255,255,0.1); }
.lt-lang-dropdown { display: none; position: absolute; top: 100%; right: 0; margin-top: 6px; background: #1a2a4a; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; z-index: 100; min-width: 120px; }
.lt-lang-dropdown.open { display: block; }
.lt-lang-dropdown button { display: block; width: 100%; padding: 10px 16px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 14px; cursor: pointer; text-align: left; }
.lt-lang-dropdown button:hover { background: rgba(197,151,58,0.15); color: #C5973A; }
[dir="rtl"] .lt-lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lt-lang-dropdown button { text-align: right; }

