/* ===== UNIQUE LANDING PAGE DESIGN ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #8b5cf6;
  --primary-lighter: #a78bfa;
  --primary-subtle: rgba(124, 58, 237, 0.08);
  --primary-subtle-hover: rgba(124, 58, 237, 0.14);
  --primary-glow: rgba(124, 58, 237, 0.25);
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --bg: #0f0b1a;
  --bg-alt: #1a1530;
  --surface: #1e1940;
  --surface-hover: #26214d;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.14);
  --text: #f8fafc;
  --text-secondary: #c4b5e3;
  --text-muted: #8b7ab5;
  --success: #22c55e;
  --success-bg: rgba(34,197,94,0.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245,158,11,0.1);
  --danger: #ef4444;
  --danger-bg: rgba(239,68,68,0.1);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.2);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -4px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.4), 0 8px 10px -6px rgba(0,0,0,0.2);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px var(--primary-glow);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(124,58,237,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(124,58,237,0.05) 0%, transparent 50%);
  min-height: 100vh;
}

a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-lighter); text-decoration: underline; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

h3 { font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--text); }
h4 { font-size: 16px; font-weight: 600; color: var(--text); }
p { color: var(--text-secondary); line-height: 1.7; }
::selection { background: var(--primary-subtle); color: var(--text); }

.wrap { width: min(1160px, 92%); margin: auto; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 24px;
  background: transparent;
  border-bottom: none;
  transition: box-shadow 0.3s ease;
}

.navin {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 0 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.8; text-decoration: none; }

.logo-img {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-xs);
  object-fit: contain;
  filter: brightness(1.2);
}

.logo-img-large {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  object-fit: contain;
}

.links {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.links a:not(.btn) {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition);
}
.links a:not(.btn):hover { background: var(--primary-subtle); color: var(--text); text-decoration: none; }

/* ── Nav light overrides ── */
.nav .logo { color: #111827; }
.nav .links a:not(.btn) { color: #6b7280; }
.nav .links a:not(.btn):hover { background: rgba(79,70,229,0.08); color: #111827; }
.nav .btn { background: linear-gradient(135deg, #4F46E5, #4338CA); box-shadow: 0 2px 8px rgba(79,70,229,0.25); }
.nav .btn:hover { box-shadow: 0 4px 16px rgba(79,70,229,0.35); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn.secondary:hover { background: rgba(255,255,255,0.04); border-color: var(--border-hover); box-shadow: var(--shadow); }

/* ── Hero ── */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 20px; }

.grad {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
}
.lead strong { color: var(--text); }

.actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

.badges { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.badge svg { color: var(--success); }

/* ── Machine Visual ── */
.scene { position: relative; }
.machine {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.machine:hover { box-shadow: var(--shadow-xl), 0 0 60px rgba(124,58,237,0.08); }
.machine .preview-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 8px;
}
.machine .preview-content { padding: 24px; min-height: 380px; display: flex; align-items: center; justify-content: center; position: relative; }
.machine .stepsbar { padding: 0 20px 20px; display: flex; gap: 6px; }

.mini {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.mini::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: transform 0.6s ease;
}
.mini.active::after { left: 0; }

.preview-header span[class^="dot-"] {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: var(--danger); }
.dot-yellow { background: var(--warning); }
.dot-green { background: var(--success); }

.preview-title { margin-left: 8px; font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.hidden { display: none !important; }

/* ── PDF Mock ── */
.mock-pdf {
  width: 100%;
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  border: 1px solid var(--border);
  color: var(--text);
}
.pdf-header { font-weight: 700; font-size: 16px; border-bottom: 2px solid rgba(255,255,255,0.1); padding-bottom: 8px; margin-bottom: 12px; color: var(--text); }
.pdf-meta { font-size: 10px; margin-bottom: 16px; color: var(--text-muted); }
.pdf-table { width: 100%; }
.pdf-row { display: flex; justify-content: space-between; font-size: 11px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-secondary); }
.pdf-row.head { font-weight: 700; border-bottom: 2px solid rgba(255,255,255,0.08); color: var(--text); }
.scan-line { display: none; }

/* ── Mock Data ── */
.mock-data { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden; background: var(--surface); }
.extraction-layer { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; }
.pdf-ghost { display: none; }
.csv-overlay { position: relative; z-index: 2; width: 100%; }
.extraction-header { padding: 10px 14px; background: var(--bg-alt); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.extraction-header span { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.csv-badge { background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.extract-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.extract-table th { background: var(--bg-alt); text-align: left; padding: 8px 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; font-size: 10px; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
.extract-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.type-pay { color: var(--danger); font-weight: 600; }
.type-rec { color: var(--success); font-weight: 600; }
.extraction-footer { padding: 10px 14px; background: var(--bg-alt); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--text-muted); }
.mini-btn { background: var(--primary); color: #fff; border: 0; padding: 4px 12px; border-radius: 4px; font-size: 10px; font-weight: 600; cursor: pointer; }

/* ── XML Mock ── */
.mock-xml pre { margin: 0; font-size: 11px; text-align: left; background: var(--bg-alt); padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); overflow-x: auto; color: var(--text-secondary); }

/* ── Tally Mock ── */
.mock-tally { position: relative; width: 100%; }
.mock-tally img { width: 100%; height: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.success-overlay { position: absolute; inset: 0; background: rgba(15,11,26,0.85); display: flex; align-items: center; justify-content: center; }
.success-pop { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; box-shadow: var(--shadow-glow); }

/* ── Hero scoped overrides (light theme) ── */
.hero {
  background: #F8FAFC;
  padding-top: 120px;
  padding-bottom: 140px;
}
.hero::before {
  width: 700px; height: 700px;
  top: -250px; right: -150px;
  background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 60%);
}
.hero::after {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 50%);
}
.hero .grid {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: start;
  gap: 48px;
}
.hero-content { padding-top: 16px; }
.hero .pill {
  background: rgba(79,70,229,0.1);
  border-color: rgba(79,70,229,0.2);
  color: #4F46E5;
}
.hero h1 { color: #111827; }
.hero .grad {
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  color: #6b7280;
  max-width: 480px;
}
.hero .lead strong { color: #111827; }
.hero .actions { margin-bottom: 40px; }
.hero .btn {
  background: linear-gradient(135deg, #4F46E5, #4338CA);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}
.hero .btn:hover {
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
  transform: translateY(-2px);
}
.hero .btn.secondary {
  background: transparent;
  border-color: #E5E7EB;
  color: #111827;
  backdrop-filter: none;
}
.hero .btn.secondary:hover {
  background: rgba(0,0,0,0.02);
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero .badge { color: #6b7280; }
.hero .badge svg { color: #10b981; }

/* Machine / Scene */
.hero .machine {
  background: #FFFFFF;
  border-color: #E5E7EB;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.hero .machine:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 40px rgba(79,70,229,0.06);
}
.hero .machine .preview-header {
  background: #F1F5F9;
  border-color: #E5E7EB;
}
.hero .preview-title {
  color: #94a3b8;
}
.hero .mini { background: rgba(0,0,0,0.06); }
.hero .mini::after {
  background: linear-gradient(90deg, #4F46E5, #06B6D4);
}

/* Mock elements */
.hero .mock-pdf {
  background: rgba(0,0,0,0.02);
  border-color: #E5E7EB;
  color: #111827;
}
.hero .pdf-header {
  color: #111827;
  border-bottom-color: rgba(0,0,0,0.08);
}
.hero .pdf-meta { color: #94a3b8; }
.hero .pdf-row { color: #6b7280; border-bottom-color: rgba(0,0,0,0.04); }
.hero .pdf-row.head { color: #111827; border-bottom-color: rgba(0,0,0,0.08); }

.hero .mock-data {
  background: #FFFFFF;
  border-color: #E5E7EB;
}
.hero .extraction-header {
  background: #F8FAFC;
  border-color: #E5E7EB;
}
.hero .extraction-header span { color: #94a3b8; }
.hero .csv-badge { background: #4F46E5; }
.hero .extract-table th {
  background: #F8FAFC;
  color: #94a3b8;
  border-color: #E5E7EB;
}
.hero .extract-table td {
  border-color: #E5E7EB;
  color: #6b7280;
}
.hero .extraction-footer {
  background: #F8FAFC;
  border-color: #E5E7EB;
  color: #94a3b8;
}

.hero .mock-xml pre {
  background: #F8FAFC;
  border-color: #E5E7EB;
  color: #6b7280;
}

.hero .mock-tally img { border-color: #E5E7EB; }
.hero .success-overlay { background: rgba(255,255,255,0.85); }
.hero .success-pop {
  background: linear-gradient(135deg, #4F46E5, #4338CA);
}

/* ── Floating dashboard cards ── */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(79,70,229,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(6,182,212,0.05) 0%, transparent 50%);
}

.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  padding: 16px;
  animation: heroFloat 6s ease-in-out infinite;
}

.fc-1 {
  top: 8%;
  right: 2%;
  width: 140px;
  gap: 10px;
  animation-delay: 0s;
}
.fc-1 .fc-head {
  display: flex;
  gap: 4px;
}
.fc-1 .fc-d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E5E7EB;
}
.fc-1 .fc-d:nth-child(2) { background: #4F46E5; }
.fc-1 .fc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc-1 .fc-bar {
  height: 6px;
  border-radius: 3px;
  background: #E5E7EB;
  width: 100%;
}
.fc-1 .fc-s { width: 65%; }

.fc-2 {
  bottom: 15%;
  left: 2%;
  width: 130px;
  gap: 8px;
  animation: heroFloat2 5s ease-in-out infinite;
  animation-delay: 1s;
}
.fc-2 .fc-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-2 .fc-l { font-size: 10px; color: #94a3b8; font-weight: 500; }
.fc-2 .fc-v { font-size: 12px; font-weight: 700; color: #111827; }
.fc-2 .fc-g { color: #10b981; }
.fc-2 .fc-div { height: 1px; background: #E5E7EB; }

.fc-3 {
  bottom: 25%;
  right: 8%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px;
  color: #4F46E5;
  animation: heroFloat 7s ease-in-out infinite;
  animation-delay: 2s;
}
.fc-3 svg { width: 22px; height: 22px; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Sections ── */
.section { padding: 96px 0; border-top: 1px solid var(--border); }
.center { text-align: center; }

.muted {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Cards Grid ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { border-color: rgba(124,58,237,0.2); box-shadow: var(--shadow-glow); transform: translateY(-2px); }

.card-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ── Features Bento Grid ── */
#features { position: relative; }

.features-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sf-1 {
  width: 350px; height: 350px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 60%);
}
.sf-2 {
  width: 250px; height: 250px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 60%);
}

#features .bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 20px;
  margin-top: 48px;
  text-align: left;
  position: relative;
  z-index: 1;
}

#features .card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

#features .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

#features .card:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2), 0 0 40px rgba(124,58,237,0.08);
  transform: translateY(-4px);
}

#features .card:hover::before {
  opacity: 1;
}

#features .bento-featured {
  grid-row: span 2;
  padding: 36px 34px;
}

#features .bento-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
}

#features .bento-wide .bento-wide-text {
  flex: 1;
}

#features .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

#features .card:hover .card-icon {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.3);
  transform: scale(1.05);
}

#features .bento-featured .card-icon {
  width: 56px;
  height: 56px;
  font-size: 26px;
  border-radius: 16px;
}

#features .bento-wide .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

#features .card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

#features .bento-featured h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

#features .card p {
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

#features .bento-featured p {
  font-size: 14px;
}

/* ── Bank Grid ── */
.bank-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.bank-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 20px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: all var(--transition);
  color: var(--text);
  text-decoration: none;
}
.bank-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); transform: translateY(-2px); text-decoration: none; }
.bank-icon {
  width: 48px; height: 48px;
  background: var(--primary-subtle);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--primary-light);
}
.bank-card span { font-weight: 600; font-size: 14px; }
.bank-card .small { font-size: 12px; color: var(--text-muted); margin: 0; text-align: center; }

/* ── Security Section ── */
.security-visual { width: 100%; display: flex; align-items: center; justify-content: center; }
.shield-icon svg { width: 120px; height: 120px; color: var(--primary-light); filter: drop-shadow(0 0 20px var(--primary-glow)); }

/* ── Compatibility ── */
.compatibility-section { background: var(--bg-alt); }
.comp-content h2 { margin-bottom: 16px; }
.comp-content p { font-size: 15px; margin-bottom: 24px; }
.comp-features { display: grid; gap: 12px; }
.comp-item {
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  box-shadow: var(--shadow-xs);
}
.comp-item strong { color: var(--text); }
.code-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; overflow-x: auto; }
.code-block pre { margin: 0; font-size: 13px; color: var(--text-secondary); }

/* ── Testimonials ── */
.testimonials-grid { gap: 24px; }
.testimonial { display: flex; flex-direction: column; justify-content: space-between; padding: 28px; }
.testimonial p { font-style: italic; font-size: 15px; line-height: 1.7; margin-bottom: 20px; color: var(--text-secondary); }
.user-info { border-top: 1px solid var(--border); padding-top: 16px; }
.user-role { font-size: 13px; color: var(--primary-light); font-weight: 600; }

/* ── Stats Section ── */
.stats-section { background: var(--bg-alt); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-size: 42px; font-weight: 800; color: var(--primary-light); margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ── Workflow ── */
.workflow-container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; margin-top: 48px; text-align: left; }
.workflow-steps { display: flex; flex-direction: column; gap: 12px; }
.step-item {
  display: flex; gap: 20px; padding: 20px;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: all var(--transition); cursor: pointer;
}
.step-item.active { background: var(--surface); border-color: var(--border); box-shadow: var(--shadow); }
.step-item .num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  transition: all var(--transition);
}
.step-item.active .num { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: var(--shadow-glow); }
.step-item h3 { font-size: 16px; margin-bottom: 6px; }
.step-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Workflow Preview ── */
.preview-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-md); }
.preview-header { padding: 14px 20px; background: var(--bg-alt); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.preview-content { padding: 24px; min-height: 340px; display: flex; align-items: center; justify-content: center; position: relative; }

/* ── Guide Section ── */
.guide-section { background: var(--bg-alt); }
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content h2 { margin-bottom: 24px; }
.guide-text h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.guide-text p { margin-bottom: 16px; }
.guide-text ul, .guide-text ol { padding-left: 24px; margin-bottom: 16px; }
.guide-text li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.7; }
.guide-text li strong { color: var(--text); }

/* ── FAQ ── */
.faq-grid { display: grid; gap: 16px; max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { background: var(--surface); border: 1px solid var(--border); padding: 24px 28px; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item:hover { border-color: rgba(124,58,237,0.2); box-shadow: var(--shadow-glow); }
.faq-item h4 { margin-bottom: 8px; }
.faq-item p { margin: 0; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Social Floats ── */
.social-floats { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 8px; z-index: 1000; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 10px;
  border-radius: var(--radius-full);
  color: #fff; font-weight: 600; font-size: 13px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.float-btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.telegram { background: #2aabee; }
.icon-circle { width: 28px; height: 28px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-circle svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .social-floats { bottom: 16px; right: 16px; }
  .float-btn span:last-child { display: none; }
  .float-btn { padding: 10px; border-radius: 50%; }
}

/* ── Footer ── */
footer { padding: 64px 0 32px; border-top: 1px solid var(--border); background: var(--bg-alt); }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.foot-logo { margin-bottom: 20px; }
.foot-desc { color: var(--text-muted); font-size: 14px; max-width: 300px; line-height: 1.7; }
.foot-col h5 { color: var(--text); font-size: 13px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: var(--text-muted); font-size: 14px; }
.foot-links a:hover { color: var(--primary-light); }
.bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 13px; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION-SCOPED ENHANCEMENTS
   ============================================================ */

/* ── 1. STATS SECTION ENHANCEMENTS ── */
.stats-section { position: relative; overflow: hidden; }
.stats-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.stats-section .stats-grid { position: relative; z-index: 1; }
.stats-section .stat-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 24px 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stats-section .stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.stats-section .stat-item:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.stats-section .stat-item:hover::before { opacity: 1; }
.stats-section .stat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  color: var(--primary-lighter);
  filter: drop-shadow(0 0 8px var(--primary-glow));
}
.stats-section .stat-num {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 46px;
}
.stats-section .stat-label {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}
.stats-section .stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

/* ── 2. WORKFLOW SECTION ENHANCEMENTS ── */
.workflow-section { position: relative; overflow: hidden; }
.workflow-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.workflow-section .workflow-container { position: relative; z-index: 1; }

.workflow-section .workflow-steps { position: relative; padding-left: 20px; }
.workflow-section .workflow-steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 12px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(180deg, var(--primary), rgba(124,58,237,0.15));
  border-radius: 1px;
}

.workflow-section .step-item {
  position: relative;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 20px 20px 20px 28px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}
.workflow-section .step-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(124,58,237,0.15);
}
.workflow-section .step-item.active {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 8px 32px rgba(124,58,237,0.1);
}
.workflow-section .step-item .num {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}
.workflow-section .step-item.active .num {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: scale(1.1);
}
.workflow-section .step-item .step-content { flex: 1; }
.workflow-section .step-item h3 { font-size: 16px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.workflow-section .step-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.workflow-section .step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-subtle);
  color: var(--primary-light);
  margin-left: 8px;
}
.workflow-section .step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
}

.workflow-section .preview-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}
.workflow-section .preview-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.2), 0 0 40px rgba(124,58,237,0.06);
  transform: translateY(-2px);
}
.workflow-section .preview-card .preview-header {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px;
}
.workflow-section .preview-card .preview-content {
  padding: 28px 24px;
  min-height: 360px;
}

/* ── 3. BANKS SECTION ENHANCEMENTS ── */
#banks { position: relative; }
#banks .section-shape {
  position: absolute;
  width: 300px; height: 300px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}
#banks .bank-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
#banks .bank-grid .bank-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px 16px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  color: var(--text); text-decoration: none;
}
#banks .bank-grid .bank-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
#banks .bank-grid .bank-card:hover {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 8px 32px rgba(124,58,237,0.12);
  transform: translateY(-4px);
  text-decoration: none;
}
#banks .bank-grid .bank-card:hover::before { opacity: 1; }
#banks .bank-grid .bank-card.bento-tall {
  grid-row: span 2;
  justify-content: center;
}
#banks .bank-grid .bank-card.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 22px;
}
#banks .bank-grid .bank-card.bento-wide .bank-icon { margin-bottom: 0; }
#banks .bank-grid .bank-card.bento-wide .bank-info { text-align: left; }

