/* ══════════════════════════════════════════════════════════════
   SAAS SOLUTIONS — CENTERED HERO / DASHBOARD UI
   Brand palette: Purple-Violet (#7c3aed / #a855f7)
   Distinct from BigCommerce (blue split) & Shopify (green center)
   ══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #050309;
  --bg-soft:      #0a0614;
  --bg-alt:       #080412;
  --text:         #ede9fd;
  --muted:        #7b6e9a;
  --accent:       #7c3aed;
  --accent-2:     #a855f7;
  --accent-light: #c084fc;
  --accent-glow:  rgba(124, 58, 237, 0.16);
  --card:         rgba(10, 6, 20, 0.88);
  --border:       rgba(255, 255, 255, 0.06);
  --border-accent:rgba(124, 58, 237, 0.28);
  --radius:       16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HERO — Full-Width Centered + Dashboard Below
   ═══════════════════════════════════════════ */
.saas-hero {
  position: relative;
  padding: 148px 0 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% -80px, rgba(124,58,237,0.22), transparent),
    radial-gradient(ellipse 600px 400px at 15% 90%, rgba(168,85,247,0.10), transparent),
    radial-gradient(ellipse 500px 400px at 85% 85%, rgba(124,58,237,0.08), transparent),
    linear-gradient(rgba(5,3,9,0.78), rgba(5,3,9,0.88)),
    url('../../images/hero-bg.jpg') center center / cover no-repeat;
}

/* Animated particle dots */
.saas-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(124,58,237,0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-center {
  max-width: 760px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}
.hero-center.visible { opacity: 1; transform: translateY(0); }

.saas-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}
.saas-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.saas-breadcrumb a:hover { color: var(--accent-light); }
.saas-breadcrumb i { font-size: 10px; opacity: 0.5; }
.saas-breadcrumb > span { color: var(--accent-light); font-weight: 700; }

.saas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.saas-badge i { font-size: 15px; }

.hero-center h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-center h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.07);
}

/* Trust pills row */
.hero-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.hero-pill i { color: var(--accent-light); font-size: 13px; }

/* ── Dashboard Mockup ────────────────────────────────────────── */
.dash-wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s 0.2s, transform 0.8s 0.2s;
}
.dash-wrap.visible { opacity: 1; transform: translateY(0); }

/* Glow under dashboard */
.dash-wrap::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.3), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.dash-frame {
  background: rgba(10,6,20,0.96);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 60px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(124,58,237,0.06);
  position: relative;
  z-index: 1;
}

/* Chrome bar */
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28ca42; }
.dash-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-url i { color: #28ca42; font-size: 10px; }

/* Dashboard layout: sidebar + main */
.dash-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.dash-sidebar {
  background: rgba(255,255,255,0.015);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 0 4px;
}
.dash-logo-sq {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.8;
}
.dash-logo-txt {
  width: 60px; height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
}
.dash-nav-item.active {
  background: rgba(124,58,237,0.14);
  border: 1px solid rgba(124,58,237,0.2);
}
.dash-nav-dot {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.dash-nav-item.active .dash-nav-dot {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.7;
}
.dash-nav-lbl {
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}
.dash-nav-item.active .dash-nav-lbl {
  background: rgba(255,255,255,0.16);
}

/* Main content */
.dash-main {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* KPI row */
.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dash-kpi {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.dash-kpi-val {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(124,58,237,0.5), rgba(168,85,247,0.3));
  margin-bottom: 6px;
  width: 60%;
}
.dash-kpi-lbl {
  width: 80%; height: 5px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}
.dash-kpi-delta {
  margin-top: 5px;
  width: 40%; height: 5px;
  background: rgba(34,197,94,0.3);
  border-radius: 2px;
}

/* Chart area */
.dash-chart-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
.dash-chart {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.dash-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.dash-chart-title { width: 80px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.dash-chart-legend {
  display: flex;
  gap: 8px;
}
.legend-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 0px;
}
.legend-dot:nth-child(1) { background: var(--accent-2); }
.legend-dot:nth-child(2) { background: rgba(255,255,255,0.2); }

/* Bar chart */
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}
.dash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.15);
  transition: height 0.3s;
}
.dash-bar.accent {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  border-color: var(--accent);
}

/* Donut chart */
.dash-donut-wrap {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.dash-donut {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent) 0deg 230deg,
    rgba(124,58,237,0.12) 230deg 360deg
  );
  display: grid;
  place-items: center;
}
.dash-donut-inner {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,6,20,0.9);
}
.dash-donut-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.dash-donut-label strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 700;
}

