/* ── Sales Page ────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, sans-serif;
  background: var(--bg-base, #060609);
  color: var(--text-1, #f0f0ff);
  direction: rtl;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout helpers ──────────────────────────────────────────────────────── */

.sales-container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.sales-container.narrow { max-width: 720px; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */

.sales-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(6,6,9,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sales-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-1, #f0f0ff);
  font-weight: 700;
  font-size: 1rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E8A020, #d4911a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #060609;
  font-size: 1rem;
}

.sales-nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  color: #E8A020;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 150ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.sales-nav-cta:hover { background: rgba(232,160,32,0.2); }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.sales-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem 4rem;
  max-width: 1120px;
  margin-inline: auto;
}

.sales-hero-inner { display: flex; flex-direction: column; gap: 1.5rem; }

.sales-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.2);
  color: #E8A020;
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
}

.sales-h1 {
  font-family: 'Space Grotesk', 'Heebo', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sales-h1-accent {
  background: linear-gradient(135deg, #E8A020, #00C4B3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sales-lead {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

.sales-hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-primary-xl {
  padding: 0.85rem 2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #E8A020, #d4911a);
  color: #060609;
  font-weight: 900;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  text-decoration: none;
  transition: transform 150ms, box-shadow 150ms;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,160,32,0.3);
}
.btn-primary-xl.large { padding: 1rem 2.5rem; font-size: 1.1rem; }

.btn-ghost-xl {
  padding: 0.85rem 2rem;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Heebo', sans-serif;
  text-decoration: none;
  transition: all 150ms ease;
  display: inline-flex;
  align-items: center;
}
.btn-ghost-xl:hover { border-color: rgba(255,255,255,0.3); color: white; }

/* Social proof row */
.sales-social-proof-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sp-item { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.sp-item strong { color: white; }
.sp-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.12); }

/* Hero visual */
.sales-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 340px;
}

.hero-card {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 200ms, transform 200ms;
  animation: cardFloat 0.5s cubic-bezier(0.2,0.8,0.2,1) both;
}
.hero-card:hover { border-color: rgba(232,160,32,0.3); transform: translateX(-4px); }

.hc-1 { animation-delay: 0.05s; }
.hc-2 { animation-delay: 0.12s; border-color: rgba(232,160,32,0.2); }
.hc-3 { animation-delay: 0.19s; }
.hc-4 { animation-delay: 0.26s; }

@keyframes cardFloat {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hc-label { font-weight: 900; font-size: 1rem; }
.hc-2 .hc-label { color: #E8A020; }
.hc-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── Sections ────────────────────────────────────────────────────────────── */

.sales-section {
  padding-block: 5rem;
}

.dark-section {
  background: rgba(255,255,255,0.01);
  border-block: 1px solid rgba(255,255,255,0.05);
}

.sales-section-title {
  font-family: 'Space Grotesk', 'Heebo', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.75rem;
}

.sales-section-sub {
  text-align: center;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ── Value Grid ──────────────────────────────────────────────────────────── */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  transition: border-color 200ms, transform 200ms;
}
.value-card:hover { border-color: rgba(232,160,32,0.2); transform: translateY(-4px); }
.value-card.featured {
  background: rgba(232,160,32,0.04);
  border-color: rgba(232,160,32,0.2);
}

.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 1rem; }

.value-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.value-list li { font-size: 0.9rem; color: rgba(255,255,255,0.7); padding-right: 1.25rem; position: relative; }
.value-list li::before { content: '✓'; position: absolute; right: 0; color: #10B981; font-weight: 700; }

/* ── Curriculum ──────────────────────────────────────────────────────────── */

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.curriculum-module {
  padding: 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: border-color 150ms;
}
.curriculum-module:hover { border-color: rgba(139,92,246,0.3); }

.cm-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(139,92,246,0.7);
  margin-bottom: 0.5rem;
}
.cm-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; }
.cm-count { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── Pricing ─────────────────────────────────────────────────────────────── */

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

.pricing-card {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  position: relative;
  transition: border-color 200ms;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.15); }
.pricing-card.popular {
  background: rgba(232,160,32,0.04);
  border-color: rgba(232,160,32,0.3);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 50%;
  transform: translateX(50%);
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, #E8A020, #d4911a);
  color: #060609;
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 0 0 10px 10px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1.5rem; }
.price-amount { font-size: 2.5rem; font-weight: 900; }
.price-period { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.pricing-features li { font-size: 0.88rem; padding-right: 1.5rem; position: relative; }
.feat-yes { color: rgba(255,255,255,0.8); }
.feat-yes::before { content: '✓'; position: absolute; right: 0; color: #10B981; font-weight: 700; }
.feat-no { color: rgba(255,255,255,0.25); text-decoration: line-through; }
.feat-no::before { content: '✕'; position: absolute; right: 0; color: rgba(255,255,255,0.2); }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  text-decoration: none;
  transition: all 150ms ease;
  font-size: 0.95rem;
}
.pricing-cta.primary {
  background: linear-gradient(135deg, #E8A020, #d4911a);
  color: #060609;
}
.pricing-cta.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.3); }
.pricing-cta.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.pricing-cta.ghost:hover { border-color: rgba(255,255,255,0.3); color: white; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 150ms;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: rgba(255,255,255,0.4); transition: transform 200ms; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: rgba(232,160,32,0.2); }

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.75rem;
}

/* ── Final CTA ───────────────────────────────────────────────────────────── */

.sales-final-cta {
  padding-block: 5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(232,160,32,0.04), rgba(139,92,246,0.04));
  border-top: 1px solid rgba(255,255,255,0.07);
}

.final-cta-title {
  font-family: 'Space Grotesk', 'Heebo', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.final-cta-sub {
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.final-cta-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Floating Chat Button ────────────────────────────────────────────────── */

.chat-float-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: all 200ms ease;
  z-index: 50;
  animation: floatIn 0.5s 1s cubic-bezier(0.2,0.8,0.2,1) both;
}
.chat-float-btn:hover {
  background: rgba(139,92,246,0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.2);
}

.cfb-icon { font-size: 1.1rem; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.sales-footer {
  padding-block: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 150ms;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .sales-hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .sales-hero-visual { display: none; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
  .sales-section { padding-block: 3rem; }
  .value-grid { grid-template-columns: 1fr; }
  .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .sales-hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary-xl, .btn-ghost-xl { width: 100%; justify-content: center; min-height: 48px; }
  .sales-nav { padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
  .curriculum-grid { grid-template-columns: 1fr; }
  .sales-h1 { font-size: 1.75rem; }
  .btn-primary-xl, .btn-ghost-xl { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
  .sales-hero { padding: 2.5rem 1rem 2rem; }
  .value-card { padding: 1.25rem; }
  .sales-container { padding-inline: 1rem; }
}