#banks .bank-icon {
  width: 52px; height: 52px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--primary-light);
  transition: all 0.35s ease;
  flex-shrink: 0;
}
#banks .bank-card:hover .bank-icon {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.3);
  transform: scale(1.08);
}
#banks .bank-card span { font-weight: 600; font-size: 14px; }
#banks .bank-card .small { font-size: 12px; color: var(--text-muted); margin: 0; text-align: center; line-height: 1.4; }
#banks .bank-card .bank-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-subtle);
  color: var(--primary-light);
}

/* ── 4. COMPATIBILITY SECTION ENHANCEMENTS ── */
.compatibility-section { position: relative; overflow: hidden; }
.compatibility-section::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.compatibility-section .comp-content { position: relative; z-index: 1; }

.compatibility-section .comp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.compatibility-section .comp-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.compatibility-section .comp-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), transparent, rgba(6,182,212,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.compatibility-section .comp-item:hover::before { opacity: 1; }
.compatibility-section .comp-item:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.compatibility-section .comp-item strong { color: var(--text); }
.compatibility-section .comp-item .comp-icon {
  display: inline-block;
  font-size: 18px;
  margin-right: 8px;
  color: var(--primary-light);
}

.compatibility-section .code-block {
  background: #0d0b18;
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.compatibility-section .code-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.compatibility-section .code-block::after {
  content: '● ● ●';
  position: absolute;
  top: 4px; left: 14px;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.15);
}
.compatibility-section .code-block pre {
  margin: 28px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace;
  line-height: 1.8;
}
.compatibility-section .code-block .code-keyword { color: var(--primary-light); }
.compatibility-section .code-block .code-string { color: var(--success); }
.compatibility-section .code-block .code-comment { color: rgba(255,255,255,0.25); font-style: italic; }

/* ── 5. SECURITY SECTION ENHANCEMENTS ── */
.security-section { position: relative; overflow: hidden; }
.security-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.security-section .security-visual { position: relative; z-index: 1; }
.security-section .shield-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.security-section .shield-icon::before {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 60%);
  animation: secPulse 3s ease-in-out infinite;
}
.security-section .shield-icon svg {
  width: 110px; height: 110px;
  color: var(--primary-lighter);
  filter: drop-shadow(0 0 30px var(--primary-glow));
  animation: secGlow 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes secPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
@keyframes secGlow {
  0%, 100% { filter: drop-shadow(0 0 20px var(--primary-glow)); }
  50% { filter: drop-shadow(0 0 50px var(--primary-glow)); }
}
.security-section .security-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.security-section .security-feature {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  transition: all 0.35s ease;
}
.security-section .security-feature:hover {
  border-color: rgba(124,58,237,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.security-section .security-feature .sec-icon {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
  color: var(--success);
}
.security-section .security-feature h4 { margin-bottom: 6px; font-size: 15px; }
.security-section .security-feature p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.security-section .security-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.security-section .security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
}
.security-section .security-badge svg { width: 16px; height: 16px; }

/* ── 6. TESTIMONIALS SECTION ENHANCEMENTS ── */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.testimonials-section .testimonial {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  position: relative;
}
.testimonials-section .testimonial:hover {
  border-color: rgba(124,58,237,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 30px rgba(124,58,237,0.06);
}
.testimonials-section .testimonial.featured {
  grid-column: 1 / -1;
  padding: 36px 36px 28px;
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.15);
}
.testimonials-section .testimonial .quote-icon {
  font-size: 28px;
  color: rgba(124,58,237,0.3);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.testimonials-section .testimonial p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
  flex: 1;
}
.testimonials-section .testimonial .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testimonials-section .testimonial .stars svg,
.testimonials-section .testimonial .stars span {
  width: 18px; height: 18px;
  color: var(--accent);
  fill: var(--accent);
}
.testimonials-section .testimonial .stars .star-empty { color: rgba(255,255,255,0.1); fill: none; }
.testimonials-section .user-info {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonials-section .user-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.testimonials-section .user-info-inner { flex: 1; }
.testimonials-section .user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonials-section .user-role {
  font-size: 12px;
  color: var(--primary-light);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* ── 7. GUIDE SECTION ENHANCEMENTS ── */
.guide-section { position: relative; overflow: hidden; }
.guide-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.guide-section .guide-content { position: relative; z-index: 1; max-width: 860px; }
.guide-section .guide-text h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-section .guide-text h3 .guide-heading-icon {
  width: 32px; height: 32px;
  background: var(--primary-subtle);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-light);
  flex-shrink: 0;
}
.guide-section .guide-text p { margin-bottom: 16px; font-size: 15px; }
.guide-section .guide-text ul, .guide-section .guide-text ol { padding-left: 24px; margin-bottom: 16px; }
.guide-section .guide-text li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.7; }
.guide-section .guide-text li strong { color: var(--text); }

.guide-section .guide-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 36px;
  margin: 32px 0;
  transition: all 0.35s ease;
}
.guide-section .guide-card:hover {
  border-color: rgba(124,58,237,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.guide-section .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.guide-section .comparison-table thead th {
  background: rgba(124,58,237,0.1);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.guide-section .comparison-table tbody td {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.guide-section .comparison-table tbody tr:last-child td { border-bottom: none; }
.guide-section .comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.guide-section .comparison-table tbody tr:hover { background: rgba(124,58,237,0.04); }
.guide-section .comparison-table .check { color: var(--success); font-weight: 700; }
.guide-section .comparison-table .cross { color: var(--danger); }
.guide-section .comparison-table .highlight-col { background: rgba(124,58,237,0.04); }

.guide-section .use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.guide-section .use-case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.35s ease;
}
.guide-section .use-case-card:hover {
  border-color: rgba(124,58,237,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.guide-section .use-case-card .uc-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 14px;
  color: var(--primary-light);
}
.guide-section .use-case-card h4 { font-size: 15px; margin-bottom: 8px; }
.guide-section .use-case-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.guide-section .use-case-card .uc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--primary-subtle);
  color: var(--primary-light);
  margin-top: 12px;
}

/* ── 8. FAQ SECTION ENHANCEMENTS ── */
#faq { position: relative; }
#faq .faq-grid { max-width: 780px; }
#faq .faq-item {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
#faq .faq-item:hover {
  border-color: rgba(124,58,237,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
#faq .faq-item.active {
  border-color: rgba(124,58,237,0.25);
  background: rgba(124,58,237,0.04);
}
#faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
}
#faq .faq-question h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
#faq .faq-question .faq-toggle {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  font-size: 18px;
}
#faq .faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--primary-light); }
#faq .faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}
#faq .faq-item.active .faq-answer { display: block; }
#faq .faq-item.active .faq-question h4 { color: var(--primary-light); }

#faq .faq-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 32px;
}
#faq .faq-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}
#faq .faq-search input::placeholder { color: var(--text-muted); }
#faq .faq-search input:focus {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
  background: rgba(255,255,255,0.06);
}
#faq .faq-search .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}
#faq .faq-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
#faq .faq-filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
#faq .faq-filter-btn:hover { border-color: rgba(124,58,237,0.25); color: var(--text); }
#faq .faq-filter-btn.active {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.3);
  color: var(--primary-light);
}

