/* ═══════════════════════════════════════════════════════════════════
   Business Vault — Enterprise Landing Page
   Design System & Component Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ── 0. CSS Variables (Design Tokens) ───────────────────────────── */
:root {
  --red:           #C41E3A;
  --red-dark:      #9B1226;
  --red-light:     #FDECEA;
  --red-border:    rgba(196,30,58,0.2);
  --brown:         #7C5C3E;
  --brown-light:   #F5EFE8;
  --white:         #FFFFFF;
  --off-white:     #F8F5F2;
  --text-primary:  #1A1A1A;
  --text-secondary:#5A5A5A;
  --text-muted:    #9CA3AF;
  --border:        #E5DDD5;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-full:   9999px;
  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
  --container:     1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

[lang="en"] body, [lang="en"] { font-family: 'Inter', system-ui, sans-serif; }
[lang="ar"] body, [lang="ar"] { font-family: 'Cairo', system-ui, sans-serif; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── 2. Skip Link ────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  z-index: 9999;
  transition: top 0.2s;
  font-size: 14px;
}
.skip-link:focus { top: 12px; }

/* ── 3. Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { color: var(--text-secondary); font-size: 1.0625rem; }

.text-red   { color: var(--red); }
.text-brown { color: var(--brown); }

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

@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ── 5. Section Base ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-white    { background: var(--white); }
.section-offwhite { background: var(--off-white); }
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
  position: relative;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin-inline-end: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--text-primary);
}

/* ── 6. Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,30,58,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }
.btn-full { width: 100%; }
.btn-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,30,58,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(196,30,58,0); }
}

/* ── 7. Top Bar (Marquee Ticker) ─────────────────────────────────── */
.topbar {
  background: var(--red);
  color: var(--white);
  position: relative;
  z-index: 200;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 44px;
}
.topbar-marquee {
  display: flex;
  width: max-content;
}

/* English (LTR): Content overflows to the right, moves left */
[lang="en"] .topbar-marquee {
  animation: marquee-ltr 400s linear infinite;
}
@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Arabic (RTL): Content overflows to the left, moves right */
[lang="ar"] .topbar-marquee {
  animation: marquee-rtl 400s linear infinite;
}
@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); } 
}

.topbar-marquee:hover {
  animation-play-state: paused;
}
.topbar-marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.topbar-text { 
  font-size: 0.9375rem; 
  font-weight: 700; 
  color: white; 
}
.topbar-separator {
  margin: 0 16px;
  opacity: 0.4;
}

.topbar-close {
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--red-dark);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10;
}
.topbar-close:hover { opacity: 1; background: #fff; color: var(--red); }

/* ── 8. Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar-brand { text-decoration: none; }
.brand-text {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-primary);
}
.brand-text strong {
  font-weight: 900;
  color: var(--red);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--off-white);
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--white);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.lang-btn:hover:not(.active) { color: var(--text-secondary); }

/* ── 9. Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 80px 0 96px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-bg-accent {
  position: absolute;
  top: -100px;
  inset-inline-end: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196,30,58,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid var(--red-border);
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brown-light), var(--off-white));
  color: var(--brown);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.hero-headline-wrap { margin-bottom: 20px; }
.hero-pre-headline {
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-primary);
}
.hero-headline::selection, .hero-headline *::selection { background: var(--red-light); }
.hero-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 560px;
  word-break: normal;
  overflow-wrap: break-word;
}
.hero-body p {
  white-space: normal !important;
}

/* Proof Strip */
.proof-strip {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.proof-label {
  font-size: 0.8125rem;
  color: var(--brown);
  font-weight: 600;
}

/* Hero Media */
.hero-media-wrap {
  position: relative;
}
.hero-media {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-responsive {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--red-border);
}
.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}
.hero-media-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--red-border);
  background: var(--red-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}
.play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 10. Phases ──────────────────────────────────────────────────── */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.phase-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.phase-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.phase-card--active {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--red-border);
}
.phase-number { margin-bottom: 16px; }
.phase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 900;
  font-size: 0.875rem;
}
.phase-card--active .phase-badge { background: var(--red); }
.phase-card:not(.phase-card--active) .phase-badge { background: var(--brown); }
.phase-title { font-size: 1.125rem; font-weight: 800; margin-bottom: 10px; color: var(--text-primary); }
.phase-desc { font-size: 0.9375rem; color: var(--text-secondary); }

/* Pull Quote */
.pull-quote {
  text-align: center;
  padding: 48px 32px;
  position: relative;
}
.pull-quote--inline { padding: 32px 0; }
.quote-mark {
  display: block;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}
