/* ============================================
   JAMPA FOR BUSINESS — Landing Page Styles
   ============================================ */

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

:root {
  --bg:            #F7F8FD;
  --bg-card:       #FFFFFF;
  --bg-section:    #EEEAFF;
  --purple:        #7557E3;
  --purple-light:  #9478F0;
  --purple-soft:   rgba(117, 87, 227, 0.08);
  --teal:          #00B896;
  --dark:          #0D0F1A;
  --gray:          #696971;
  --gray-mid:      #3D3D45;
  --border:        rgba(117, 87, 227, 0.2);
  --border-soft:   rgba(117, 87, 227, 0.1);
  --font:          'Rubik', sans-serif;
  --radius:        16px;
  --radius-lg:     24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font);
  direction: rtl;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SHARED TYPOGRAPHY ─────────────────────── */
.section-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--purple-soft);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.75;
}

.accent-purple { color: var(--purple); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 9px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(117,87,227,0.3);
}
.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(117,87,227,0.4);
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
  border-radius: 40px;
}

.btn-full {
  display: block;
  text-align: center;
  width: 100%;
}

/* ── HEADER ──────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 253, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 12px rgba(117,87,227,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-icon {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover .logo-icon {
  opacity: 0.85;
}
.footer-logo {
  height: 38px;
  width: auto;
  opacity: 0.65;
}
.logo-for {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  margin: 0 1px;
}
.logo-biz {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.2px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--dark); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  padding: 110px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(117,87,227,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  max-width: 820px;
  margin: 0 auto 28px;
}

.hero .subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 400;
}

.cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-note {
  color: var(--gray);
  font-size: 14px;
}

/* ── PAIN POINTS ──────────────────────────────── */
.pain {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.pain-header {
  margin-bottom: 56px;
}

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

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(117,87,227,0.08);
}

.pain-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--dark);
}

.pain-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.pain-footer {
  margin-top: 48px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(117,87,227,0.06) 0%, rgba(117,87,227,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.pain-conclusion {
  font-size: 18px;
  color: var(--gray-mid);
  line-height: 1.65;
}
.pain-conclusion strong {
  color: var(--dark);
}

/* ── PROOF ────────────────────────────────────── */
.proof {
  padding: 88px 0;
  background: var(--bg);
}

.proof-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 60px;
  align-items: center;
}

.proof-block {
  text-align: center;
  flex-shrink: 0;
}

.proof-big {
  display: block;
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.proof-block p {
  color: var(--gray);
  font-size: 15px;
  max-width: 180px;
  line-height: 1.6;
}

.proof-divider-v {
  background: var(--border);
  height: 120px;
  width: 1px;
}

.proof-text {}

.proof-line {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--dark);
}

.proof-sub {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}

/* ── SYLLABUS ─────────────────────────────────── */
.syllabus {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.syllabus .section-title,
.syllabus .section-subtitle {
  margin-bottom: 16px;
}

.modules-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.module {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s;
}
.module:last-child {
  border-bottom: none;
}
.module:hover {
  background: var(--purple-soft);
}

.module-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 0 32px;
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  opacity: 0.6;
  letter-spacing: 1px;
  border-left: 1px solid var(--border-soft);
}

.module-content {
  padding: 28px 36px;
}

.module-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.module-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

/* ── STEPS ────────────────────────────────────── */
.steps {
  padding: 100px 0;
  background: var(--bg);
}

.steps .section-label,
.steps .section-title {
  text-align: center;
  display: block;
}

.steps .section-title {
  margin-bottom: 60px;
}

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

.step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.step-num {
  display: block;
  font-size: 64px;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-price {
  display: inline-block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  background: rgba(0,184,150,0.08);
  border: 1px solid rgba(0,184,150,0.2);
  padding: 3px 12px;
  border-radius: 100px;
}

.step p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}

.step.step-accent {
  border-color: rgba(117,87,227,0.28);
  background: linear-gradient(160deg, #EEEAFF 0%, #E6E2FF 100%);
}
.step.step-accent .step-num { opacity: 0.3; }

/* ── PACKAGE ──────────────────────────────────── */
.package {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.package-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.package-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.package-left > p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.includes-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.includes-list span {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* Price card */
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 88px;
}

.price-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,184,150,0.1);
  border: 1px solid rgba(0,184,150,0.25);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.price-amount span {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0;
}

.price-amount-full {
  font-size: 34px;
  margin-bottom: 8px;
}

.price-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 24px 0;
}

.price-full-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.price-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.5;
}