/* ── 9. FOOTER ENHANCEMENTS ── */
footer {
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), rgba(245,158,11,0.2), transparent);
  pointer-events: none;
}
footer .foot-grid { position: relative; z-index: 1; }
footer .foot-logo { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
footer .foot-logo .logo-text {
  font-weight: 700; font-size: 20px; color: var(--text);
}
footer .foot-desc { color: var(--text-muted); font-size: 14px; max-width: 300px; line-height: 1.7; }
footer .foot-col h5 {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .foot-col h5 .foot-head-icon {
  font-size: 14px;
  color: var(--primary-light);
}
footer .foot-links { display: flex; flex-direction: column; gap: 10px; }
footer .foot-links a {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
footer .foot-links a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}
footer .foot-links a .link-icon {
  font-size: 12px;
  color: var(--primary-light);
  opacity: 0;
  transition: opacity var(--transition);
}
footer .foot-links a:hover .link-icon { opacity: 1; }

footer .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 360px;
}
footer .newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}
footer .newsletter-form input::placeholder { color: var(--text-muted); }
footer .newsletter-form input:focus {
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.06);
}
footer .newsletter-form .btn { flex-shrink: 0; padding: 10px 18px; font-size: 13px; }

footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
footer .social-link {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 18px;
}
footer .social-link:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
  color: var(--primary-light);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(124,58,237,0.1);
}

