/* ========================================================================
   PIF Perfect Homepage — Ultra-Modern Dark Theme
   ======================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #09090b;
  color: #e4e4e7;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Ambient Background --- */
.ambient-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.15;
}
.orb-1 {
  width: 600px; height: 600px;
  background: #7c3aed;
  top: -200px; left: -100px;
  animation: float 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: #6366f1;
  top: 40%; right: -150px;
  animation: float 25s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: #a78bfa;
  bottom: -100px; left: 30%;
  animation: float 22s ease-in-out infinite 5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* --- Typography --- */
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 40%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.08);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fafafa;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.125rem;
  color: #a1a1aa;
  max-width: 560px;
  margin: 0 auto;
}
.section-desc strong {
  color: #e4e4e7;
  font-weight: 600;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================================================
   Navigation
   ======================================================================== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.logo-text {
  font-size: 1.2rem; font-weight: 700; color: #fafafa;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex; gap: 2rem;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: #a1a1aa;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #7c3aed;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: #fafafa; }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-ghost {
  font-size: 0.9rem; font-weight: 500; color: #a1a1aa;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fafafa; }
.btn-primary-sm {
  font-size: 0.85rem; font-weight: 600; color: #fff;
  padding: 0.55rem 1.25rem;
  background: #7c3aed;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-primary-sm:hover {
  background: #6d28d9;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: #a1a1aa; border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-link { font-size: 1rem; color: #a1a1aa; font-weight: 500; }
.mobile-cta { text-align: center; margin-top: 0.5rem; }
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 1200px; margin: 0 auto;
  gap: 4rem;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500; color: #a78bfa;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.06);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7c3aed;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fafafa;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.15rem; line-height: 1.7;
  color: #a1a1aa;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-subtitle strong {
  color: #fafafa;
  font-weight: 600;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 600; color: #fff;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.2);
}
.btn-primary svg, .btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 500; color: #a1a1aa;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: #fafafa;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
.hero-proof { display: flex; align-items: center; gap: 1rem; }
.proof-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #fff;
  margin-right: -8px;
  border: 2px solid #09090b;
}
.proof-text { font-size: 0.85rem; color: #71717a; }
.proof-text strong { color: #a1a1aa; }

/* --- Hero Visual (Dashboard Preview) --- */
.hero-visual {
  flex: 1; position: relative;
  display: flex; justify-content: center;
}
.dashboard-preview {
  width: 100%; max-width: 520px;
  border-radius: 16px; overflow: hidden;
  background: rgba(24, 24, 27, 0.7);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(124, 58, 237, 0.08);
  backdrop-filter: blur(10px);
}
.preview-bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span { width: 10px; height: 10px; border-radius: 50%; }
.preview-url { font-size: 0.7rem; color: #52525b; margin-left: auto; }
.preview-content { display: flex; min-height: 320px; }
.preview-sidebar {
  width: 48px; padding: 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.sidebar-item {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.sidebar-item.active { background: rgba(124, 58, 237, 0.3); }
.preview-main { flex: 1; padding: 1rem; }
.preview-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.text-shimmer {
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.06) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.preview-date-pill {
  width: 70px; height: 24px; border-radius: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
.preview-stats { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.stat-card-mini {
  flex: 1; padding: 0.6rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.stat-icon-mini {
  width: 24px; height: 24px; border-radius: 6px;
}
.stat-icon-mini.purple { background: rgba(124, 58, 237, 0.2); }
.stat-icon-mini.blue { background: rgba(99, 102, 241, 0.2); }
.stat-icon-mini.green { background: rgba(16, 185, 129, 0.2); }
.stat-info-mini { display: flex; flex-direction: column; gap: 2px; }
.stat-number-mini { font-size: 1rem; font-weight: 700; color: #fafafa; }
.stat-trend {
  font-size: 0.65rem; font-weight: 600;
  padding: 1px 5px; border-radius: 4px;
  width: fit-content;
}
.stat-trend.up { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.preview-chart { margin-bottom: 1rem; }
.chart-svg { width: 100%; height: auto; }
.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease-out forwards 1s;
}
.chart-area {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards 2s;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.preview-leaderboard { display: flex; flex-direction: column; gap: 6px; }
.lb-row { display: flex; align-items: center; gap: 8px; }
.lb-rank {
  width: 20px; height: 20px; border-radius: 4px;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lb-rank.gold { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }
.lb-rank.silver { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }
.lb-rank.bronze { background: rgba(217, 119, 6, 0.15); color: #d97706; }
.lb-bar {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.4), rgba(124, 58, 237, 0.15));
}

/* --- Floating Cards --- */
.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(24, 24, 27, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 2;
}
.card-ai {
  bottom: 20%; left: -40px;
  animation: float-card 6s ease-in-out infinite;
}
.card-submit {
  top: 15%; right: -30px;
  animation: float-card 7s ease-in-out infinite 2s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon { font-size: 1.4rem; }
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-size: 0.75rem; color: #fafafa; }
.fc-text span { font-size: 0.7rem; color: #71717a; }

@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 7rem; min-height: auto; }
  .hero-content { max-width: 100%; align-items: center; display: flex; flex-direction: column; }
  .hero-subtitle { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { max-width: 560px; width: 100%; }
  .floating-card { display: none; }
}

/* ========================================================================
   Stats Bar
   ======================================================================== */
.stats-bar {
  position: relative; z-index: 1;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(24, 24, 27, 0.3);
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
  font-size: 2.5rem; font-weight: 800; color: #fafafa;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem; color: #71717a; margin-top: 0.4rem;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 640px) {
  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-item .stat-number { font-size: 2rem; }
}

/* ========================================================================
   Section Divider
   ======================================================================== */
.section-divider {
  position: relative; z-index: 1;
  padding: 2rem 1.5rem;
}
.divider-inner {
  max-width: 600px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}
.divider-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: #7c3aed;
  flex-shrink: 0;
}

/* ========================================================================
   The Problem
   ======================================================================== */
.the-problem {
  position: relative; z-index: 1;
  padding: 7rem 0 5rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.problem-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  transition: all 0.3s;
}
.problem-item:hover {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.06);
  transform: translateY(-2px);
}
.problem-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.problem-item p {
  font-size: 0.9rem; color: #a1a1aa;
  margin: 0;
}
.problem-item p strong { color: #ef4444; }
.problem-kicker {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
}
.problem-kicker p {
  font-size: 1.1rem; color: #d4d4d8;
  line-height: 1.7;
  margin: 0;
}
.problem-kicker em { color: #ef4444; font-style: normal; }
.problem-kicker strong { color: #fafafa; }
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   Features
   ======================================================================== */
.features {
  position: relative; z-index: 1;
  padding: 7rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.feature-card.featured {
  border-color: rgba(124, 58, 237, 0.2);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(24, 24, 27, 0.4));
}
.feature-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.65rem; font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
  margin-bottom: 1.25rem;
}
.feature-title {
  font-size: 1.15rem; font-weight: 700; color: #fafafa;
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.9rem; color: #71717a; line-height: 1.65;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   Old Way vs New Way Comparison
   ======================================================================== */
.comparison {
  position: relative; z-index: 1;
  padding: 7rem 0;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.comparison-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s;
}
.comparison-card.old {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.comparison-card.old:hover {
  border-color: rgba(239, 68, 68, 0.2);
}
.comparison-card.new {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), rgba(24, 24, 27, 0.4));
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08);
}
.comparison-card.new:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.12);
}
.comparison-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.old-label {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.new-label {
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.comparison-list {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.comparison-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.comparison-item:last-child { border-bottom: none; }
.comparison-item.negative { color: #a1a1aa; }
.comparison-item.positive { color: #e4e4e7; }
.comparison-bullet {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.comparison-bullet.negative { background: rgba(239, 68, 68, 0.4); }
.comparison-bullet.positive {
  background: #7c3aed;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}
@media (max-width: 700px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   How It Works
   ======================================================================== */
.how-it-works {
  position: relative; z-index: 1;
  padding: 7rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.3);
  border: 1px solid rgba(255,255,255,0.05);
}
.step-number {
  font-size: 3rem; font-weight: 900;
  color: rgba(124, 58, 237, 0.15);
  line-height: 1; margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.step-visual { margin-bottom: 1.5rem; }
.step-mockup {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(9, 9, 11, 0.6);
  border: 1px solid rgba(255,255,255,0.04);
}
.mockup-input-group { margin-bottom: 0.6rem; }
.mockup-label {
  font-size: 0.65rem; color: #71717a;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.mockup-input {
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem; font-weight: 600; color: #fafafa;
}
.mockup-btn {
  margin-top: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  text-align: center;
  font-size: 0.75rem; font-weight: 600; color: #fff;
}
.dashboard-mock { display: flex; flex-direction: column; gap: 0.75rem; }
.mini-chart-row { display: flex; justify-content: center; }
.mini-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 60px;
}
.mini-bar {
  width: 16px; border-radius: 3px 3px 0 0;
  background: rgba(124, 58, 237, 0.25);
  transition: background 0.3s;
}
.mini-bar.active { background: #7c3aed; }
.mini-metric-row { display: flex; gap: 0.75rem; }
.mini-metric {
  flex: 1; text-align: center;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.mm-value { display: block; font-size: 1rem; font-weight: 700; color: #fafafa; }
.mm-label { display: block; font-size: 0.6rem; color: #71717a; text-transform: uppercase; letter-spacing: 0.05em; }
.ai-mock { padding: 0.75rem; }
.ai-message { display: flex; gap: 0.6rem; }
.ai-avatar {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.15);
  font-size: 0.9rem; flex-shrink: 0;
}
.ai-bubble {
  font-size: 0.75rem; color: #a1a1aa; line-height: 1.6;
}
.ai-bubble strong { color: #fafafa; }
.step-title {
  font-size: 1.1rem; font-weight: 700; color: #fafafa;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.88rem; color: #71717a; line-height: 1.6;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ========================================================================
   Social Proof / Testimonials
   ======================================================================== */
.social-proof {
  position: relative; z-index: 1;
  padding: 7rem 0;
}

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: left;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.testimonial-card.featured {
  border-color: rgba(124, 58, 237, 0.2);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), rgba(24, 24, 27, 0.4));
  grid-row: span 1;
}
.testimonial-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa, #7c3aed);
  border-radius: 20px 20px 0 0;
}

/* Stars */
.testimonial-stars {
  display: flex; gap: 2px;
  margin-bottom: 1rem;
}

/* Quote mark */
.quote-mark {
  font-size: 3.5rem; font-weight: 800;
  color: rgba(124, 58, 237, 0.2);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

/* Quote text */
.testimonial-text {
  font-size: 0.95rem; font-weight: 400; color: #d4d4d8;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.testimonial-text-extra {
  font-size: 0.88rem; color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-text-highlight {
  font-size: 0.95rem; font-weight: 600; color: #e4e4e7;
  line-height: 1.7;
  padding: 0.75rem 1rem;
  border-left: 3px solid #7c3aed;
  background: rgba(124, 58, 237, 0.06);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

/* Author */
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.author-info { text-align: left; }
.author-info strong { display: block; font-size: 0.9rem; color: #fafafa; }
.author-info span { font-size: 0.8rem; color: #71717a; }

/* Bottom highlight quote */
.testimonial-highlight {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
}
.testimonial-highlight p {
  font-size: 1.2rem; font-weight: 500; color: #d4d4d8;
  line-height: 1.7; font-style: italic;
  margin-bottom: 0.75rem;
}
.highlight-source {
  font-size: 0.85rem; font-weight: 600; color: #a78bfa;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto 3rem; }
}
@media (max-width: 640px) {
  .testimonial-highlight { padding: 2rem 1.5rem; }
  .testimonial-highlight p { font-size: 1.05rem; }
}

/* ========================================================================
   Pricing
   ======================================================================== */
.pricing {
  position: relative; z-index: 1;
  padding: 7rem 0;
}
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.toggle-label { font-size: 0.9rem; color: #71717a; display: flex; align-items: center; gap: 0.5rem; }
.save-badge {
  font-size: 0.7rem; font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.toggle-switch {
  width: 48px; height: 26px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  position: relative;
  transition: background 0.3s;
}
.toggle-switch.active { background: #7c3aed; }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-switch.active .toggle-thumb { transform: translateX(22px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.4s;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(24, 24, 27, 0.6));
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.1);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  background: #7c3aed;
  color: #fff;
  text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.3rem; font-weight: 700; color: #fafafa;
  margin-bottom: 0.4rem;
}
.plan-desc {
  font-size: 0.85rem; color: #71717a;
  margin-bottom: 1.5rem;
}
.pricing-amount { margin-bottom: 2rem; }
.price {
  font-size: 3rem; font-weight: 800; color: #fafafa;
  letter-spacing: -0.02em;
}
.price-period { font-size: 1rem; color: #71717a; }
.plan-features { margin-bottom: 2rem; }
.plan-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: #a1a1aa;
  padding: 0.4rem 0;
}
.plan-features li strong { color: #fafafa; }
.btn-plan {
  width: 100%; padding: 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  color: #fafafa;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.btn-plan:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.btn-plan-featured {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border: none; color: #fff;
}
.btn-plan-featured:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.btn-plan-contact {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: 1px solid #7c3aed;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.08);
}
.btn-plan-contact:hover {
  background: rgba(124, 58, 237, 0.18);
  border-color: #8b5cf6;
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

/* ========================================================================
   Final CTA
   ======================================================================== */
.final-cta {
  position: relative; z-index: 1;
  padding: 4rem 0 6rem;
}
.cta-card {
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(24, 24, 27, 0.5));
  border: 1px solid rgba(124, 58, 237, 0.15);
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 60%);
}
.cta-eyebrow {
  font-size: 0.9rem; font-weight: 600;
  color: #ef4444;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #fafafa;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  position: relative;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-size: 1.1rem; color: #a1a1aa;
  max-width: 480px; margin: 0 auto 2rem;
  position: relative;
}
.cta-actions { position: relative; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.cta-note { font-size: 0.8rem; color: #52525b; position: relative; }

/* ========================================================================
   Footer
   ======================================================================== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-top {
  display: flex; justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-tagline { font-size: 0.85rem; color: #52525b; margin-top: 0.5rem; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; color: #71717a; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.85rem; color: #52525b; transition: color 0.2s; }
.footer-col a:hover { color: #a1a1aa; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: #3f3f46; margin: 0; }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #52525b;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #a1a1aa; }
.footer-dot { color: #3f3f46; font-size: 0.8rem; }
@media (max-width: 640px) {
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ========================================================================
   About Page
   ======================================================================== */

/* --- Active nav link --- */
.nav-link.active { color: #fafafa; }

/* --- About Hero --- */
.about-hero {
  position: relative; z-index: 1;
  padding: 9rem 0 3rem;
  text-align: center;
}
.about-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fafafa;
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.about-hero-subtitle {
  font-size: 1.1rem; color: #a1a1aa;
  line-height: 1.8;
  max-width: 700px; margin: 0 auto 2.5rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem;
}
.hero-badge-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  font-size: 0.82rem; font-weight: 500;
  color: #a78bfa;
  transition: all 0.3s;
}
.hero-badge-item:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateY(-2px);
}
.hero-badge-item svg { flex-shrink: 0; }

/* --- Origin Story --- */
.about-origin {
  position: relative; z-index: 1;
  padding: 3rem 0 4rem;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-story-content .section-tag { margin-bottom: 1.25rem; }
.about-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: #fafafa;
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.about-story-content p {
  font-size: 1rem; color: #a1a1aa;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-story-highlight {
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.story-insight-card,
.story-solution-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.story-insight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
}
.story-solution-card {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), rgba(24, 24, 27, 0.5));
  border-color: rgba(124, 58, 237, 0.2);
}
.story-solution-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}
.insight-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  margin-bottom: 1rem;
}
.insight-icon.purple {
  background: rgba(124, 58, 237, 0.12);
  color: #a78bfa;
}
.story-insight-card h3,
.story-solution-card h3 {
  font-size: 1.1rem; font-weight: 700; color: #fafafa;
  margin-bottom: 0.75rem;
}
.story-insight-card p,
.story-solution-card p {
  font-size: 0.92rem; color: #a1a1aa;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 800px) {
  .about-story-grid { grid-template-columns: 1fr; }
}

/* --- Team Section --- */
.about-team {
  position: relative; z-index: 1;
  padding: 4rem 0 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.team-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
}
.team-card:hover {
  border-color: rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
}
.team-avatar-large {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin-bottom: 1.25rem;
}
.team-name {
  font-size: 1.15rem; font-weight: 700; color: #fafafa;
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem; font-weight: 500;
  color: #a78bfa;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.team-bio {
  font-size: 0.92rem; color: #a1a1aa;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.team-detail {
  font-size: 0.88rem; color: #71717a;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* --- Extended Team --- */
.team-extended {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: rgba(24, 24, 27, 0.3);
  border: 1px solid rgba(255,255,255,0.04);
}
.team-extended-title {
  font-size: 1.1rem; font-weight: 700; color: #fafafa;
  margin-bottom: 1.75rem;
}
.team-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.team-tag {
  display: flex; flex-direction: column;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.team-tag:hover {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.04);
}
.team-tag strong {
  font-size: 0.88rem; color: #e4e4e7;
}
.team-tag span {
  font-size: 0.75rem; color: #71717a;
}
.team-extended-note {
  font-size: 0.95rem; color: #71717a;
  margin: 0; font-style: italic;
}

/* --- Clients Section --- */
.about-clients {
  position: relative; z-index: 1;
  padding: 4rem 0;
}
/* --- Client Name Wall --- */
.trusted-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.trusted-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.02em;
}
.trusted-separator {
  font-size: 2rem;
  color: rgba(124, 58, 237, 0.4);
  font-weight: 300;
}
.trusted-more {
  font-size: 1.05rem;
  color: #71717a;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
}
@media (max-width: 500px) {
  .trusted-name { font-size: 1.5rem; }
  .trusted-separator { font-size: 1.25rem; }
}

/* --- Clients Proof Stats --- */
.clients-proof {
  display: flex; justify-content: center; align-items: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
  margin-top: 2.5rem;
}
.proof-stat { text-align: center; }
.proof-number {
  display: block;
  font-size: 2rem; font-weight: 800; color: #fafafa;
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.82rem; color: #71717a;
  margin-top: 0.25rem;
}
.proof-divider {
  width: 1px; height: 40px;
  background: rgba(124, 58, 237, 0.15);
}
@media (max-width: 640px) {
  .clients-proof { flex-direction: column; gap: 1.5rem; }
  .proof-divider { width: 40px; height: 1px; }
}

/* --- About Testimonials --- */
.about-testimonials {
  position: relative; z-index: 1;
  padding: 4rem 0;
}
.about-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-quote-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column;
  transition: all 0.4s;
}
.about-quote-card:hover {
  border-color: rgba(124, 58, 237, 0.15);
  transform: translateY(-3px);
}
.about-quote-card.featured {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), rgba(24, 24, 27, 0.4));
  border-color: rgba(124, 58, 237, 0.15);
}
.about-quote-card .quote-mark {
  font-size: 3rem; font-weight: 800;
  color: rgba(124, 58, 237, 0.2);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}
.about-quote-text {
  font-size: 0.95rem; color: #d4d4d8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
.about-quote-card.featured .about-quote-text {
  font-size: 1.05rem;
}
.about-quote-author {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.about-quote-author strong {
  display: block;
  font-size: 0.88rem; color: #fafafa;
}
.about-quote-author span {
  font-size: 0.78rem; color: #71717a;
}
@media (max-width: 900px) {
  .about-quotes-grid { grid-template-columns: 1fr; }
  .about-quote-card.featured { grid-column: span 1; }
}

/* --- HubSpot Reviews Link --- */
.hubspot-reviews-link {
  text-align: center;
  margin-top: 2.5rem;
}
.hubspot-reviews-link a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; font-weight: 600;
  color: #a78bfa;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  transition: all 0.3s;
}
.hubspot-reviews-link a:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  color: #c4b5fd;
}

/* --- Clickable Proof Stat --- */
.proof-stat-link {
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 12px;
  padding: 0.5rem;
  margin: -0.5rem;
}
.proof-stat-link:hover {
  background: rgba(124, 58, 237, 0.06);
}
.proof-stat-link:hover .proof-number { color: #a78bfa; }
.proof-stat-link:hover .proof-label { color: #a78bfa; }

/* --- About Closing CTA --- */
.about-closing {
  position: relative; z-index: 1;
  padding: 3rem 0 5rem;
}
.about-closing-card {
  text-align: center;
  max-width: 100%; margin: 0 auto;
  padding: 5rem 3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), rgba(24, 24, 27, 0.4));
  border: 1px solid rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
}
.about-closing-card::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 60%);
}
.about-closing-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; color: #fafafa;
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
}
.about-closing-text {
  font-size: 1rem; color: #a1a1aa;
  line-height: 1.8;
  max-width: 600px; margin: 0 auto 1rem;
  position: relative;
}
.about-closing-card .cta-actions {
  position: relative;
  margin-top: 2rem;
}
.about-closing-card .cta-note {
  position: relative;
}

/* ========================================================================
   Checkout Modal
   ======================================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.open {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
.modal-card {
  width: 100%; max-width: 440px;
  padding: 2rem 2rem 1.5rem;
  border-radius: 20px;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: auto;
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  color: #71717a; padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: #fafafa; }
.modal-header { text-align: center; margin-bottom: 1.5rem; }
.modal-logo { margin-bottom: 0.75rem; }
.modal-title { font-size: 1.25rem; font-weight: 700; color: #fafafa; margin-bottom: 0.25rem; }
.modal-subtitle { font-size: 0.85rem; color: #71717a; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem; font-weight: 500; color: #a1a1aa;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select {
  width: 100%; padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fafafa; font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.form-group input::placeholder { color: #52525b; }
.form-group input:focus,
.form-group select:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.form-group select option { background: #18181b; }
.form-divider {
  height: 1px;
  background: rgba(255,255,255,0.04);
  margin: 1rem 0;
}
.stripe-card-wrapper {
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stripe-card-wrapper.StripeElement--focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.stripe-card-wrapper.StripeElement--invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.stripe-card-error {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 0.35rem;
  display: none;
}
.stripe-note {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: #52525b;
  margin-top: 0.6rem;
}
.btn-checkout {
  width: 100%; padding: 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-checkout:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  transform: translateY(-1px);
}
.btn-checkout-loading { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-footer-text {
  text-align: center;
  font-size: 0.72rem; color: #52525b;
  margin-top: 1.25rem;
}
.modal-footer-text a { color: #7c3aed; }
.modal-footer-text a:hover { text-decoration: underline; }

@media (max-height: 700px) {
  .modal-overlay { align-items: flex-start; padding: 0.5rem; }
  .modal-card { padding: 1.5rem; margin: 0.5rem auto; }
  .modal-header { margin-bottom: 1rem; }
  .form-group { margin-bottom: 0.75rem; }
  .form-divider { margin: 0.75rem 0; }
}
@media (max-width: 480px) {
  .modal-overlay { padding: 0.5rem; }
  .modal-card { padding: 1.5rem 1.25rem; border-radius: 16px; }
}

/* ========================================================================
   Animations
   ======================================================================== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes slide-up {
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }

/* --- Selection --- */
::selection { background: rgba(124, 58, 237, 0.3); color: #fafafa; }

/* --- Referral Badge (modal) --- */
.ref-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 0.5rem;
}

/* --- Checkout Error --- */
.checkout-error {
  font-size: 0.82rem; color: #ef4444;
  text-align: center;
  padding: 0.6rem;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  margin-bottom: 0.5rem;
}

/* ========================================================================
   Success Page Styles
   ======================================================================== */
.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  position: relative; z-index: 1;
}
.success-card {
  text-align: center;
  max-width: 520px; width: 100%;
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex; align-items: center; justify-content: center;
  animation: success-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes success-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-size: 1.8rem; font-weight: 800; color: #fafafa;
  margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.success-desc {
  font-size: 1rem; color: #a1a1aa; line-height: 1.7;
  margin-bottom: 2rem;
}
.success-steps {
  text-align: left;
  margin-bottom: 2rem;
}
.success-step {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.success-step:last-child { border-bottom: none; }
.step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-text {
  font-size: 0.9rem; color: #d4d4d8;
  padding-top: 3px;
}
.step-text strong { color: #fafafa; }
.btn-success {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 600; color: #fff;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

/* ========================================================================
   Legal Pages (Terms of Service, Privacy Policy)
   ======================================================================== */
.legal-page {
  padding: 10rem 2rem 6rem;
  min-height: 100vh;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-back {
  display: inline-block;
  font-size: 0.85rem;
  color: #a78bfa;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.legal-back:hover {
  color: #c4b5fd;
}
.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fafafa;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.legal-effective {
  font-size: 0.9rem;
  color: #71717a;
}
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e4e4e7;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.legal-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #a1a1aa;
  margin-bottom: 1rem;
}
.legal-body a {
  color: #a78bfa;
  text-decoration: underline;
  text-decoration-color: rgba(167, 139, 250, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.legal-body a:hover {
  text-decoration-color: #a78bfa;
}
.legal-body ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
  padding: 0;
}
.legal-body li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #a1a1aa;
  margin-bottom: 0.35rem;
}
.legal-body li strong {
  color: #e4e4e7;
  font-weight: 600;
}
.legal-contact {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  line-height: 1.85 !important;
}
@media (max-width: 640px) {
  .legal-page { padding: 8rem 1.25rem 4rem; }
  .legal-title { font-size: 1.75rem; }
  .legal-body h2 { font-size: 1.1rem; }
}