/* ── AI SECTION ───────────────────────────────── */
.ai-section {
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 100px 0;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.label-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,184,150,0.08);
  border: 1px solid rgba(0,184,150,0.25);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ai-content h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  line-height: 1.25;
}

.ai-content p {
  color: var(--gray-mid);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.channels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.channel-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--purple-soft);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-mid);
}

/* Chat mockup */
.ai-visual {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(117,87,227,0.12);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--purple-soft);
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0,212,170,0.6);
}

.chat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 90%;
}

.chat-bubble.ai {
  background: rgba(117,87,227,0.08);
  border: 1px solid rgba(117,87,227,0.16);
  color: #3730a3;
  border-radius: 4px 12px 12px 12px;
}

.chat-bubble.user {
  background: rgba(0,184,150,0.07);
  border: 1px solid rgba(0,184,150,0.18);
  color: #065f46;
  margin-right: auto;
  margin-left: 0;
  border-radius: 12px 12px 4px 12px;
}

/* ── CREATORS ─────────────────────────────────── */
.creators {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
}

.creators .section-subtitle {
  margin-bottom: 0;
}

.creators-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 52px;
}

.creator-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: border-color 0.2s;
}
.creator-card:hover {
  border-color: var(--border);
}

.creator-photo {
  background: var(--bg-section);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.creator-photo.creator-photo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.creator-photo.creator-photo-circle img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* Fallback if image fails */
.creator-photo.photo-fallback::after {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  color: var(--purple);
  opacity: 0.25;
}

.creator-info {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creator-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.creator-info h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.creator-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.creator-info p:last-child {
  margin-bottom: 0;
}

/* ── FINAL CTA ────────────────────────────────── */
.cta-final {
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(117,87,227,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final .section-label {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.cta-final h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  line-height: 1.1;
  position: relative;
}

.cta-final .sub {
  color: var(--gray);
  font-size: 17px;
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact-wrap {
  position: relative;
}

.contact-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input {
  flex: 1;
  min-width: 180px;
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.contact-form input::placeholder { color: var(--gray); }
.contact-form input:focus { border-color: var(--purple); }

.contact-form button {
  padding: 16px 32px;
  border-radius: 10px;
  background: var(--purple);
  color: #FFFFFF;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(117,87,227,0.35);
}
.contact-form button:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(117,87,227,0.4);
}

.form-note {
  color: var(--gray);
  font-size: 13px;
  margin-top: 16px;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  color: var(--gray);
  font-size: 13px;
}

.footer-heart {
  font-size: 13px !important;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .proof-divider-v { display: none; }
  .proof-sub { margin: 0 auto; }

  .package-inner {
    grid-template-columns: 1fr;
  }
  .price-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav, .header .btn { display: none; }

  .hero { padding: 80px 0 64px; }
  .hero h1 { letter-spacing: -1px; }

  .pain-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .module {
    grid-template-columns: 56px 1fr;
  }
  .module-content {
    padding: 24px 20px;
  }

  .ai-inner { grid-template-columns: 1fr; }
  .ai-visual { display: none; }

  .creator-card {
    grid-template-columns: 1fr;
  }
  .creator-photo {
    min-height: 240px;
  }
  .creator-info {
    padding: 28px 24px;
  }

  .contact-form {
    flex-direction: column;
    padding: 0 8px;
  }
  .contact-form input,
  .contact-form button { width: 100%; }

  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }

  .steps, .ai-section, .creators, .cta-final,
  .pain, .proof, .syllabus, .package { padding: 72px 0; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
