/* ════════════════════════════════════════
   LEADFLOW AI — MAIN CSS
   Professional SaaS Design System
   Theme: Green + White + Blue + Orange + Yellow (Light)
   Fonts: Syne + DM Sans
════════════════════════════════════════ */

:root {
  --green:       #00C896;
  --green-mid:   #00A87A;
  --green-dark:  #007A5A;
  --green-light: #E6FAF5;
  --blue:        #1A6EFF;
  --blue-mid:    #0052CC;
  --blue-light:  #EBF2FF;
  --orange:      #FF6B2B;
  --orange-light:#FFF0EA;
  --yellow:      #FFB800;
  --yellow-light:#FFF8E1;
  --white:       #FFFFFF;
  --off-white:   #F8FBFD;
  --gray-50:     #F4F7FA;
  --gray-100:    #EEF2F7;
  --gray-200:    #DDE3EA;
  --gray-300:    #C4CDD8;
  --gray-400:    #8A9BB0;
  --gray-500:    #637488;
  --gray-600:    #4A5E72;
  --gray-700:    #2F4155;
  --gray-800:    #1C2B3A;
  --gray-900:    #0F1C28;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-xs: 0 1px 4px rgba(26,110,255,0.06);
  --shadow-sm: 0 2px 12px rgba(26,110,255,0.08);
  --shadow-md: 0 8px 32px rgba(26,110,255,0.12);
  --shadow-lg: 0 20px 60px rgba(26,110,255,0.16);
  --shadow-xl: 0 32px 80px rgba(26,110,255,0.2);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 0; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gray-800); }
.pre-bar { width: 200px; height: 3px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.pre-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--green)); border-radius: 3px; animation: preLoad 1.4s ease forwards; }
@keyframes preLoad { to { width: 100%; } }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--gray-800); white-space: nowrap;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo .accent { color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.92rem; font-weight: 500; color: var(--gray-600); transition: color 0.2s; position: relative; padding: 4px 0; }
.nav-link::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:2px; background:var(--blue); border-radius:2px; transition:width 0.2s; }
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost-nav {
  padding: 9px 20px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); color: var(--gray-700);
  font-size: 0.88rem; font-weight: 600; transition: var(--transition);
}
.btn-ghost-nav:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-primary-nav {
  padding: 10px 22px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), #4A90FF);
  color: white; font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 4px 14px rgba(26,110,255,0.35); transition: var(--transition);
  display: inline-block;
}
.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,110,255,0.45); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  background: linear-gradient(165deg, #F0F9FF 0%, #FAFFFD 45%, #FFF9F5 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite;
}
.b1 { width: 700px; height: 700px; background: radial-gradient(circle, #B8F0E0, transparent); top: -150px; right: -150px; animation-delay: 0s; }
.b2 { width: 500px; height: 500px; background: radial-gradient(circle, #C8D8FF, transparent); bottom: -100px; left: -100px; animation-delay: -3s; }
.b3 { width: 350px; height: 350px; background: radial-gradient(circle, #FFE4C8, transparent); bottom: 80px; right: 15%; animation-delay: -5s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-20px) scale(1.05)} }

.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,110,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(26,110,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid rgba(0,200,150,0.3);
  color: var(--green-mid); padding: 7px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 22px;
}
.pulse-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--gray-800); margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.08rem; color: var(--gray-600); max-width: 520px; margin-bottom: 32px; line-height: 1.8; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--green-mid));
  color: white; font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 28px rgba(26,110,255,0.38); transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(26,110,255,0.48); }
.btn-hero-demo {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius);
  background: white; color: var(--gray-800); font-weight: 600; font-size: 1rem;
  border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.btn-hero-demo:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.play-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; padding-left: 2px;
}

.hero-social-proof { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.avatars-row { display: flex; }
.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid white; margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: white; }
.av:first-child { margin-left: 0; }
.proof-text { font-size: 0.88rem; color: var(--gray-600); }
.proof-text strong { color: var(--gray-800); }

.hero-metrics { display: flex; align-items: center; gap: 20px; }
.hm { display: flex; flex-direction: column; }
.hm-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.hm-num.green { color: var(--green-mid); }
.hm-num.blue { color: var(--blue); }
.hm-num.orange { color: var(--orange); }
.hm-label { font-size: 0.75rem; color: var(--gray-400); margin-top: 3px; }
.hm-div { width: 1px; height: 36px; background: var(--gray-200); }

/* Pipeline Widget */
.pipeline-widget {
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
  padding: 24px; animation: fadeSlideUp 0.8s ease both;
}
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.pw-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.pw-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--gray-800); }
.status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.6s infinite; }
.pw-time { font-size: 0.78rem; color: var(--gray-400); font-variant-numeric: tabular-nums; }