footer .bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
footer .bottom a { color: var(--text-muted); }
footer .bottom a:hover { color: var(--primary-light); }
footer .bottom .bottom-links { display: flex; gap: 16px; }

/* ── 10. DECORATIVE ELEMENTS ── */

/* Section transition dividers */
.section-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
  margin-top: -1px;
}
.section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  fill: var(--bg-alt);
}
.section-divider.wave-top svg { top: 0; }
.section-divider.gradient-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.3;
  margin: 0 5%;
}

/* Floating decorative shapes per section */
.section-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section-shape.shape-1 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 60%);
}
.section-shape.shape-2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 50%);
}
.section-shape.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 50%);
}
.shape-top-right { top: -60px; right: -60px; }
.shape-bottom-left { bottom: -60px; left: -60px; }
.shape-top-left { top: -60px; left: -60px; }
.shape-bottom-right { bottom: -60px; right: -60px; }

/* Section-specific gradient backgrounds */
.section-bg-purple { background: linear-gradient(180deg, var(--bg), var(--bg-alt), var(--bg)); }
.section-bg-deep { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }
.section-bg-glow-top { position: relative; }
.section-bg-glow-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(124,58,237,0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Pulse/glow animations for CTAs */
.cta-glow {
  position: relative;
  animation: ctaPulse 2s ease-in-out infinite;
}
.cta-glow::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0.25;
  filter: blur(16px);
  z-index: -1;
  animation: ctaGlowPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.2); }
  50% { box-shadow: 0 0 40px rgba(124,58,237,0.4); }
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

