/* ===========================
   IMOBIFLOW — LANDING PAGE CSS
   Design System Premium Dark
   =========================== */

/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Core palette */
  --navy-950: #020814;
  --navy-900: #050e1d;
  --navy-800: #091526;
  --navy-700: #0d1e35;
  --navy-600: #132845;
  --blue-500: #3B82F6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --green-500: #10B981;
  --green-400: #34d399;
  --purple-500: #8B5CF6;
  --purple-400: #a78bfa;
  --yellow-400: #FBBF24;
  --orange-400: #fb923c;
  --red-400: #f87171;
  --indigo-500: #6366F1;

  /* Text */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.07);

  /* Spacing */
  --section-gap: 120px;
  --container-max: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy-950);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── CONTAINER ─────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── UTILITY ───────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--green-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500) 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--glass-hover);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--blue-400);
  border: 1.5px solid var(--blue-500);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-xl { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION HEADER ────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ───────────────────────────────────────────────── */
/* ── NAVBAR ─────────────────────────────────────── */
/* ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(2, 8, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.4rem; }

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-accent { color: var(--blue-400); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ───────────────────────────────────────────────── */
/* ── HERO ───────────────────────────────────────── */
/* ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  top: 100px;
  right: -150px;
  animation-delay: 3s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  color: var(--blue-300);
  font-size: 0.85rem;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.hero-subtitle strong { color: var(--text-primary); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-400);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--glass-border);
}

/* ── HERO PREVIEW ──────────────────────────────── */
.hero-preview {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 16px;
}

.preview-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.preview-window {
  background: var(--navy-800);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--navy-900);
  border-bottom: 1px solid var(--glass-border);
}

.preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.preview-dot.red { background: #ef4444; }
.preview-dot.yellow { background: #f59e0b; }
.preview-dot.green { background: #10b981; }

.preview-dashboard {
  display: flex;
  height: 340px;
}

.preview-sidebar {
  width: 60px;
  background: var(--navy-900);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}

.preview-nav-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.preview-nav-item.active {
  background: rgba(59, 130, 246, 0.2);
}

.preview-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.preview-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-greeting {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.preview-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.preview-card {
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-blue { background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59,130,246,0.2); }
.card-green { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16,185,129,0.2); }
.card-purple { background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139,92,246,0.2); }
.card-orange { background: rgba(251, 146, 60, 0.12); border: 1px solid rgba(251,146,60,0.2); }

.preview-card-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.preview-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.preview-card-trend {
  font-size: 0.65rem;
  font-weight: 600;
}

.preview-card-trend.up { color: var(--green-400); }
.preview-card-trend.neutral { color: var(--text-muted); }

.preview-pipeline {
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px;
}

.preview-pipeline-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.preview-funnel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-stage {
  height: 22px;
  border-radius: 6px;
  background: var(--c);
  width: var(--w);
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  justify-content: space-between;
  opacity: 0.85;
}

.preview-stage span { opacity: 0.8; }

/* ───────────────────────────────────────────────── */
/* ── LOGOS SECTION ──────────────────────────────── */
/* ───────────────────────────────────────────────── */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--navy-900);
}

.logos-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-chip {
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.2s;
}

.logo-chip:hover {
  background: var(--glass-hover);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

/* ───────────────────────────────────────────────── */
/* ── PAIN SECTION ───────────────────────────────── */
/* ───────────────────────────────────────────────── */
.pain-section {
  padding: var(--section-gap) 0;
}

.chaos-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 16px;
  max-width: 900px;
}

.chaos-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s;
}

.chaos-item:hover {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
}

.chaos-emoji { font-size: 1.6rem; }

.chaos-plus {
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 300;
}

.chaos-result {
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f87171;
  margin: 16px auto 48px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 16px;
  max-width: 600px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,68,68,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-4px);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.pain-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pain-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pain-stat {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(239,68,68,0.06);
  border-radius: 10px;
  border-left: 3px solid #ef4444;
}

.pain-stat strong {
  color: #f87171;
}

/* ───────────────────────────────────────────────── */
/* ── SOLUTION SECTION ───────────────────────────── */
/* ───────────────────────────────────────────────── */
.solution-section {
  padding: var(--section-gap) 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.solution-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.solution-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.solution-text strong { color: var(--text-primary); }

.solution-replace {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.replace-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.replace-old {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
  flex: 1;
}

.replace-arrow {
  color: var(--blue-400);
  font-weight: 700;
  flex-shrink: 0;
}

.replace-new {
  color: var(--green-400);
  font-weight: 600;
  flex: 1;
}

/* ── SOLUTION VISUAL ───────────────────────────── */
.solution-visual {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}

.sol-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.sol-orb-1 {
  width: 200px;
  height: 200px;
  background: var(--blue-500);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: solPulse 4s ease-in-out infinite;
}

.sol-orb-2 {
  width: 150px;
  height: 150px;
  background: var(--green-500);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: solPulse 4s ease-in-out infinite reverse;
}

@keyframes solPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.15); }
}