.pw-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.pw-step {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--gray-50); border: 1px solid transparent; transition: var(--transition);
}
.pw-step.completed { background: var(--green-light); border-color: rgba(0,200,150,0.2); }
.pw-step.active { background: var(--blue-light); border-color: rgba(26,110,255,0.25); animation: activePulse 2s ease-in-out infinite; }
@keyframes activePulse { 0%,100%{box-shadow:0 0 0 0 rgba(26,110,255,0)} 50%{box-shadow:0 0 0 4px rgba(26,110,255,0.1)} }

.step-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.step-icon.green { background: var(--green-light); color: var(--green-mid); }
.step-icon.blue { background: var(--blue-light); color: var(--blue); }
.step-icon.orange { background: var(--orange-light); color: var(--orange); }
.step-icon.yellow { background: var(--yellow-light); color: var(--yellow); }
.animated-ring { animation: ringPulse 1.5s ease-in-out infinite; }
@keyframes ringPulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,107,43,0.3)} 50%{box-shadow:0 0 0 6px rgba(255,107,43,0)} }

.step-info { flex: 1; min-width: 0; }
.step-name { font-size: 0.84rem; font-weight: 600; color: var(--gray-800); }
.step-meta { font-size: 0.74rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.step-tag { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.step-tag.done { background: var(--green-light); color: var(--green-mid); }
.step-tag.live { background: var(--orange-light); color: var(--orange); }
.step-tag.ai { background: linear-gradient(135deg,var(--blue),var(--green)); color: white; }

.pw-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.pws { background: var(--gray-50); border-radius: var(--radius-sm); padding: 10px 8px; text-align: center; }
.pws-n { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; line-height: 1; }
.pws-n.green { color: var(--green-mid); }
.pws-n.blue { color: var(--blue); }
.pws-n.orange { color: var(--orange); }
.pws-n.yellow { color: var(--yellow); }
.pws-l { font-size: 0.66rem; color: var(--gray-400); margin-top: 2px; display: block; }

.pw-activity { background: var(--gray-50); border-radius: var(--radius-sm); padding: 10px 12px; }
.activity-item { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--gray-600); }
.act-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; animation: pulse 1.6s infinite; }
.act-dot.green { background: var(--green); }
.act-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Floating cards */
.hero-visual { position: relative; }
.float-card {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 10px;
  animation: floatAnim 4s ease-in-out infinite;
}
.fc1 { bottom: -20px; left: -30px; animation-delay: -1s; }
.fc2 { top: 20px; right: -20px; animation-delay: -2.5s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { font-size: 1.4rem; }
.fc-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--gray-800); }
.fc-lbl { font-size: 0.72rem; color: var(--gray-400); }