/* Section entrance animations (beyond basic reveal) */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── 11. NEW COMPONENTS ── */

/* Comparison table (standalone) */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
table.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
table.comp-table thead th {
  background: rgba(124,58,237,0.1);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
table.comp-table tbody td {
  padding: 12px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
table.comp-table tbody tr:last-child td { border-bottom: none; }
table.comp-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
table.comp-table tbody tr:hover { background: rgba(124,58,237,0.04); }
table.comp-table .check { color: var(--success); font-weight: 700; }
table.comp-table .cross { color: var(--danger); }
table.comp-table .highlight { background: rgba(124,58,237,0.04); }

/* Use case cards (standalone) */
.use-case-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.use-case-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 26px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.use-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.use-case-card:hover::before { opacity: 1; }
.use-case-card:hover {
  border-color: rgba(124,58,237,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.use-case-card .uc-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 16px;
  color: var(--primary-light);
}
.use-case-card h4 { font-size: 16px; margin-bottom: 8px; }
.use-case-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.7; }
.use-case-card .uc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--primary-subtle);
  color: var(--primary-light);
  margin-top: 14px;
}

/* Industry badges */
.industry-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}
.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}
.industry-badge:hover {
  border-color: rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.04);
  color: var(--text);
  transform: translateY(-1px);
}
.industry-badge .ind-icon { font-size: 18px; color: var(--primary-light); }