/* Table */
.dash-table {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.dash-table-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dash-table-title { width: 100px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.dash-table-filter { width: 50px; height: 6px; background: rgba(124,58,237,0.2); border-radius: 3px; }
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dash-row:last-child { border-bottom: none; }
.dash-row-name { width: 35%; height: 5px; background: rgba(255,255,255,0.07); border-radius: 2px; }
.dash-row-bar-wrap { flex: 1; margin: 0 8px; height: 4px; background: rgba(255,255,255,0.04); border-radius: 2px; }
.dash-row-bar { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.dash-row-val { width: 24px; height: 5px; background: rgba(255,255,255,0.07); border-radius: 2px; }

/* Floating stat cards on dashboard */
.dash-stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10,6,20,0.94);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: saasFloat 4s ease-in-out infinite;
  z-index: 5;
}
.dash-stat-badge i { color: var(--accent-light); font-size: 16px; }
.dsb-1 { top: 40px; right: -20px; animation-delay: 0s; }
.dsb-2 { bottom: 60px; left: -24px; animation-delay: 1.6s; }

@keyframes saasFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  padding: 60px 0 0;
  position: relative;
  z-index: 2;
}
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover::after { opacity: 1; }
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:nth-child(2) { transition-delay: 0.08s; }
.stat-card:nth-child(3) { transition-delay: 0.16s; }
.stat-card:nth-child(4) { transition-delay: 0.24s; }
.stat-card i { font-size: 22px; color: var(--accent-light); margin-bottom: 8px; display: block; }
.stat-card strong {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 2px;
}
.stat-card span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── GENERIC SECTION ─────────────────────────────────────────── */
.sec { padding: 90px 0; position: relative; }

.sec-alt {
  background:
    radial-gradient(700px 350px at 50% 0%, rgba(124,58,237,0.05), transparent),
    var(--bg-soft);
}

.sec-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.sec-head.visible { opacity: 1; transform: translateY(0); }

.kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-light);
  margin-bottom: 12px;
  display: block;
}

.sec-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-head p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── SERVICES — 2-col alternating layout ────────────────────── */
.saas-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.saas-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.saas-feat-row.visible { opacity: 1; transform: translateY(0); }
.saas-feat-row:nth-child(even) .saas-feat-visual { order: -1; }

.saas-feat-text .kicker { text-align: left; }

.saas-feat-text h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.saas-feat-text h3 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.saas-feat-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.saas-feat-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.feat-point-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-point-icon i { font-size: 13px; color: var(--accent-light); }
.feat-point span { line-height: 1.55; padding-top: 4px; }

/* Illustrated panel for each feature */
.saas-feat-visual {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saas-feat-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 300px 200px at 80% 80%, rgba(124,58,237,0.08), transparent);
  pointer-events: none;
}

/* ─ visual type: metric card cluster ─ */
.vis-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.vis-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.vis-metric-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.18);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.vis-metric-icon i { font-size: 15px; color: var(--accent-light); }
.vis-metric-val { width: 60%; height: 10px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 6px; }
.vis-metric-lbl { width: 80%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; }
.vis-metric.featured {
  background: rgba(124,58,237,0.07);
  border-color: rgba(124,58,237,0.2);
  grid-column: span 2;
}

/* ─ visual type: integration grid ─ */
.vis-integrations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.vis-int-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.vis-int-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.15);
}
.vis-int-lbl { width: 40px; height: 5px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.vis-int-tile.lit .vis-int-icon {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(168,85,247,0.15));
  border-color: rgba(168,85,247,0.3);
}

/* ─ visual type: pipeline flow ─ */
.vis-pipeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.vis-pipe-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}
.vis-pipe-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.2);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-light);
  flex-shrink: 0;
}
.vis-pipe-lbl { flex: 1; height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; }
.vis-pipe-badge {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
}
.vis-pipe-step.active {
  border-color: rgba(124,58,237,0.25);
  background: rgba(124,58,237,0.06);
}