.pull-quote p {
  font-size: clamp(1.2rem, 3.5vw, 1.75rem);
  font-weight: 800;
  color: var(--brown);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Bridge text */
.bridge-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.bridge-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── 11. Story ───────────────────────────────────────────────────── */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.story-numbers-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
}
.story-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
}
.story-num--up { color: var(--brown); }
.story-num--down { color: var(--red); }
.story-arrow { font-size: 2rem; color: var(--text-muted); transform: rotate(90deg); }
.story-text p {
  font-size: 1.0625rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.story-text strong { color: var(--text-primary); }

/* ── 12. Pain Points ─────────────────────────────────────────────── */
.section-stat {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 16px;
  transition: var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); border-color: var(--red-border); transform: translateY(-2px); }
.pain-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon { font-size: 1.5rem; }
.pain-title { font-size: 1rem; font-weight: 800; color: var(--red); margin-bottom: 6px; }
.pain-desc { font-size: 0.875rem; color: var(--text-secondary); }

/* ── 13. Solution ────────────────────────────────────────────────── */
.solution-section { text-align: center; }
.solution-inner { max-width: 760px; margin: 0 auto; }
.solution-body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ── 14. Audience ────────────────────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.audience-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.audience-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 1rem;
}
.audience-col-header--fit   { background: rgba(22,163,74,0.08); color: #16a34a; }
.audience-col-header--notfit{ background: var(--red-light); color: var(--red); }
.audience-icon { font-size: 1.25rem; }
.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.check-icon { color: #16a34a; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.x-icon { color: var(--red); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── 15. Before & After ──────────────────────────────────────────── */
.ba-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--border); }
.ba-col-header {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 1rem;
}
.ba-col--before .ba-col-header { background: var(--red-light); color: var(--red); }
.ba-col--after  .ba-col-header { background: rgba(22,163,74,0.08); color: #16a34a; border-inline-start: 1px solid var(--border); }
.ba-item {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.ba-item--after { border-inline-start: 1px solid var(--border); }

/* ── 16. Curriculum ──────────────────────────────────────────────── */
.curriculum-accordion { max-width: 860px; margin: 0 auto; }
.curriculum-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.curriculum-item:has(.open) { border-color: var(--red-border); }
.curriculum-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  font-family: inherit;
  text-align: start;
  cursor: pointer;
  transition: background 0.2s;
}
.curriculum-header:hover { background: var(--off-white); }
.curriculum-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: white;
  font-weight: 900;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum-title {
  flex: 1;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--text-primary);
  text-align: start;
}
.curriculum-toggle {
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.curriculum-header[aria-expanded="true"] .curriculum-toggle { transform: rotate(45deg); }
.curriculum-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  background: var(--white);
}
.curriculum-body.open { max-height: 600px; }
.curriculum-body > * { padding: 0 24px 24px; }
.curriculum-subtitle {
  font-size: 0.9375rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 12px;
  padding-top: 4px;
}
.curriculum-bullets ul { padding-inline-start: 20px; }
.curriculum-bullets li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  position: relative;
  list-style: disc;
}
.curriculum-bullets li::marker { color: var(--red); }