.sol-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-500), var(--indigo-500));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(59,130,246,0.4);
}

.sol-logo { font-size: 1.8rem; }
.sol-label { font-size: 0.55rem; font-weight: 700; color: white; margin-top: 2px; }

.sol-orbit {
  position: absolute;
  inset: 0;
  animation: orbitRotate 20s linear infinite;
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sol-module {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 28px;
  margin-top: -14px;
  margin-left: -32px;
  transform: rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle)));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue-300);
  white-space: nowrap;
}

/* ───────────────────────────────────────────────── */
/* ── FEATURES SECTION ───────────────────────────── */
/* ───────────────────────────────────────────────── */
.features-section {
  padding: var(--section-gap) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-4px);
  background: var(--glass-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.feature-card-ai {
  grid-column: span 2;
  border-color: rgba(139, 92, 246, 0.2);
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, var(--glass-bg) 100%);
}

.feature-card-ai:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap.feature-icon-green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
}

.feature-icon-wrap.feature-icon-purple {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.2);
}

.feature-icon-wrap.feature-icon-yellow {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
}

.feature-icon-wrap.feature-icon-blue {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon-wrap.feature-icon-indigo {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon-wrap.feature-icon-ai {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.2));
  border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon { font-size: 1.5rem; }

.feature-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-desc strong { color: var(--text-primary); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
}

.feature-highlight {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--green-400);
  font-style: italic;
}

.feature-ai-examples {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-bubble {
  padding: 10px 14px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--purple-400);
  font-style: italic;
}

/* ───────────────────────────────────────────────── */
/* ── HOW IT WORKS ───────────────────────────────── */
/* ───────────────────────────────────────────────── */
.how-section {
  padding: var(--section-gap) 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-500), var(--green-500));
  opacity: 0.3;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 20px 0;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--indigo-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding: 4px 0 4px 4px;
}

.timeline-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ───────────────────────────────────────────────── */
/* ── ROI SECTION ────────────────────────────────── */
/* ───────────────────────────────────────────────── */
.roi-section {
  padding: var(--section-gap) 0;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.roi-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.roi-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-4px);
}

.roi-card-highlight {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.05));
  border-color: rgba(59,130,246,0.25);
}

.roi-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-400), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.roi-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.roi-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.roi-calc {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(16,185,129,0.05));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.roi-calc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.roi-calc-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.roi-calc-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.calc-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.calc-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-value.calc-value-green {
  color: var(--green-400);
}

.calc-value strong { font-weight: 800; }

.roi-calc-divider {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-400);
  flex-shrink: 0;
}

.roi-calc-conclusion {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.roi-calc-conclusion strong {
  color: var(--green-400);
  font-weight: 700;
}

/* ───────────────────────────────────────────────── */
/* ── TESTIMONIALS ───────────────────────────────── */
/* ───────────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-gap) 0;
  background: var(--navy-900);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(59,130,246,0.2);
  transform: translateY(-4px);
}

.testimonial-card-featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(16,185,129,0.05));
  border-color: rgba(59,130,246,0.2);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--indigo-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────────── */
/* ── PRICING ────────────────────────────────────── */
/* ───────────────────────────────────────────────── */
.pricing-section {
  padding: var(--section-gap) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-4px);
}

.pricing-card-featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(99,102,241,0.05));
  border-color: var(--blue-500);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(59,130,246,0.2);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-500), var(--indigo-500));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding-top: 6px;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-feature.plan-feature-off {
  opacity: 0.4;
}

.feature-check {
  color: var(--green-400);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-x {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plan-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.pricing-guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ───────────────────────────────────────────────── */
/* ── FINAL CTA ──────────────────────────────────── */
/* ───────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}

.cta-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-small-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────────── */
/* ── FOOTER ─────────────────────────────────────── */
/* ───────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--glass-border);
  background: var(--navy-900);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

/* ───────────────────────────────────────────────── */
/* ── SCROLL ANIMATIONS ──────────────────────────── */
/* ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ───────────────────────────────────────────────── */
/* ── RESPONSIVE ─────────────────────────────────── */
/* ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }
  .feature-card-ai { grid-column: span 2; }
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid > :last-child { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .solution-banner { grid-template-columns: 1fr; gap: 48px; }
  .solution-right { display: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero-stats { gap: 20px; padding: 20px 24px; }
  .stat-number { font-size: 1.4rem; }
  .hero-stat-divider { height: 32px; }

  .preview-window { display: none; }

  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; display: block; }
  .feature-card-ai { grid-column: span 1; }
  .roi-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > :last-child { grid-column: span 1; }

  .chaos-tools { gap: 8px; }
  .chaos-plus { font-size: 1rem; }

  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }

  .roi-calc { padding: 32px 24px; }
  .roi-calc-grid { flex-direction: column; gap: 16px; }
  .roi-calc-divider { font-size: 1.2rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { border-top: none; padding-top: 0; }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { justify-content: center; }
  .logos-row { gap: 8px; }
  .logo-chip { font-size: 0.78rem; padding: 6px 12px; }
}