/* ─ visual type: security shield ─ */
.vis-security {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.vis-shield {
  width: 80px; height: 90px;
  background: linear-gradient(180deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05));
  border: 1px solid rgba(124,58,237,0.25);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid;
  place-items: center;
}
.vis-shield i { font-size: 28px; color: var(--accent-light); }
.vis-sec-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.vis-sec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  color: var(--muted);
}
.vis-sec-item i { color: #4ade80; font-size: 12px; }

/* ── TECH STACK — Scrolling Tag Cloud ──────────────────────── */
.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s, transform 0.4s, border-color 0.25s, color 0.25s;
}
.tech-tag.visible { opacity: 1; transform: scale(1); }
.tech-tag:hover {
  border-color: var(--border-accent);
  color: var(--text);
}
.tech-tag i { font-size: 15px; color: var(--accent-light); }

/* ── PROCESS — Horizontal Cards with connectors ─────────────── */
.saas-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.saas-process::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.2;
}
.saas-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.saas-step.visible { opacity: 1; transform: translateY(0); }
.saas-step:nth-child(1) { transition-delay: 0s; }
.saas-step:nth-child(2) { transition-delay: 0.1s; }
.saas-step:nth-child(3) { transition-delay: 0.2s; }
.saas-step:nth-child(4) { transition-delay: 0.3s; }
.saas-step:nth-child(5) { transition-delay: 0.4s; }

.step-circle {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.07);
  margin-bottom: 16px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-light);
  transition: border-color 0.3s, background 0.3s;
}
.saas-step:hover .step-circle {
  border-color: rgba(124,58,237,0.6);
  background: rgba(124,58,237,0.14);
}
.step-icon-wrap { font-size: 20px; }

.saas-step h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.saas-step p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s, box-shadow 0.3s;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }
.pricing-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 60px rgba(124,58,237,0.1);
  background: linear-gradient(180deg, rgba(124,58,237,0.06), var(--card));
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-price {
  font-family: "Sora", sans-serif;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 14px; font-weight: 500; -webkit-text-fill-color: var(--muted); }
.pricing-divider { width: 100%; height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li i { color: var(--accent-light); font-size: 14px; }
.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(124,58,237,0.25);
  background: rgba(124,58,237,0.07);
  color: var(--accent-light);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pricing-btn:hover {
  background: rgba(124,58,237,0.14);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124,58,237,0.2);
}
.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}
.pricing-card.featured .pricing-btn:hover {
  box-shadow: 0 8px 28px rgba(124,58,237,0.4);
}

/* ── FAQ — Split ──────────────────────────────────────────────── */
.faq-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-intro {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s;
}
.faq-intro.visible { opacity: 1; transform: translateX(0); }
.faq-intro h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.faq-intro h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-intro p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
  transition: gap 0.2s;
}
.faq-cta-link:hover { gap: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s;
}
.faq-item.visible { opacity: 1; transform: translateX(0); }
.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-item:nth-child(5) { transition-delay: 0.24s; }
.faq-item[open] { border-color: var(--border-accent); }
.faq-item summary {
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  -webkit-user-select: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent-light); }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--accent-light);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent-light); }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  padding: 0 0 80px;
  position: relative;
}
.cta-content {
  position: relative;
  background: linear-gradient(130deg, rgba(124,58,237,0.16), rgba(168,85,247,0.06));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-content h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.cta-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dash-layout { grid-template-columns: 140px 1fr; }
  .saas-process { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .saas-process::after { display: none; }
}

@media (max-width: 1024px) {
  .saas-hero { padding: 140px 0 0; }
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
  .saas-feat-row { grid-template-columns: 1fr; gap: 32px; }
  .saas-feat-row:nth-child(even) .saas-feat-visual { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .faq-split { grid-template-columns: 1fr; gap: 36px; }
  .dash-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .dash-chart-area { grid-template-columns: 1fr; }
  .dash-donut-wrap { display: none; }
}

@media (max-width: 768px) {
  .hero-center h1 { font-size: clamp(28px, 6vw, 44px); }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .saas-process { grid-template-columns: repeat(2, 1fr); }
  .vis-sec-items { grid-template-columns: 1fr; }
  .tech-cloud { gap: 8px; }
  .cta-content { padding: 44px 24px; }
  .dash-stat-badge { display: none; }
}

@media (max-width: 540px) {
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .saas-process { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .faq-split { gap: 24px; }
  .vis-integrations { grid-template-columns: repeat(2, 1fr); }
}
