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

:root {
  --ink: #0f0a1e;
  --ink2: #1e1535;
  --purple: #f28f1e;
  --purple-light: #8b5cf6;
  --purple-dim: #f0ebff;
  --purple-mid: #c4b5fd;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --teal: #14b8a6;
  --surface: #ffffff;
  --surface2: #fafaf9;
  --surface3: #f5f3ff;
  --border: #e8e2f8;
  --text-muted: #6b7280;
  --text-body: #374151;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(108, 61, 232, 0.1);
  --shadow-lg: 0 20px 60px rgba(108, 61, 232, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background: var(--surface);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── UTILS ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-dim);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--purple-mid);
  letter-spacing: 0.02em;
}
.tag svg {
  width: 14px;
  height: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "Vazirmatn", sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 61, 232, 0.35);
}
.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 61, 232, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--purple);
  background: var(--purple-dim);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}
.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.8;
}
.text-center {
  text-align: center;
}
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    #a855f7 50%,
    #ec4899 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--purple);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -10%,
      rgba(108, 61, 232, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 90% 80%,
      rgba(168, 85, 247, 0.08) 0%,
      transparent 60%
    );
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-tag {
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-note span {
  color: var(--purple);
  font-weight: 600;
}
.hero-visual {
  margin-top: 80px;
  position: relative;
}
.hero-mockup {
  background: var(--ink);
  border-radius: 20px;
  box-shadow:
    0 40px 120px rgba(15, 10, 30, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.mockup-bar {
  background: #1e1535;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.mockup-dot:nth-child(2) {
  background: #ffbd2e;
}
.mockup-dot:nth-child(3) {
  background: #28c940;
}
.mockup-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-family: monospace;
}
.mockup-body {
  padding: 0;
}
.dashboard-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
}
.dash-sidebar {
  background: #160f2e;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
}
.dash-nav-item.active {
  background: var(--purple);
  color: #fff;
}
.dash-nav-item svg {
  width: 16px;
  height: 16px;
}
.dash-main {
  background: #0f0a1e;
  padding: 28px;
  overflow: hidden;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.dash-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}
.stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.stat-change {
  font-size: 11px;
  color: #34d399;
  margin-top: 4px;
}
.dash-orders {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
}
.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  gap: 16px;
}
.order-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.order-product {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.order-amount {
  color: #a78bfa;
  font-size: 13px;
  font-weight: 700;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.badge-new {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}
.badge-pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}
.badge-done {
  background: rgba(108, 61, 232, 0.2);
  color: #a78bfa;
}
.hero-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-1 {
  bottom: -20px;
  right: -20px;
}
.hero-float-2 {
  top: 40px;
  left: -30px;
}
.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.float-label {
  font-size: 12px;
  color: var(--text-muted);
}
.float-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

/* ─── LOGOS BAND ─── */
.logos-band {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.biz-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}
.biz-badge span {
  font-size: 18px;
}

/* ─── PROBLEM ─── */
.problem {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    rgba(108, 61, 232, 0.25) 0%,
    transparent 70%
  );
}
.problem-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.problem .section-title {
  color: #fff;
}
.problem .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: right;
  transition: all 0.3s;
}
.pain-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.pain-emoji {
  font-size: 32px;
  margin-bottom: 16px;
}
.pain-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pain-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.problem-statement {
  margin-top: 70px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(108, 61, 232, 0.3),
    rgba(168, 85, 247, 0.15)
  );
  border: 1px solid rgba(108, 61, 232, 0.4);
  border-radius: 20px;
}
.problem-statement p {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
}
.problem-statement em {
  color: #a78bfa;
  font-style: normal;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 120px 0;
  background: var(--surface);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 14%;
  left: 14%;
  height: 2px;
  background: linear-gradient(
    to left,
    var(--purple-dim),
    var(--purple),
    var(--purple-dim)
  );
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--purple);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 22px;
  font-weight: 900;
  color: var(--purple);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--purple-dim);
}
.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── SCENARIOS ─── */
.scenarios {
  padding: 120px 0;
  background: var(--surface2);
}
.scenario-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}
.scenario-card {
  display: none;
  margin-top: 40px;
}
.scenario-card.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.scenario-content {
  text-align: right;
}
.scenario-tag {
  margin-bottom: 16px;
}
.scenario-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
}
.scenario-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.9;
}
.scenario-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.s-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--purple-dim);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
}
.s-step-text {
  font-size: 14px;
  color: var(--text-body);
}
.s-step-text strong {
  color: var(--ink);
  font-weight: 700;
}
.scenario-visual {
  background: var(--ink);
  border-radius: 20px;
  padding: 28px;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-msg {
  max-width: 80%;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
}
.chat-msg.them {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-start;
}
.chat-msg.us {
  background: var(--purple);
  color: #fff;
  align-self: flex-end;
}
.chat-msg.system {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  align-self: center;
  border-radius: 100px;
  font-size: 12px;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.order-form-preview {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.form-field-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-label-prev {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.form-input-prev {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--ink);
  font-family: "Vazirmatn", sans-serif;
}

/* ─── SMART DIRECT ─── */
.smart-direct {
  padding: 120px 0;
  background: var(--surface3);
}
.sd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}
.sd-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sd-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.sd-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--purple-dim);
  display: grid;
  place-items: center;
}
.sd-icon svg {
  width: 20px;
  height: 20px;
  color: var(--purple);
}
.sd-feat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.sd-feat-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.dm-template-preview {
  background: var(--ink);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.dm-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.dm-handle {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.dm-bubble {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 12px;
}
.dm-link-card {
  background: var(--purple);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}
.dm-link-card:hover {
  background: var(--purple-light);
}
.dm-link-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.dm-link-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.dm-link-url {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}
.dm-templates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.dm-tpl-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.dm-tpl-btn:hover {
  background: rgba(108, 61, 232, 0.2);
  border-color: var(--purple);
}
.dm-tpl-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.dm-tpl-copy {
  font-size: 11px;
  color: var(--purple-mid);
  font-weight: 600;
}

/* ─── DASHBOARD SECTION ─── */
.dash-section {
  padding: 120px 0;
  background: var(--surface);
}
.dash-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.dash-feat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.dash-feat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--purple-mid);
}
.df-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.df-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.df-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── CUSTOMER JOURNEY ─── */
.journey {
  padding: 120px 0;
  background: var(--ink);
}
.journey .section-title {
  color: #fff;
}
.journey .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
.journey-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  flex-wrap: wrap;
}
.journey-step {
  text-align: center;
  padding: 0 8px;
  flex: 1;
  min-width: 120px;
}
.journey-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  transition: all 0.3s;
}
.journey-icon:hover {
  border-color: var(--purple);
  background: rgba(108, 61, 232, 0.2);
}
.journey-icon svg {
  width: 28px;
  height: 28px;
}
.journey-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.journey-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  padding: 0 4px;
  margin-bottom: 32px;
}