/* Trust badge strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: center;
  align-items: center;
  padding: 28px 24px;
  margin: 32px auto;
  max-width: 900px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.trust-item .trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
}
.trust-item .trust-check { color: var(--success); font-weight: 700; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(245,158,11,0.06));
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 28px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}
.cta-banner .actions { justify-content: center; position: relative; z-index: 1; }
.cta-banner .btn { font-size: 16px; padding: 14px 32px; }

/* Timeline connector (standalone) */
.timeline-connector {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-connector .tl-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), rgba(124,58,237,0.1));
}
.timeline-connector .tl-step {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}
.timeline-connector .tl-dot {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-light);
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
}
.timeline-connector .tl-step.active .tl-dot {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
  border-color: transparent;
}
.timeline-connector .tl-content { flex: 1; padding-top: 6px; }
.timeline-connector .tl-content h4 { font-size: 15px; margin-bottom: 4px; }
.timeline-connector .tl-content p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Animated counters */
.animated-counter {
  display: inline-flex;
  align-items: baseline;
}
.animated-counter .counter-prefix,
.animated-counter .counter-suffix {
  font-size: inherit;
  color: inherit;
}
.animated-counter .counter-value {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Testimonial star ratings */
.star-rating {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 8px;
}
.star-rating .star {
  font-size: 16px;
  line-height: 1;
  color: #f59e0b;
}
.star-rating .star::before {
  content: '\2605';
}
.star-rating .star.empty { color: rgba(255,255,255,0.1); }
}

