/* ── LOGOS BAR ── */
.logos-bar {
  background: var(--bg); padding: 40px 0;
  border-top: 1px solid var(--navy-200);
  border-bottom: 1px solid var(--navy-200);
  text-align: center; overflow: hidden;
}
.logos-label { font-size: 13px; color: var(--navy-400); margin-bottom: 24px; font-weight: 500; }
.logos-track {
  display: flex; gap: 56px; align-items: center;
  animation: scroll 20s linear infinite; width: max-content;
}
.logo-item {
  font-size: 18px; font-weight: 700; color: var(--navy-300);
  letter-spacing: -0.5px; white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── AGENT INTRO ── */
.agent-intro {
  background: #fff;
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.agent-intro-bg { position: absolute; inset: 0; pointer-events: none; }
.agent-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.agent-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,181,253,0.35) 0%, transparent 65%);
  top: -150px; right: -100px;
}
.agent-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(147,197,253,0.25) 0%, transparent 65%);
  bottom: -100px; left: -80px;
}

.agent-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; position: relative; z-index: 1;
}
.agent-intro-copy .section-sub { margin-bottom: 32px; }

.agent-diff-list { display: flex; flex-direction: column; gap: 12px; }
.agent-diff-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.agent-diff-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.agent-diff-no  { background: #FEE2E2; color: #EF4444; }
.agent-diff-yes { background: #DCFCE7; color: #16A34A; }

/* Training methods */
.training-grid { display: flex; flex-direction: column; gap: 20px; }
.training-title {
  font-size: 13px; font-weight: 600; color: var(--navy-400);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.training-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.training-card {
  background: var(--bg); border: 1px solid var(--navy-200);
  border-radius: 16px; padding: 20px;
  transition: all 0.25s;
}
.training-card:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 8px 24px rgba(37,99,235,0.08);
  transform: translateY(-3px);
}
.training-card-icon {
  width: 40px; height: 40px; background: var(--blue-50);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 12px;
}
.training-card-label { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.training-card-sub { font-size: 12px; color: var(--navy-400); line-height: 1.5; }
.training-arrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  padding: 12px 16px; background: var(--blue-50);
  border-radius: 10px; border: 1px solid #BFDBFE;
}

/* ── PROBLEM — Stripe-like light ── */
.problem {
  background: #fff;
  position: relative; overflow: hidden;
}
.problem-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.problem-blob-rose {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(251,207,232,0.65) 0%, transparent 60%);
  top: -200px; right: -150px;
}
.problem-blob-violet {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,181,253,0.55) 0%, transparent 60%);
  bottom: -120px; left: -100px;
}
.problem-blob-blue {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(147,197,253,0.4) 0%, transparent 60%);
  top: 50%; left: 40%; transform: translate(-50%, -50%);
}
/* diagonal stripe accent */
.problem::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  top: -30px; right: 8%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(244,114,182,0.07),
    rgba(244,114,182,0.07) 1px,
    transparent 1px,
    transparent 9px
  );
  pointer-events: none;
}

.problem .section-label { color: var(--navy-400); position: relative; z-index: 1; }
.problem .section-title { color: var(--navy); position: relative; z-index: 1; }
.problem .section-sub { color: var(--navy-700); position: relative; z-index: 1; }

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px; position: relative; z-index: 1;
}
.problem-card {
  background: #fff;
  border: 1px solid rgba(196,181,253,0.5);
  border-radius: 20px; padding: 32px;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(139,92,246,0.07);
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #EC4899, #8B5CF6);
  opacity: 0; transition: opacity 0.3s;
}
.problem-card:hover {
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 12px 40px rgba(139,92,246,0.13);
  transform: translateY(-6px);
}
.problem-card:hover::before { opacity: 1; }
.problem-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #F3E8FF, #FCE7F3);
  border: 1px solid rgba(196,181,253,0.4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #7C3AED;
}
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.problem-card p  { font-size: 14px; color: var(--navy-700); line-height: 1.65; }

/* ── LIVE DEMO ── */
.live-demo { background: var(--bg); }