/* ── STATS BAR ── */
.stats-bar { background: var(--gray-800); padding: 44px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 40px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }
.sn { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.sn.green { color: var(--green); }
.sn.blue { color: #5B9FFF; }
.sn.orange { color: var(--orange); }
.sn.yellow { color: var(--yellow); }
.sl { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 5px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.section-tag.blue { background: var(--blue-light); color: var(--blue); }
.section-tag.green { background: var(--green-light); color: var(--green-mid); }
.section-tag.orange { background: var(--orange-light); color: var(--orange); }
.section-tag.yellow { background: var(--yellow-light); color: #CC8800; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; color: var(--gray-800); }
.section-header p { font-size: 1.05rem; color: var(--gray-500); max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ── HOW IT WORKS ── */
.pipeline-visual { max-width: 960px; margin: 0 auto; position: relative; }
.pipeline-line {
  position: absolute; left: 52px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--green), var(--orange), var(--yellow));
  border-radius: 2px; z-index: 0;
}
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 28px; align-items: flex-start; padding: 24px 0; position: relative; z-index: 1; }
.flow-step.reverse { flex-direction: row; }

.fs-num {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.n-blue { background: linear-gradient(135deg, var(--blue), #5B9FFF); }
.n-green { background: linear-gradient(135deg, var(--green-mid), var(--green)); }
.n-orange { background: linear-gradient(135deg, var(--orange), #FFAB6B); }
.n-yellow { background: linear-gradient(135deg, var(--yellow), #FFD966); }

.fs-card {
  flex: 1; background: white; border-radius: var(--radius-lg); padding: 24px 28px;
  border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-sm);
  display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
}
.fs-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.flow-step.reverse .fs-card:hover { transform: translateX(-6px); }

.fs-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fs-icon-wrap.blue { background: var(--blue-light); color: var(--blue); }
.fs-icon-wrap.green { background: var(--green-light); color: var(--green-mid); }
.fs-icon-wrap.orange { background: var(--orange-light); color: var(--orange); }
.fs-icon-wrap.yellow { background: var(--yellow-light); color: var(--yellow); }

.fs-content { flex: 1; }
.fs-content h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; }
.fs-content p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.fs-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-size: 0.72rem; font-weight: 600; padding: 4px 11px;
  border-radius: 100px;
}
.tag.blue { background: var(--blue-light); color: var(--blue); }
.tag.green { background: var(--green-light); color: var(--green-mid); }
.tag.orange { background: var(--orange-light); color: var(--orange); }
.tag.yellow { background: var(--yellow-light); color: #CC8800; }

/* ── FEATURES ── */
.features-section { background: var(--off-white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden; transition: var(--transition);
}
.feat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; border-radius:3px 3px 0 0; }
.fc-blue::before { background: linear-gradient(90deg, var(--blue), #5B9FFF); }
.fc-green::before { background: linear-gradient(90deg, var(--green-mid), var(--green)); }
.fc-orange::before { background: linear-gradient(90deg, var(--orange), #FFAB6B); }
.fc-yellow::before { background: linear-gradient(90deg, var(--yellow), #FFD966); }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat-icon.blue { background: var(--blue-light); color: var(--blue); }
.feat-icon.green { background: var(--green-light); color: var(--green-mid); }
.feat-icon.orange { background: var(--orange-light); color: var(--orange); }
.feat-icon.yellow { background: var(--yellow-light); color: var(--yellow); }
.feat-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--gray-800); }
.feat-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.feat-stat { display: flex; align-items: baseline; gap: 6px; }
.fstat-n { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--blue); }
.fc-green .fstat-n { color: var(--green-mid); }
.fc-orange .fstat-n { color: var(--orange); }
.fc-yellow .fstat-n { color: var(--yellow); }
.fstat-l { font-size: 0.78rem; color: var(--gray-400); }

/* ── INTEGRATIONS ── */
.integrations-section { padding: 48px 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.int-label { text-align: center; font-size: 0.85rem; color: var(--gray-400); font-weight: 500; margin-bottom: 20px; }
.int-logos { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.int-logo {
  padding: 10px 20px; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 100px; font-size: 0.84rem; font-weight: 600; color: var(--gray-600);
  transition: var(--transition);
}
.int-logo:hover { background: var(--blue-light); border-color: rgba(26,110,255,0.2); color: var(--blue); }

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview-section { background: linear-gradient(160deg, #EBF5FF 0%, #F0FDF9 100%); }
.dp-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: center; }
.dp-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; margin-bottom: 16px; color: var(--gray-800); }
.dp-text p { font-size: 1rem; color: var(--gray-600); margin-bottom: 24px; line-height: 1.8; }
.dp-list { display: flex; flex-direction: column; gap: 12px; }
.dp-list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--gray-600); }
.dp-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.dp-icon.blue { background: var(--blue-light); }
.dp-icon.green { background: var(--green-light); }
.dp-icon.orange { background: var(--orange-light); }
.dp-icon.yellow { background: var(--yellow-light); }

.dash-mock { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200); overflow: hidden; }
.dm-header {
  background: linear-gradient(135deg, var(--blue), var(--green-mid));
  padding: 16px 22px; display: flex; align-items: center; gap: 12px;
}
.dm-dots { display: flex; gap: 6px; }
.dmd { width: 10px; height: 10px; border-radius: 50%; }
.dmd.r { background: #FF5F57; }
.dmd.y { background: #FEBC2E; }
.dmd.g { background: #28C840; }
.dm-title { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500; }
.dm-body { padding: 22px; }
.dm-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.dms { background: var(--gray-50); border-radius: var(--radius-sm); padding: 12px; }
.dms-n { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.dms.green .dms-n { color: var(--green-mid); }
.dms.blue .dms-n { color: var(--blue); }
.dms.orange .dms-n { color: var(--orange); }
.dms.yellow .dms-n { color: var(--yellow); }
.dms-l { font-size: 0.7rem; color: var(--gray-400); margin-top: 2px; }
.dm-funnel-title { font-size: 0.78rem; font-weight: 600; color: var(--gray-500); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.dmf-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.dmf-l { font-size: 0.75rem; color: var(--gray-600); width: 100px; flex-shrink: 0; }
.dmf-bar { flex: 1; height: 7px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.dmf-fill { height: 100%; border-radius: 4px; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
.dmf-fill.blue { background: linear-gradient(90deg, var(--blue), #5B9FFF); }
.dmf-fill.green { background: linear-gradient(90deg, var(--green-mid), var(--green)); }
.dmf-fill.orange { background: linear-gradient(90deg, var(--orange), #FFAB6B); }
.dmf-fill.yellow { background: linear-gradient(90deg, var(--yellow), #FFD966); }
.dmf-v { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); width: 30px; text-align: right; }

/* ── PRICING ── */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; }
.pt-label { font-size: 0.95rem; font-weight: 500; color: var(--gray-500); cursor: pointer; }
.pt-label.active { color: var(--gray-800); font-weight: 600; }
.save-badge { font-size: 0.72rem; background: var(--green-light); color: var(--green-mid); padding: 2px 8px; border-radius: 100px; font-weight: 700; vertical-align: middle; margin-left: 5px; }
.toggle-switch { position: relative; width: 46px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.ts-slider { position: absolute; inset: 0; background: var(--gray-200); border-radius: 26px; cursor: pointer; transition: 0.3s; }
.ts-slider::before { content:''; position:absolute; width:20px; height:20px; left:3px; bottom:3px; background:white; border-radius:50%; transition:0.3s; box-shadow:0 1px 4px rgba(0,0,0,0.15); }
input:checked + .ts-slider { background: var(--blue); }
input:checked + .ts-slider::before { transform: translateX(20px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1020px; margin: 0 auto; }
.price-card {
  background: white; border-radius: var(--radius-xl); padding: 36px 28px;
  border: 2px solid var(--gray-200); box-shadow: var(--shadow-sm);
  position: relative; transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--blue); box-shadow: 0 12px 48px rgba(26,110,255,0.2);
  background: linear-gradient(160deg, #F0F7FF, #FDFFFE);
}
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--green-mid));
  color: white; font-size: 0.74rem; font-weight: 700; padding: 6px 18px;
  border-radius: 100px; white-space: nowrap;
}
.pc-tier { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 12px; }
.pc-price { font-family: var(--font-display); margin-bottom: 14px; color: var(--gray-800); }
.pc-price sup { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.price-num { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.price-period { font-size: 0.88rem; font-weight: 400; color: var(--gray-400); }
.pc-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 22px; }
.pc-divider { height: 1px; background: var(--gray-200); margin-bottom: 22px; }
.pc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--gray-600); }
.pc-features li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 6px;
  background: var(--green-light); color: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.btn-plan {
  width: 100%; padding: 13px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.92rem; border: 2px solid var(--gray-200);
  color: var(--gray-800); background: white; transition: var(--transition);
  display: block; text-align: center;
}
.btn-plan:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-plan.featured {
  background: linear-gradient(135deg, var(--blue), var(--green-mid));
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(26,110,255,0.35);
}
.btn-plan.featured:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(26,110,255,0.45); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { font-size: 0.95rem; letter-spacing: 3px; color: var(--yellow); margin-bottom: 14px; }
.testi-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.tav { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.88rem; flex-shrink: 0; }
.tan { font-weight: 700; font-size: 0.88rem; color: var(--gray-800); }
.tar { font-size: 0.76rem; color: var(--gray-400); margin-top: 2px; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: var(--radius); border: 1.5px solid var(--gray-200); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(26,110,255,0.3); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  font-size: 0.95rem; font-weight: 600; color: var(--gray-800);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-arrow { transition: transform 0.3s; font-size: 0.75rem; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.75;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #0052CC 40%, var(--green-mid) 100%);
  padding: 96px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06) 0, transparent 50%),
                    radial-gradient(circle at 70% 70%, rgba(0,200,150,0.1) 0, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; color: white; margin-bottom: 16px; }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-cta-white {
  padding: 15px 32px; border-radius: var(--radius);
  background: white; color: var(--blue); font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); transition: var(--transition); display: inline-block;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-cta-outline {
  padding: 15px 32px; border-radius: var(--radius);
  background: transparent; color: white; font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5); transition: var(--transition); display: inline-block;
}
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ── FOOTER ── */
footer { background: var(--gray-900); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.75; max-width: 280px; margin-top: 14px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07); color: var(--gray-400); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; transition: var(--transition); }
.social-btn:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.footer-col h5 { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: white; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.84rem; color: var(--gray-400); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: var(--gray-500); }
.footer-badges { display: flex; gap: 8px; }
.fbadge { padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 700; background: rgba(255,255,255,0.06); color: var(--gray-400); border: 1px solid rgba(255,255,255,0.1); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: white; border-radius: var(--radius-xl); padding: 32px; max-width: 640px; width: 90%; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 8px; background: var(--gray-100); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--gray-200); }
.video-placeholder { background: var(--gray-100); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; }
.vp-icon { font-size: 3rem; margin-bottom: 12px; }
.video-placeholder p { color: var(--gray-600); font-size: 0.95rem; }

/* ── AOS ANIMATIONS ── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .dp-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-menu { display: none; position: fixed; inset: 70px 0 0; background: white; flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 99; padding: 40px; box-shadow: var(--shadow-xl); }
  .nav-menu.open { display: flex; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .pipeline-line { display: none; }
  .flow-step { gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 16px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .dm-stats-row { grid-template-columns: 1fr 1fr; }
}