/* ── 12. NEW ANIMATIONS ── */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes gradientBorder {
  0% { border-image-source: linear-gradient(0deg, var(--primary), transparent); }
  25% { border-image-source: linear-gradient(90deg, var(--primary), transparent); }
  50% { border-image-source: linear-gradient(180deg, var(--primary), transparent); }
  75% { border-image-source: linear-gradient(270deg, var(--primary), transparent); }
  100% { border-image-source: linear-gradient(360deg, var(--primary), transparent); }
}

/* Staggered entrance animations */
.stagger-children > * { opacity: 0; transform: translateY(20px); }
.stagger-children.active > * { animation: staggerFadeIn 0.5s ease forwards; }
.stagger-children.active > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children.active > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children.active > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children.active > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children.active > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children.active > *:nth-child(6) { animation-delay: 0.3s; }
.stagger-children.active > *:nth-child(7) { animation-delay: 0.35s; }
.stagger-children.active > *:nth-child(8) { animation-delay: 0.4s; }
.stagger-children.active > *:nth-child(9) { animation-delay: 0.45s; }
.stagger-children.active > *:nth-child(10) { animation-delay: 0.5s; }
@keyframes staggerFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Hover lift effects */
.hover-lift {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15), 0 0 30px rgba(124,58,237,0.06);
}