.demo-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.demo-copy .section-title { margin-bottom: 16px; }
.demo-copy .section-sub { margin-bottom: 32px; font-size: 16px; }
.demo-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.demo-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--navy); }
.demo-bullet-icon { width: 24px; height: 24px; background: var(--blue-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }

.demo-site-wrap { position: relative; }
.demo-site-frame { background: #fff; border-radius: 16px; border: 1px solid var(--navy-200); overflow: hidden; box-shadow: 0 24px 64px rgba(15,23,42,0.12); }
.demo-site-bar { background: var(--navy-800); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.demo-site-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-site-dot:nth-child(1) { background: #FF5F57; }
.demo-site-dot:nth-child(2) { background: #FEBC2E; }
.demo-site-dot:nth-child(3) { background: #28C840; }
.demo-site-url { flex: 1; text-align: center; font-size: 11px; font-family: monospace; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); border-radius: 4px; padding: 3px 10px; margin: 0 12px; }
.demo-site-body { padding: 20px; background: #F1F5F9; min-height: 340px; position: relative; }
.demo-skel { background: var(--navy-200); border-radius: 4px; }
.demo-skel-nav { height: 32px; border-radius: 6px; margin-bottom: 16px; }
.demo-skel-hero { height: 24px; width: 55%; }

.demo-widget-area { position: absolute; bottom: 16px; right: 16px; }
[dir="rtl"] .demo-widget-area { right: auto; left: 16px; }

.demo-bubble { width: 48px; height: 48px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,99,235,0.4); position: relative; transition: opacity 0.3s, transform 0.3s; }
.demo-bubble.hide { opacity: 0; transform: scale(0.7); pointer-events: none; }
.demo-bubble-dot { position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: #22C55E; border: 2px solid #F1F5F9; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.8; } }

.demo-chat-window { width: 260px; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 48px rgba(15,23,42,0.2); opacity: 0; transform: scale(0.85) translateY(12px); transform-origin: bottom right; transition: opacity 0.3s ease, transform 0.3s ease; pointer-events: none; }
[dir="rtl"] .demo-chat-window { transform-origin: bottom left; }
.demo-chat-window.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }

.demo-chat-header { background: var(--blue); padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.demo-chat-avatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-chat-name { font-size: 12px; font-weight: 600; color: #fff; }
.demo-chat-status { font-size: 10px; color: rgba(255,255,255,0.7); }
.demo-chat-close { margin-left: auto; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; opacity: 0.7; }
[dir="rtl"] .demo-chat-close { margin-left: 0; margin-right: auto; }

.demo-chat-msgs { padding: 12px; background: #F8FAFC; min-height: 160px; max-height: 160px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.demo-msg { max-width: 88%; padding: 8px 12px; border-radius: 12px; font-size: 12px; line-height: 1.5; animation: msgSlide 0.3s ease both; }
@keyframes msgSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.demo-msg-bot { background: #fff; color: var(--navy); border: 1px solid var(--navy-200); align-self: flex-start; border-bottom-left-radius: 3px; }
.demo-msg-user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.demo-typing { align-self: flex-start; background: #fff; border: 1px solid var(--navy-200); border-radius: 12px; border-bottom-left-radius: 3px; padding: 10px 14px; display: flex; gap: 4px; align-items: center; animation: msgSlide 0.3s ease both; }
.demo-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--navy-400); animation: typing 1.2s infinite; }
.demo-typing span:nth-child(2) { animation-delay: 0.2s; }
.demo-typing span:nth-child(3) { animation-delay: 0.4s; }

.demo-chat-input { display: flex; gap: 6px; padding: 10px; border-top: 1px solid var(--navy-200); background: #fff; }
.demo-input-field { flex: 1; background: #F1F5F9; border-radius: 6px; height: 28px; }
.demo-send-btn { width: 28px; height: 28px; background: var(--blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; }

/* ── HOW IT WORKS ── */
.how { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: calc(16.6% + 20px); right: calc(16.6% + 20px); height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%); }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: 0 0 0 8px #DBEAFE; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--navy-700); line-height: 1.7; }

/* ── FEATURES ── */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.feature-card { background: #fff; border: 1px solid var(--navy-200); border-radius: 20px; padding: 36px; transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 12px 40px rgba(37,99,235,0.08); transform: translateY(-6px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; background: var(--blue-50); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--navy-700); line-height: 1.7; }

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview {
  background: #fff;
  position: relative; overflow: hidden; padding: 100px 0;
}
.dashboard-preview-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dash-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.dash-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,181,253,0.45) 0%, transparent 65%);
  top: -150px; right: -150px;
}
.dash-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,207,232,0.4) 0%, transparent 65%);
  bottom: -100px; left: 10%;
}
.dash-stripe {
  position: absolute; bottom: 0; left: 0;
  width: 400px; height: 400px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(244,114,182,0.06),
    rgba(244,114,182,0.06) 1px,
    transparent 1px,
    transparent 10px
  );
}

.dash-mockup-wrap { margin-top: 56px; position: relative; z-index: 1; }
.dash-mockup {
  background: var(--navy-800);
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px rgba(15,23,42,0.25),
    0 0 80px rgba(139,92,246,0.12);
}
.dash-topbar {
  background: var(--navy); padding: 14px 20px;
  display: flex; align-items: center; gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-topbar-logo { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.dash-topbar-logo span { color: var(--blue); display: inline-block; direction: ltr; unicode-bidi: embed; }
.dash-topbar-nav { display: flex; gap: 4px; flex: 1; margin-left: 20px; }
.dash-nav-item { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.4); padding: 6px 14px; border-radius: 6px; cursor: pointer; transition: all 0.15s; }
.dash-nav-active { background: rgba(255,255,255,0.08); color: #fff; }
[dir="rtl"] .dash-topbar-nav { margin-left: 0; margin-right: 20px; }
.dash-topbar-right { margin-left: auto; }
[dir="rtl"] .dash-topbar-right { margin-left: 0; margin-right: auto; }
.dash-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.dash-content { display: grid; grid-template-columns: 200px 220px 1fr; }

/* Sidebar */
.dash-sidebar { background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.05); padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.dash-agent-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; cursor: pointer; transition: background 0.15s; }
.dash-agent-card:hover { background: rgba(255,255,255,0.05); }
.dash-agent-active { background: rgba(37,99,235,0.15); }
.dash-agent-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dash-dot-green { background: #22C55E; }
.dash-dot-gray  { background: #64748B; }
.dash-agent-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.dash-agent-msgs { font-size: 11px; color: rgba(255,255,255,0.35); }

/* Conv list */
.dash-conv-list { border-right: 1px solid rgba(255,255,255,0.05); padding: 16px; display: flex; flex-direction: column; gap: 2px; }
.dash-conv-header { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.dash-conv-item { padding: 10px 12px; border-radius: 8px; cursor: pointer; transition: background 0.15s; }
.dash-conv-item:hover { background: rgba(255,255,255,0.05); }
.dash-conv-selected { background: rgba(255,255,255,0.07); }
.dash-conv-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.dash-conv-preview { font-size: 11px; color: rgba(255,255,255,0.35); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.dash-conv-time { font-size: 10px; color: rgba(255,255,255,0.2); }

/* Messages */
.dash-msgs-panel { padding: 20px; display: flex; flex-direction: column; gap: 12px; background: rgba(0,0,0,0.1); }
.dash-msgs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dash-msgs-user { font-size: 15px; font-weight: 700; color: #fff; }
.dash-msgs-time { font-size: 11px; color: rgba(255,255,255,0.3); }
.dash-msgs-body { display: flex; flex-direction: column; gap: 10px; }
.dash-msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.dash-msg-user { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); align-self: flex-end; border-bottom-right-radius: 3px; }
.dash-msg-agent { background: rgba(37,99,235,0.2); color: rgba(255,255,255,0.9); align-self: flex-start; border: 1px solid rgba(37,99,235,0.3); border-bottom-left-radius: 3px; }

/* ── NEURAL NETWORK ── */
.neural-section { background: var(--navy); position: relative; overflow: hidden; padding: 100px 0; }
.neural-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.neural-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.neural-copy .section-label { color: rgba(255,255,255,0.4); }
.neural-copy .section-title { color: #fff; }
.neural-copy .section-sub { color: rgba(255,255,255,0.5); }
.neural-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.neural-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 24px; transition: all 0.3s; }
.neural-stat:hover { background: rgba(255,255,255,0.08); border-color: rgba(139,92,246,0.3); }
.neural-stat-value { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 4px; }
.neural-stat-label { font-size: 13px; color: rgba(255,255,255,0.4); }
.neural-stat-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 14px; overflow: hidden; }
.neural-stat-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #8B5CF6, #EC4899); animation: fillBar 2s ease both; }
@keyframes fillBar { from { width: 0; } }

/* ── CODE SECTION — Stripe-like light ── */
.code-section { background: #fff; position: relative; overflow: hidden; }
.code-section .blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.code-section .blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(216,180,254,0.45) 0%, transparent 65%); top: -200px; right: -100px; }
.code-section .blob-2 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(147,197,253,0.35) 0%, transparent 65%); bottom: -100px; left: -80px; }
.code-section .blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(249,168,212,0.3) 0%, transparent 65%); top: 30%; left: 30%; }
.code-section .section-label { color: var(--navy-400); position: relative; z-index: 1; }
.code-section .section-title { color: var(--navy); position: relative; z-index: 1; }
.code-section .section-sub { color: var(--navy-700); position: relative; z-index: 1; }
.code-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 56px; position: relative; z-index: 1; }
.code-block { background: #0F172A; border-radius: 16px; padding: 32px; border: 1px solid rgba(255,255,255,0.06); font-family: 'Fira Code', 'Courier New', monospace; font-size: 14px; line-height: 2; overflow-x: auto; box-shadow: 0 24px 64px rgba(15,23,42,0.25); }
.code-comment { color: #3F4F64; }
.code-tag { color: #818CF8; }
.code-attr { color: #34D399; }
.code-val { color: #FCD34D; }
.code-points { display: flex; flex-direction: column; gap: 28px; }
.code-point { display: flex; gap: 16px; align-items: flex-start; }
.code-point-icon { width: 44px; height: 44px; background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.code-point h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.code-point p { font-size: 14px; color: var(--navy-700); line-height: 1.6; }

/* ── STATS ── */
.stats { background: var(--blue); color: #fff; padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: 56px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 16px; opacity: 0.75; }

/* ── PRICING ── */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; align-items: stretch; }
.pricing-card { background: #fff; border: 1px solid var(--navy-200); border-radius: 24px; padding: 36px 28px; position: relative; transition: all 0.3s; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15,23,42,0.1); }
.pricing-card.popular { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue), 0 20px 60px rgba(37,99,235,0.15); }
.pricing-card.popular:hover { transform: translateY(-4px); }
.pricing-features { flex: 1; }
.pricing-btn { margin-top: auto; }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; border-radius: 100px; padding: 5px 18px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pricing-plan { font-size: 13px; font-weight: 600; color: var(--navy-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 800; letter-spacing: -2px; margin-bottom: 4px; }
.pricing-period { font-size: 14px; color: var(--navy-400); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy-700); }
.check-icon { color: var(--blue); display: flex; align-items: center; flex-shrink: 0; }
.pricing-btn { width: 100%; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.pricing-btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy-200); }
.pricing-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.pricing-btn-filled { background: var(--blue); color: #fff; border: none; }
.pricing-btn-filled:hover { background: #1D4ED8; box-shadow: 0 4px 16px rgba(37,99,235,0.35); }

/* ── CTA ── */
.cta-section { background: var(--navy); color: #fff; text-align: center; padding: 120px 24px; position: relative; overflow: hidden; }
.cta-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-glow-1 { width: 500px; height: 500px; background: rgba(139,92,246,0.28); top: -150px; left: 50%; transform: translateX(-60%); animation: glowFloat 8s ease-in-out infinite; }
.cta-glow-2 { width: 350px; height: 350px; background: rgba(236,72,153,0.18); bottom: -100px; right: 10%; animation: glowFloat 10s ease-in-out infinite reverse; }
@keyframes glowFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.1); } }
.cta-section .section-title { color: #fff; position: relative; z-index: 1; }
.cta-section .cta-sub { color: rgba(255,255,255,0.55); font-size: 18px; margin: 20px auto 44px; max-width: 440px; position: relative; z-index: 1; }
.cta-section .btn-primary { position: relative; z-index: 1; background: #fff; color: var(--blue); font-size: 17px; padding: 16px 36px; }
.cta-section .btn-primary:hover { background: #EFF6FF; box-shadow: 0 8px 32px rgba(255,255,255,0.15); }

/* ── FOOTER ── */
footer { background: var(--navy); color: var(--navy-400); padding: 48px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.footer-logo span { color: var(--blue); display: inline-block; direction: ltr; unicode-bidi: embed; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--navy-400); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.2); }

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

@media (max-width: 768px) {
  .problem-grid, .steps, .features-grid,
  .code-wrapper, .stats-grid, .demo-wrapper, .neural-content,
  .neural-stats, .agent-intro-inner, .training-cards,
  .dash-content { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .steps::before { display: none; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .footer-inner { flex-direction: column; text-align: center; }
  .demo-site-frame { max-width: 360px; margin: 0 auto; }
  .dash-sidebar, .dash-conv-list { display: none; }
}