/* ─── FUNNEL ─── */
.funnel-section {
  padding: 120px 0;
  background: var(--surface);
}
.funnel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.funnel-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.funnel-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: all 0.3s;
}
.funnel-step:hover {
  filter: brightness(1.1);
}
.funnel-step .f-num {
  font-size: 18px;
  font-weight: 900;
}
.funnel-step .f-pct {
  font-size: 12px;
  opacity: 0.7;
}
.funnel-insights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--surface2);
}
.insight-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.insight-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
.insight-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

/* ─── FEATURES GRID ─── */
.features-grid-section {
  padding: 120px 0;
  background: var(--surface2);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
}
.feat-cell {
  background: #fff;
  padding: 36px 28px;
  transition: all 0.3s;
}
.feat-cell:hover {
  background: var(--surface3);
}
.feat-cell-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.feat-cell-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.feat-cell-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}
.feat-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  list-style: none;
}
.feat-list li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  font-size: 12px;
}

/* ─── PRICING ─── */
.pricing {
  padding: 120px 0;
  background: var(--surface);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, var(--ink) 0%, #1e1535 100%);
}
.featured-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
}
.price-plan {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-card.featured .price-plan {
  color: rgba(255, 255, 255, 0.5);
}
.price-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
}
.price-card.featured .price-name {
  color: #fff;
}
.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
}
.price-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.price-card.featured .price-num {
  color: #a78bfa;
}
.price-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-card.featured .price-unit {
  color: rgba(255, 255, 255, 0.4);
}
.price-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.5);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
}
.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  display: grid;
  place-items: center;
}
.check-icon svg {
  width: 10px;
  height: 10px;
  color: #34d399;
}
.price-cta {
  width: 100%;
  text-align: center;
}
.price-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}
.price-note strong {
  color: var(--ink);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 100px 0;
  background: var(--surface3);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  display: grid;
  place-items: center;
  background: var(--purple-dim);
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq {
  padding: 120px 0;
  background: var(--surface);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  gap: 12px;
}
.faq-arrow {
  font-size: 20px;
  color: var(--purple);
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1e1535 50%, #160f2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 61, 232, 0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 40px;
}
.final-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--purple);
}
.btn-white:hover {
  background: var(--purple-dim);
}
.final-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.final-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
}
.final-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── FOOTER ─── */
footer {
  background: #0a0616;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(108, 61, 232, 0.3);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(108, 61, 232, 0);
  }
}

.hero-headline {
  animation: fadeUp 0.8s ease both;
}
.hero-sub {
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero-ctas {
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-visual {
  animation: fadeUp 1s ease 0.5s both;
}
.hero-float {
  animation: float 4s ease-in-out infinite;
}
.hero-float-2 {
  animation-delay: 1.5s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .how-steps::before {
    display: none;
  }
  .scenario-card.active {
    grid-template-columns: 1fr;
  }
  .sd-grid {
    grid-template-columns: 1fr;
  }
  .dash-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-preview {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    display: none;
  }
  .funnel-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .hero-float {
    display: none;
  }
  .final-stats {
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