/* ── 17. Instructor ──────────────────────────────────────────────── */
.instructor-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.instructor-photo-wrap { flex-shrink: 0; }
.instructor-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--red);
}
.instructor-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: white;
}
.instructor-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 4px;
}
.instructor-title {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.instructor-credentials { display: flex; flex-direction: column; gap: 12px; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
.credential-icon { flex-shrink: 0; margin-top: 2px; }

/* ── 18. Bonuses ─────────────────────────────────────────────────── */
.bonuses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bonus-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.bonus-card:hover { box-shadow: var(--shadow-md); border-color: var(--red-border); transform: translateY(-2px); }
.bonus-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 900;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bonus-title { font-size: 1.0625rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.bonus-body  { font-size: 0.9375rem; color: var(--text-secondary); }

/* ── 19. Guarantee ───────────────────────────────────────────────── */
.guarantee-section {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 80px 0;
}
.guarantee-inner { max-width: 720px; margin: 0 auto; }
.guarantee-icon { margin-bottom: 28px; display: flex; justify-content: center; }
.guarantee-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}
.guarantee-body { font-size: 1.0625rem; color: rgba(255,255,255,0.85); line-height: 1.8; }

/* ── 20. Testimonials ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-photo-wrap { display: flex; align-items: center; }
.testimonial-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-quote { position: relative; }
.testimonial-quote-mark {
  font-size: 3.5rem;
  color: var(--red);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}
.testimonial-quote p { font-size: 0.9375rem; font-style: italic; color: var(--text-secondary); }
.testimonial-name { display: block; font-weight: 800; color: var(--red); font-size: 0.9375rem; }
.testimonial-title { font-size: 0.8125rem; color: var(--text-muted); }

/* ── 21. Pricing ─────────────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.early-bird-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-price-wrap { margin: 24px 0 12px; }
.pricing-original {
  display: block;
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.pricing-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
}
.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.pricing-format { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-urgency { font-size: 0.875rem; color: var(--brown); margin-top: 16px; font-weight: 600; }

/* ── 22. FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has([aria-expanded="true"]) { border-color: var(--red-border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  text-align: start;
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  color: var(--text-primary);
}
.faq-question:hover { background: var(--off-white); }
.faq-toggle {
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9375rem; color: var(--text-secondary); }

/* ── 23. Final CTA ───────────────────────────────────────────────── */
.final-cta-section { text-align: center; }
.final-cta-inner { max-width: 720px; margin: 0 auto; }
.final-cta-body { font-size: 1.0625rem; margin-bottom: 36px; color: var(--text-secondary); }
.checklist { text-align: start; margin: 0 auto 32px; max-width: 560px; display: flex; flex-direction: column; gap: 14px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
  background: var(--off-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
}
.checklist-icon { font-size: 1.25rem; flex-shrink: 0; }
.final-cta-closing { font-size: 1.125rem; margin-bottom: 28px; color: var(--text-primary); }

/* ── 24. Enrollment Form ─────────────────────────────────────────── */
.section-enrollment {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.enrollment-container { max-width: 680px; }
.enrollment-header { text-align: center; margin-bottom: 48px; }
.enrollment-subtext { font-size: 1rem; color: var(--text-secondary); margin-bottom: 0; }

/* Form Wizard */
.form-wizard { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-progress {
  position: relative;
  height: 6px;
  background: var(--border);
}
.form-progress-bar {
  height: 100%;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 4px 4px 0;
}
.form-progress-label {
  position: absolute;
  top: 12px;
  inset-inline-end: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Form Steps */
.form-step { display: none; padding: 48px 48px 36px; }
.form-step.active { display: block; animation: slideUp 0.3s cubic-bezier(0.4,0,0.2,1); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-family: inherit;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 900;
  flex-shrink: 0;
}
.step-input {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.step-input::placeholder { color: var(--text-muted); }
.step-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-border);
}
.step-textarea { resize: vertical; min-height: 120px; }
.step-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239CA3AF'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: inset-inline-end 16px center;
  background-size: 20px;
  padding-inline-end: 44px;
}
[dir="rtl"] .step-select { background-position: left 16px center; }

/* Radio Group */
.radio-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}
.radio-option:has(input:checked) { border-color: var(--red); background: var(--red-light); }
.radio-option input[type="radio"] { accent-color: var(--red); width: 18px; height: 18px; }
.radio-label { font-size: 1rem; font-weight: 600; color: var(--text-primary); }

/* Step Errors */
.step-error { min-height: 20px; font-size: 0.8125rem; color: var(--red); margin-top: 6px; font-weight: 600; }
.step-helper { font-size: 0.8125rem; color: var(--text-muted); margin-top: 8px; }

/* Step Actions */
.step-actions { display: flex; gap: 12px; margin-top: 28px; }
.step-next-btn, .btn-submit { margin-inline-start: auto; }

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 48px 28px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Form Success */
.form-success {
  padding: 64px 48px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.success-icon { margin: 0 auto 24px; }
.checkmark-path { stroke-dasharray: 50; stroke-dashoffset: 50; animation: drawCheck 0.8s 0.3s ease forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.success-title { font-size: 1.75rem; font-weight: 900; color: #16a34a; margin-bottom: 12px; }
.success-body { font-size: 1rem; color: var(--text-secondary); margin-bottom: 28px; }

/* ── 25. Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-size: 1.125rem; font-weight: 400; color: rgba(255,255,255,0.6); }
.footer-brand strong { color: white; font-weight: 900; }
.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-link:hover { color: var(--red); }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ── 26. Sticky Bar ──────────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--white);
  border-top: 2px solid var(--red);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 12px 0;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.sticky-text { font-size: 0.9375rem; font-weight: 700; color: var(--red); }
.sticky-cta { white-space: nowrap; }

/* ── 27. WhatsApp Float ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  inset-inline-end: 24px;
  z-index: 140;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ── 28. AOS Animations ──────────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="80"]  { transition-delay: 80ms; }
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="240"] { transition-delay: 240ms; }

/* ── 29. RTL Adjustments ─────────────────────────────────────────── */
[dir="rtl"] .btn { flex-direction: row-reverse; }
[dir="rtl"] .whatsapp-float { inset-inline-end: 24px; }

/* ── 30. Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media-wrap { order: -1; max-width: 560px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .proof-strip { justify-content: center; }
  .phases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 60px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .instructor-card { flex-direction: column; align-items: center; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .ba-table { grid-template-columns: 1fr; }
  .ba-item--after { border-inline-start: none; border-top: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-step { padding: 32px 24px 24px; }
  .trust-indicators { padding: 0 24px 24px; }
  .navbar-actions .btn-primary { display: none; }
  .sticky-bar-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-content { text-align: start; }
}

@media (max-width: 480px) {
  .proof-strip { flex-direction: column; gap: 16px; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .lang-toggle { display: none; }
}
