/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-1: #f3e8ff;
  --purple-2: #c084fc;
  --purple-3: #a855f7;
  --purple-4: #8b5cf6;
  --purple-5: #7c3aed;
  --purple-6: #6d28d9;
  --purple-dark: #1a0533;
  --purple-darker: #0f0020;
  --text-dark: #1e1b4b;
  --text-mid: #4c1d95;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #faf5ff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(124, 58, 237, 0.15);
  --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body[dir="rtl"] { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(124, 58, 237, 0.1);
}

.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: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  background: var(--purple-1);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--white);
  color: var(--purple-5);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.btn-nav {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s;
}

.btn-nav:hover { color: var(--purple-5); }

.btn-primary-sm {
  background: linear-gradient(135deg, var(--purple-4), var(--purple-5));
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-darker) 0%, var(--purple-dark) 40%, #2d0a5e 70%, #1a0533 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: var(--purple-2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stores {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stores > span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.store-badges {
  display: flex;
  gap: 10px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

/* Phone mockups */
.hero-phones {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.15);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-front {
  width: 240px;
  height: 520px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-back {
  width: 210px;
  height: 460px;
  bottom: 40px;
  left: 50%;
  transform: translateX(20%);
  z-index: 1;
  opacity: 0.7;
}

/* ===== SECTIONS COMMUNES ===== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== VIDEO ===== */
.video-section {
  background: var(--bg-light);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-darker));
  border-radius: 24px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.play-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

.video-placeholder p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--purple-1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.purple { background: linear-gradient(135deg, var(--purple-3), var(--purple-5)); }
.feature-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.feature-icon.blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.feature-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.feature-icon.pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.feature-icon.teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  background: var(--bg-light);
  overflow: hidden;
}

.screenshots-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 0 40px;
}

@media (max-width: 900px) {
  .screenshots-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .screenshots-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1220 / 2712;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
  border: 3px solid rgba(124, 58, 237, 0.1);
  transition: transform 0.3s;
}

.screenshot-item img:hover { transform: scale(1.02); }

.screenshot-item p {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(135deg, var(--purple-darker), var(--purple-dark));
}

.how-it-works .section-header h2 { color: white; }
.how-it-works .section-header p { color: rgba(255,255,255,0.6); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: var(--purple-3);
  padding-top: 20px;
  align-self: flex-start;
}

/* ===== PRICING ===== */
.pricing { background: var(--bg-light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: white;
  border: 2px solid var(--purple-1);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--purple-4);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

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

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--purple-5);
  margin-bottom: 28px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 15px;
  color: var(--text-dark);
}

.plan-features li.disabled { color: var(--text-light); }

.btn-plan {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-plan-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--purple-5);
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--purple-3);
  transition: all 0.2s;
}

.btn-plan-outline:hover {
  background: var(--purple-1);
  transform: translateY(-2px);
}

/* ===== RECHARGE VOCALE ===== */
.recharge-section {
  margin-top: 56px;
  background: white;
  border: 2px solid var(--purple-1);
  border-radius: 28px;
  padding: 40px 36px;
}

.recharge-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.recharge-icon {
  font-size: 36px;
  line-height: 1;
}

.recharge-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.recharge-header p {
  font-size: 14px;
  color: var(--text-light);
}

.recharge-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.recharge-tab {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid var(--purple-2);
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.recharge-tab.active {
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  border-color: transparent;
  color: white;
}

.recharge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.recharge-card {
  background: var(--bg-light);
  border: 2px solid var(--purple-1);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.recharge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.recharge-card.featured-recharge {
  border-color: var(--purple-4);
  box-shadow: var(--shadow);
  background: white;
}

.recharge-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.recharge-commands {
  font-size: 48px;
  font-weight: 900;
  color: var(--purple-5);
  line-height: 1;
  margin-bottom: 4px;
}

.recharge-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.recharge-tag {
  display: inline-block;
  background: var(--purple-1);
  color: var(--purple-5);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.btn-recharge {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-recharge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.recharge-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .recharge-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 20px; }
  .recharge-section { padding: 28px 20px; }
}

/* ===== SUBSCRIBE CTA ===== */
.subscribe-cta {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-darker));
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--purple-3); }

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--purple-1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--purple-4);
  transition: transform 0.3s;
}

.faq-item.open .faq-question { background: var(--purple-1); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 16px 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--purple-darker);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-brand .logo-text { color: white; }

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--purple-2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] .faq-question { text-align: right; }
[dir="rtl"] .step-arrow { transform: scaleX(-1); }
[dir="rtl"] .hero-phones { transform: scaleX(-1); }
[dir="rtl"] .hero-phones img { transform: scaleX(-1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-phones { height: 400px; }
  .phone-front { width: 180px; height: 390px; }
  .phone-back { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stores { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  [dir="rtl"] .step-arrow { transform: rotate(90deg); }
  .cta-form { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 32px; }
  .nav-actions .btn-nav { display: none; }
}

@media (max-width: 480px) {
  .lang-switcher { display: flex; }
  .hero-title { font-size: 32px; }
  .section-header h2 { font-size: 26px; }
}

/* ===== STORE BADGES "BIENTÔT" ===== */
.store-badge-soon {
  position: relative;
  opacity: 0.85;
  cursor: default;
}

.badge-soon-label {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--purple-3);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PRICING TOGGLE ===== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.toggle-btn {
  background: transparent;
  border: 2px solid var(--purple-3);
  color: var(--purple-5);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  border-color: transparent;
}

.toggle-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-price-block { margin-bottom: 28px; }

.annual-detail {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 4px;
}

/* ===== COMING SOON V1.1 ===== */
.coming-soon {
  background: linear-gradient(135deg, var(--bg-light), #ede9fe);
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-5));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.coming-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--purple-1);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.coming-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.coming-card.secret {
  background: linear-gradient(135deg, #f3e8ff, #ede9fe);
}

.coming-lock {
  font-size: 32px;
  margin-bottom: 12px;
}

.coming-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.coming-card.secret h3 {
  color: var(--purple-5);
}

.coming-label {
  display: inline-block;
  background: var(--purple-1);
  color: var(--purple-5);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bloc mystère style Apple */
.coming-mystery-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: white;
  border-radius: 24px;
  border: 2px solid var(--purple-1);
  padding: 64px 40px;
  max-width: 560px;
  margin: 48px auto 0;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.08);
}

.mystery-icon {
  font-size: 56px;
  margin-bottom: 24px;
  filter: grayscale(0.2);
}

.mystery-text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}

/* ===== CTA WAITLIST ===== */
.cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .coming-grid { grid-template-columns: 1fr; max-width: 360px; margin: 48px auto 0; }
  .pricing-toggle { flex-wrap: wrap; }
}

/* ===== DOCUMENTS SECTION ===== */
.documents-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
}
.document-card {
  background: var(--white);
  border: 1px solid var(--purple-1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.22);
}
.document-label {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-5);
  background: rgba(124, 58, 237, 0.06);
  border-bottom: 1px solid var(--purple-1);
}
.document-card img {
  width: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 640px) {
  .documents-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