/* Gradient border animation */
.gradient-border {
  position: relative;
  border: 1px solid transparent !important;
  background-clip: padding-box;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent 40%, var(--accent) 80%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.gradient-border:hover::before {
  background: linear-gradient(135deg, var(--primary-light), transparent 30%, var(--accent-light));
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero .grid { grid-template-columns: 1fr; }
  .hero-content { max-width: 100%; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .actions { justify-content: center; }
  .hero .badges { justify-content: center; }
  .hero .hero-floats { display: none; }
  .lead { margin: 0 auto 32px; }
  .actions { justify-content: center; }
  .badges { justify-content: center; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .workflow-container { grid-template-columns: 1fr; }
  .workflow-preview { order: -1; }
  #features .bento-grid { grid-template-columns: 1fr 1fr; }
  #features .bento-featured { grid-column: 1 / -1; grid-row: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .bank-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .comparison-table-wrap { overflow-x: auto; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .format-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  .hero { padding: 80px 0 100px; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { text-align: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .bottom { flex-direction: column; gap: 16px; text-align: center; }
  .nav { padding: 0 12px; }
  .navin { height: auto; padding: 12px 20px; flex-wrap: wrap; gap: 8px; }
  .links { width: 100%; justify-content: center; gap: 4px; }
  .links a:not(.btn) { padding: 6px 10px; font-size: 13px; }
  .hero .hero-floats { display: none; }
  #features .bento-grid { grid-template-columns: 1fr; }
  #features .bento-wide { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 24px 16px !important; }
  .how-it-works-grid { grid-template-columns: 1fr; gap: 16px; }
  .bank-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .faq-grid { gap: 12px; }
  .trust-strip { flex-direction: column; align-items: center; gap: 12px; }
  .guide-text { padding: 0 4px; }
  .guide-text h3 { font-size: 18px; }
  #workflow .step-item { padding: 16px; }
  .workflow-preview .preview-content { padding: 16px; min-height: 280px; }
  footer { padding: 48px 0 24px; }
  .foot-grid { gap: 32px; }
}
