/* =========================================================
   SAAFIY — Premium CRM Landing Page
   Sections: Variables, Reset, Utilities, Navbar, Hero,
   Trusted, Features, Reports, Analysis, Stats, How,
   Integrations, Testimonials, Pricing, FAQ, CTA, Footer,
   Animations, Responsive
========================================================= */

/* ============= CSS VARIABLES ============= */
:root {
  /* Brand */
  --purple-50:  #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-400: #c084fc;
  --purple-500: #b829ed;
  --purple-600: #a020e0;
  --purple-700: #7e22ce;
  --lime-300:   #d6f97a;
  --lime-400:   #b4f24a;
  --lime-500:   #9ae62a;

  /* Neutrals */
  --bg:        #ffffff;
  --bg-soft:   #f7f8fb;
  --ink:       #0e0e10;
  --ink-2:     #1a1a1f;
  --muted:     #6b7280;
  --line:      #ececf1;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(15,15,25,.06);
  --shadow:    0 10px 30px rgba(15,15,25,.08);
  --shadow-lg: 0 20px 60px rgba(126,34,206,.18);

  --grad-purple: linear-gradient(135deg,#c14bff 0%,#7e22ce 100%);
  --grad-soft:   linear-gradient(135deg,#faf5ff 0%,#ffffff 60%);
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  /* `overflow-x: hidden` breaks position:sticky in many browsers.
     `overflow-x: clip` clips the same way without creating a scroll context. */
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; color: var(--ink); }
p  { margin: 0; }
input { font-family: inherit; }

/* Selection */
::selection { background: var(--purple-600); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--purple-400); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-600); }

/* ============= UTILITIES ============= */
.container { width: min(1240px, 92%); margin-inline: auto; }
.eyebrow {
  display: inline-block; font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-100);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.gradient-text {
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gradient-text-light { color: var(--lime-300); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
.section-head p  { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: 0 10px 24px rgba(160,32,224,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(160,32,224,.45); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--purple-600); color: var(--purple-600); }
.btn-outline {
  border: 1.5px solid var(--purple-200);
  color: var(--purple-700);
  background: #fff;
}
.btn-outline:hover { background: var(--purple-50); transform: translateY(-2px); }
.btn-light {
  background: #fff; color: var(--purple-700);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }

/* Ripple */
.ripple .ripple-effect {
  position: absolute; border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: rgba(255,255,255,.45);
  animation: ripple .7s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: translate(-50%,-50%) scale(28); opacity: 0; }
}

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); transition: .3s;
}
.icon-btn:hover { background: var(--purple-100); color: var(--purple-600); }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--purple-100); color: var(--purple-700);
  font-weight: 600; font-size: .85rem;
  margin-bottom: 22px;
  border: 1px solid var(--purple-200);
}
.pill i { color: var(--purple-600); }

/* Custom cursor removed — using the system default cursor everywhere */

/* ============= LOADER ============= */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: #fff;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  animation: pulse 1.6s ease-in-out infinite;
}
.loader-logo img {
  height: 140px; width: auto;
  filter: none; /* Show smart-crm-logo in its native blue colors */
}
.loader-bar {
  width: 240px; height: 4px; border-radius: 999px;
  background: var(--purple-100); overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%; width: 30%;
  background: var(--grad-purple);
  animation: loadbar 1.4s var(--ease) infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(120%); }
  100% { transform: translateX(280%); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(160,32,224,.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(160,32,224,0); }
}

/* ============= BACKGROUND DECOR ============= */
.bg-decor {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: .55; animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; top: -120px; right: -120px; background: var(--purple-200); }
.blob-2 { width: 420px; height: 420px; bottom: 10%; left: -120px; background: #e0fbe2; animation-delay: -4s; }
.blob-3 { width: 360px; height: 360px; top: 40%; right: 25%; background: var(--lime-300); opacity: .25; animation-delay: -8s; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126,34,206,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,34,206,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.mouse-glow {
  position: fixed; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,75,255,.18), transparent 60%);
  pointer-events: none; transform: translate(-50%,-50%);
  transition: transform .15s linear;
  z-index: 0;
}
@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(20px,-30px) rotate(8deg); }
}

/* ============= NAVBAR ============= */
.navbar {
  position: sticky; top: 0; z-index: 100;
  padding: 6px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 10px 30px rgba(15,15,25,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; transition: transform .3s var(--ease); }
.logo:hover { transform: scale(1.03); }
.logo-img {
  height: 130px; width: auto;
  /* Show the logo in its original brand colors (no filter). */
  filter: none;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-weight: 500; color: var(--ink-2); font-size: .98rem;
  position: relative; padding: 8px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 2px; background: var(--grad-purple); border-radius: 4px;
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--purple-600); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--purple-600); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger { display: none; width: 42px; height: 42px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============= HERO ============= */
.hero { padding: 60px 0 80px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800; letter-spacing: -.02em;
  margin: 4px 0 18px;
}
.title-cursor {
  display: inline-block; color: var(--purple-600);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-sub { color: var(--muted); font-size: 1.08rem; max-width: 540px; }

.hero-form {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px;
  box-shadow: var(--shadow-sm);
  margin-top: 28px; max-width: 520px;
  transition: box-shadow .3s, transform .3s;
}
.hero-form:focus-within { box-shadow: 0 12px 36px rgba(126,34,206,.18); }
.hero-form i { color: var(--muted); margin: 0 6px 0 16px; }
.hero-form input {
  flex: 1; border: 0; outline: none; padding: 10px 4px;
  font-size: .98rem; background: transparent;
}
.hero-form .btn { padding: 12px 22px; }
.hero-form.light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
}
.hero-form.light input { color: #fff; }
.hero-form.light input::placeholder { color: rgba(255,255,255,.7); }
.hero-form.light i { color: rgba(255,255,255,.8); }

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.avatars span:first-child { margin-left: 0; }

/* When avatars contain client logos — blue theme glow */
.avatars-logos span {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 4px;
  box-shadow:
    0 4px 14px rgba(59,130,246,.30),
    0 0 0 1px rgba(14,165,233,.15);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.avatars-logos span img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.avatars-logos span:hover {
  transform: translateY(-4px) scale(1.12);
  z-index: 2;
  box-shadow:
    0 8px 22px rgba(59,130,246,.50),
    0 0 0 2px rgba(14,165,233,.4);
}
.hero-trust small { display: block; color: var(--muted); font-size: .85rem; }
.hero-trust i { color: #f59e0b; font-size: .8rem; }

/* Hero visual */
.hero-visual { position: relative; min-height: 560px; }
.lime-blob {
  position: absolute; inset: 0; margin: auto;
  width: 78%; height: 78%; top: 8%; left: 12%;
  background: radial-gradient(circle at center, var(--lime-400), var(--lime-500));
  border-radius: 48% 52% 35% 65% / 55% 45% 55% 45%;
  filter: blur(2px);
  animation: morph 12s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(154,230,42,.35);
}
@keyframes morph {
  0%,100% { border-radius: 48% 52% 35% 65% / 55% 45% 55% 45%; transform: rotate(0); }
  50%     { border-radius: 60% 40% 55% 45% / 40% 60% 35% 65%; transform: rotate(8deg); }
}

/* ============= LAPTOP / PC MOCKUP (HERO CENTERPIECE) ============= */
.laptop-mockup {
  position: absolute; inset: 0; margin: auto;
  width: 96%; max-width: 540px;
  top: 18%; left: 0; right: 0;
  z-index: 1;
  animation: dashFloat 7s ease-in-out infinite;
  transition: filter .5s var(--ease);
}
.laptop-mockup:hover {
  animation-play-state: paused;
  filter: drop-shadow(0 30px 50px rgba(126,34,206,.30));
  z-index: 5;
}
@keyframes dashFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* On laptop hover: highlight big revenue number + KPI tile values */
.dash-value, .df-tile strong, .dash-tip {
  transition: color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease), letter-spacing .45s var(--ease);
}
.laptop-mockup:hover .dash-value {
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: .5px;
}
.laptop-mockup:hover .df-tile strong { color: var(--purple-700); }
.laptop-mockup:hover .df-tile {
  background: linear-gradient(135deg,#f3e8ff,#faf5ff);
}
.laptop-mockup:hover .dash-tip { transform: translateY(-3px) scale(1.05); }
/* Glow the chart line a touch on hover */
.laptop-mockup:hover .dash-line { filter: drop-shadow(0 2px 8px rgba(160,32,224,.5)); transition: filter .4s; }

/* Screen frame (the laptop lid) */
.laptop-screen {
  position: relative;
  background: linear-gradient(180deg,#1a1a23 0%,#0d0d12 100%);
  padding: 18px 12px 12px;
  border-radius: 14px 14px 4px 4px;
  box-shadow:
    0 30px 70px rgba(126,34,206,.25),
    0 12px 30px rgba(15,15,25,.18),
    inset 0 -3px 6px rgba(0,0,0,.5);
}
.laptop-screen::before {
  /* Tiny camera dot */
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: #2a2a35;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

/* Hinge */
.laptop-hinge {
  height: 8px; margin: 0 -3%;
  background: linear-gradient(180deg,#3a3a45,#1a1a23);
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* Base / keyboard deck */
.laptop-base {
  position: relative;
  width: 116%; height: 14px;
  margin: 0 -8%;
  background: linear-gradient(180deg,#e5e7eb 0%,#9ca3af 60%,#6b7280 100%);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.laptop-base::after {
  /* Trackpad notch */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 5px;
  background: #6b7280;
  border-radius: 0 0 8px 8px;
}

/* Inner dashboard (horizontal layout) */
.dash-card-h {
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
}
.dash-body {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 14px;
  align-items: stretch;
}
.dash-left {
  display: flex; flex-direction: column; gap: 10px;
}
.dash-right { display: flex; align-items: stretch; }
.dash-right .dash-chart { width: 100%; }

/* Window header */
.dash-head {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 12px; border-bottom: 1px solid #f1f1f4; margin-bottom: 14px;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f56; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #27c93f; }
.dash-title {
  font-size: .8rem; font-weight: 700; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px; margin-left: 8px;
}
.dash-title i { color: var(--purple-600); }

/* Hero metric */
.dash-hero { margin-bottom: 14px; }
.dash-hero small { color: var(--muted); font-size: .72rem; display: block; }
.dash-value {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.6rem; font-weight: 800; color: var(--ink);
  margin-top: 2px;
}
.dash-trend {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
}
.dash-trend.up   { background: #dcfce7; color: #16a34a; }

/* Period tabs */
.dash-tabs {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 4px;
  background: #faf5ff; padding: 4px; border-radius: 999px;
  margin-bottom: 14px;
}
.dash-tabs button {
  padding: 6px 0; border-radius: 999px;
  font-size: .72rem; font-weight: 700; color: var(--muted);
  transition: background .25s, color .25s, box-shadow .25s;
}
.dash-tabs button.active {
  background: var(--grad-purple); color: #fff;
  box-shadow: 0 6px 14px rgba(160,32,224,.35);
}
.dash-tabs button:not(.active):hover { color: var(--purple-700); }

/* Chart */
.dash-chart { position: relative; margin-bottom: 10px; }
.dash-chart svg { width: 100%; height: 130px; display: block; }
.dash-line {
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: drawLine 2.4s var(--ease) forwards .8s;
}
.dash-dot-pulse {
  transform-origin: 260px 38px;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { r: 6; }
  50%     { r: 8; }
}
.dash-tip {
  position: absolute; top: 6%; left: 70%;
  background: var(--grad-purple); color: #fff;
  padding: 5px 11px; border-radius: 10px;
  font-size: .76rem; font-weight: 700;
  box-shadow: 0 8px 18px rgba(160,32,224,.4);
  animation: tipBob 3s ease-in-out infinite;
  white-space: nowrap;
}
.dash-tip small {
  font-weight: 500; opacity: .85; font-size: .68rem; margin-left: 2px;
}
.dash-tip::after {
  content: ""; position: absolute; bottom: -5px; left: 24%;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #a020e0;
}
@keyframes tipBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
.dash-axis {
  display: flex; justify-content: space-between;
  font-size: .62rem; color: var(--muted); margin-top: 2px;
}

/* ===== Horizontal-layout overrides (inside laptop) ===== */
.dash-card-h .dash-head {
  margin-bottom: 12px; padding-bottom: 10px;
}
.dash-card-h .dash-title { margin-left: 6px; font-size: .72rem; }
.dash-card-h .dash-tabs {
  grid-template-columns: repeat(3, auto);
  margin: 0 0 0 auto;        /* push to right side of header */
  padding: 3px;
}
.dash-card-h .dash-tabs button { padding: 4px 12px; font-size: .65rem; }

.dash-card-h .dash-hero {
  background: linear-gradient(135deg,#faf5ff,#f3e8ff);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
}
.dash-card-h .dash-hero small { font-size: .62rem; margin-bottom: 2px; }
.dash-card-h .dash-value { font-size: 1.4rem; margin: 2px 0 6px; }
.dash-card-h .dash-trend { font-size: .65rem; }

.dash-card-h .dash-foot { grid-template-columns: 1fr; gap: 6px; margin: 0; }
.dash-card-h .df-tile   { padding: 8px 10px; }
.dash-card-h .df-tile strong { font-size: .88rem; }

.dash-card-h .dash-chart svg { height: 150px; }
.dash-card-h .dash-axis      { font-size: .56rem; }
.dash-card-h .dash-tip       { font-size: .7rem; padding: 4px 8px; top: 4%; left: 70%; }

/* Bottom mini tiles */
.dash-foot {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin-top: 6px;
}
.df-tile {
  display: flex; align-items: center; gap: 8px;
  background: #faf5ff; border-radius: 12px;
  padding: 9px 10px;
  transition: background .25s, transform .25s;
}
.df-tile:hover { background: #f3e8ff; transform: translateY(-2px); }
.df-tile small  { color: var(--muted); font-size: .64rem; display: block; }
.df-tile strong { font-weight: 800; font-size: .95rem; }
.df-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.df-dot.purple { background: var(--purple-600); }
.df-dot.green  { background: #22c55e; }
.df-dot.pink   { background: #ec4899; }

/* Floating cards */
.float-card {
  position: absolute; background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(15,15,25,.12);
  min-width: 200px;
  animation: cardFloat 7s ease-in-out infinite;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
  transition:
    box-shadow .5s var(--ease),
    border-color .5s var(--ease),
    background .5s var(--ease);
}
/* Pause the float on hover so the user can read it; tilt JS handles 3D motion.
   The smooth lift is provided by the tilt JS (also has its own transition). */
.float-card:hover {
  animation-play-state: paused;
  box-shadow: 0 30px 60px rgba(126,34,206,.30);
  border-color: rgba(193,75,255,.35);
  background: linear-gradient(180deg,#ffffff 0%, #faf5ff 100%);
  z-index: 5;
}
/* On hover, light up the big numbers with the brand gradient */
.float-card .fc-row h3,
.float-card .big {
  transition: color .45s var(--ease), letter-spacing .45s var(--ease);
}
.float-card:hover .fc-row h3,
.float-card:hover .big {
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: .5px;
}
/* Spark line & bars get an extra glow on card hover */
.float-card:hover .spark-line { filter: drop-shadow(0 2px 6px rgba(160,32,224,.45)); transition: filter .4s; }
.float-card:hover .bars span  { filter: drop-shadow(0 4px 8px rgba(160,32,224,.35)); transition: filter .4s; }

@keyframes cardFloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

.card-activity { top: 6%; left: -4%; width: 270px; animation-delay: -1s; }
.card-sales    { top: 12%; right: -4%; width: 220px; animation-delay: -2s; }
.card-daily    { bottom: 16%; left: -8%; width: 240px; animation-delay: -3s; }
.card-users    { bottom: -2%; right: -2%; width: 230px; animation-delay: -4s; }

.fc-head { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.fc-head .chip { background: var(--purple-100); color: var(--purple-700); padding: 4px 10px; border-radius: 999px; font-size: .75rem; }
.fc-row { display: flex; justify-content: space-between; align-items: flex-start; }
.fc-row small { color: var(--muted); font-size: .8rem; }
.fc-row h3 { font-size: 1.6rem; font-weight: 800; margin: 4px 0; }
.fc-row .up { color: #16a34a; font-size: .78rem; }
.fc-row .down { color: #ef4444; font-size: .78rem; }

.badge {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
}
.badge.purple { background: var(--grad-purple); }
.badge.green  { background: linear-gradient(135deg,#22c55e,#15803d); }

.spark { width: 100%; height: 70px; }
.spark-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: drawLine 2.5s var(--ease) forwards .8s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.axis { display: flex; justify-content: space-between; font-size: .68rem; color: var(--muted); margin-top: 4px; }
.big { font-size: 1.8rem; font-weight: 800; margin: 4px 0 10px; }
.big span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.pink { color: #ec4899; font-weight: 600; }
.bars { display: flex; gap: 6px; align-items: flex-end; height: 50px; margin-top: 4px; }
.bars span {
  flex: 1; height: var(--h); border-radius: 4px;
  background: linear-gradient(180deg,var(--purple-600),var(--purple-400));
  animation: barRise 1.2s var(--ease) backwards;
}
.bars span:nth-child(1){animation-delay:.1s}.bars span:nth-child(2){animation-delay:.18s}.bars span:nth-child(3){animation-delay:.26s}.bars span:nth-child(4){animation-delay:.34s; background: linear-gradient(180deg,var(--lime-400),var(--lime-500));}.bars span:nth-child(5){animation-delay:.42s}.bars span:nth-child(6){animation-delay:.5s}.bars span:nth-child(7){animation-delay:.58s}
@keyframes barRise { from { height: 0;} }

/* ============= TRUSTED / REVIEW BADGES ============= */
.trusted { padding: 60px 0 50px; }
.trust-label {
  text-align: center;
  color: #6b7280;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .4s var(--ease);
}
.review-card:hover { transform: translateY(-4px); }

.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.rb-mark { width: 30px; height: 30px; flex-shrink: 0; }
.rb-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
}

/* Capterra */
.capterra-text { color: #0E4A75; }

/* Trustpilot */
.trustpilot-star {
  color: #00B67A;
  font-size: 1.85rem;
}
.trustpilot-text { color: #191919; }

/* G2 Crowd */
.g2-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #4b5563;
  position: relative;
}
.g2-circle sup {
  font-size: .55rem;
  margin-left: 1px;
  top: -.5em;
}
.g2-divider {
  width: 2px; height: 28px;
  background: #4b5563;
  display: inline-block;
}
.g2-text {
  color: #4b5563;
  font-size: 1.35rem;
  letter-spacing: .04em;
}

/* 5-star rating row */
.stars-row {
  display: flex;
  gap: 4px;
  color: #f5b400;
  font-size: 1.05rem;
}

@media (max-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============= FEATURES ============= */
.features { padding: 80px 0; }
.features-panel {
  background:
    radial-gradient(ellipse at top right, rgba(193,75,255,.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(236,72,153,.12), transparent 60%),
    linear-gradient(135deg, #f5e8ff 0%, #ede4fc 50%, #fbe8ff 100%);
  border-radius: 36px;
  padding: 70px 50px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(193,75,255,.12);
}
.features-panel::before, .features-panel::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45;
}
.features-panel::before { width: 320px; height: 320px; top: -60px; right: -60px; background: var(--purple-200); }
.features-panel::after  { width: 320px; height: 320px; bottom: -80px; left: -60px; background: #ddd6fe; }

/* Stats strip in features header */
.features-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 32px auto 18px;
  flex-wrap: wrap;
  padding: 18px 30px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(193,75,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(126,34,206,.10);
}
.features-stats > div:not(.divider) { text-align: center; }
.features-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.features-stats small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.features-stats .divider {
  width: 1px; height: 28px; background: rgba(126,34,206,.22);
}

/* Quick capability pills */
.features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 6px;
  max-width: 760px;
}
.features-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(193,75,255,.22);
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 600;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.features-pills li i { color: var(--purple-600); }
.features-pills li:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--purple-400);
}

/* Bottom CTA row */
.features-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.features-cta .btn-outline {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  position: relative; z-index: 1;
}
.feature-card {
  background: #fff; border-radius: 16px;
  padding: 22px 20px; text-align: center;
  box-shadow: 0 8px 24px rgba(15,15,25,.06);
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.feature-card .glow {
  position: absolute; inset: -2px; border-radius: 18px;
  background: conic-gradient(from var(--a,0deg), transparent 0 70%, var(--purple-400) 75%, transparent 80%);
  z-index: -1; opacity: 0; transition: opacity .45s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(126,34,206,.20); }
.feature-card:hover .glow { opacity: .9; }
.ficon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-purple); color: #fff;
  font-size: 1rem;
  margin: 0 auto 12px;
  box-shadow: 0 8px 16px rgba(160,32,224,.35);
  transition: transform .4s var(--ease);
}
.feature-card:hover .ficon { transform: rotate(-6deg) scale(1.08); }
.feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; line-height: 1.25; }
.feature-card p  { color: var(--muted); font-size: .82rem; line-height: 1.5; }

/* ============= PRODUCT SCREENS / SEE IT IN ACTION ============= */
.screens {
  padding: 100px 0;
  position: relative;
  /* NO overflow:hidden here — it would break position:sticky on the aside */
}
.screens-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(193,75,255,.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(236,72,153,.08), transparent 60%);
  pointer-events: none;
}

/* Sticky two-column layout */
.screens-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.35fr;
  gap: 80px;
  align-items: start;
}
.screens-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 6px 0;
}
.screens-aside h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.screens-aside p  { color: var(--muted); font-size: 1.02rem; margin-bottom: 32px; }

.aside-meta { margin-bottom: 28px; }
.aside-counter {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  margin-bottom: 14px;
}
#screenCurrent {
  font-size: 3.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  min-width: 90px;
  display: inline-block;
  transition: opacity .3s var(--ease);
}
.aside-divider { font-size: 1.8rem; color: #d1d5db; font-weight: 300; }
#screenTotal { font-size: 1.6rem; color: var(--muted); font-weight: 600; }
.aside-progress {
  width: 100%; height: 5px;
  background: var(--purple-100);
  border-radius: 999px; overflow: hidden;
  margin-bottom: 12px;
}
.aside-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--purple-600), #ec4899, var(--lime-400));
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width .45s var(--ease);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }
.aside-label {
  display: inline-block;
  color: var(--purple-700);
  font-weight: 700; font-size: .9rem;
  letter-spacing: .02em;
}
.aside-cta { display: inline-flex; }

/* Stacked screenshots */
.screens-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 30vh; /* extra room so last card can scroll into focus zone */
}

/* Slide-in animation per card */
.screens-stack .screen-card {
  opacity: 0;
  transform: translateX(80px) scale(.94) rotate(1.2deg);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease),
    box-shadow .55s var(--ease),
    border-color .55s var(--ease);
}
.screens-stack .screen-card.visible {
  opacity: 1;
  transform: translateX(0) scale(1) rotate(0);
}

/* Active card highlight as it sits in the focus zone */
.screens-stack .screen-card.active {
  box-shadow: 0 40px 80px rgba(126,34,206,.28);
  border-color: var(--purple-300, var(--purple-200));
}
.screens-stack .screen-card.active .screen-tag {
  background: var(--grad-purple);
  color: #fff;
}
.screens-stack .screen-card.active .screen-info h3 {
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.screen-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(15,15,25,.05);
  transition:
    transform .55s var(--ease),
    box-shadow .55s var(--ease),
    border-color .55s var(--ease);
  position: relative;
}
.screen-card::before {
  content: ""; position: absolute; inset: -2px; border-radius: 22px;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600), #ec4899);
  z-index: -1; opacity: 0; transition: opacity .5s var(--ease);
}
.screen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(126,34,206,.25);
  border-color: var(--purple-200);
}
.screen-card:hover::before { opacity: .35; }

/* Browser-window frame */
.screen-frame {
  background: linear-gradient(180deg,#fafafa, #ffffff);
  border-bottom: 1px solid #f1f1f4;
}
.screen-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  background: #f7f7fa;
  border-bottom: 1px solid #ececf1;
}
.screen-bar span {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.screen-bar span:nth-child(1) { background: #ff5f56; }
.screen-bar span:nth-child(2) { background: #ffbd2e; }
.screen-bar span:nth-child(3) { background: #27c93f; }
.screen-bar i {
  font-style: normal;
  margin-left: auto;
  padding: 3px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #6b7280;
  font-size: .68rem;
  font-family: 'SFMono-Regular', Menlo, monospace;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen-img {
  overflow: hidden;
  background: #fafafa;
  position: relative;
}
.screen-img::after {
  /* Sweep shimmer on hover */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.screen-card:hover .screen-img::after { transform: translateX(100%); }
.screen-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--ease), filter .5s;
}
.screen-card:hover .screen-img img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.screen-info {
  padding: 22px 22px 24px;
}
.screen-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--purple-50);
  color: var(--purple-700);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 12px;
  transition: background .35s, color .35s;
}
.screen-card:hover .screen-tag {
  background: var(--grad-purple);
  color: #fff;
}
.screen-info h3 {
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 6px;
  transition: color .35s;
}
.screen-card:hover .screen-info h3 {
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.screen-info p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

/* Responsive — collapse sticky layout */
@media (max-width: 1100px) {
  .screens-layout { grid-template-columns: 1fr; gap: 40px; }
  .screens-aside  { position: relative; top: 0; }
  .screens-stack  { gap: 40px; padding-bottom: 20px; }
  .screens-stack .screen-card { transform: translateY(40px) scale(.96); }
  .screens-stack .screen-card.visible { transform: translateY(0) scale(1); }
}
@media (max-width: 700px) {
  .screen-bar i { display: none; }
  .screens { padding: 70px 0; }
  #screenCurrent { font-size: 2.6rem; min-width: 70px; }
  .aside-cta { width: 100%; justify-content: center; }
}

/* ============= REPORTS ============= */
.reports { padding: 100px 0; }
.reports-grid, .analysis-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.reports-copy h2, .analysis-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800;
  margin-bottom: 18px;
}
.reports-copy p, .analysis-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }

.report-card {
  background: #fff; border-radius: 28px; padding: 26px;
  box-shadow: 0 30px 60px rgba(126,34,206,.15);
  border: 1px solid var(--purple-100);
  position: relative;
}
.report-card::before {
  content: ""; position: absolute; inset: -20px; border-radius: 36px;
  background: var(--purple-100); z-index: -1; opacity: .55;
}

/* === CRM dashboard widget pieces === */
.rc-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.rc-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--purple-50); color: var(--purple-700);
  font-size: .78rem; font-weight: 700;
  border: 1px solid rgba(193,75,255,.18);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(239,68,68,.65); }
  70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0);  }
  100% { box-shadow: 0 0 0 0   rgba(239,68,68,0);   }
}
.rc-filter {
  display: flex; gap: 4px;
  background: #faf5ff; padding: 3px; border-radius: 999px;
}
.rc-filter button {
  padding: 5px 12px; border-radius: 999px;
  font-size: .7rem; font-weight: 700;
  color: var(--muted);
  transition: background .25s, color .25s, box-shadow .25s;
}
.rc-filter button:hover { color: var(--purple-700); }
.rc-filter button.active {
  background: var(--grad-purple); color: #fff;
  box-shadow: 0 6px 14px rgba(160,32,224,.35);
}

/* Hero metric */
.rc-hero {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.rc-amount {
  font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.rc-trend {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  font-size: .76rem; font-weight: 700;
}
.rc-trend.up   { background: #dcfce7; color: #16a34a; }
.rc-trend.down { background: #fee2e2; color: #dc2626; }
.rc-sub { display: block; color: var(--muted); font-size: .82rem; margin: 4px 0 18px; }

/* KPI strip */
.rc-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 16px;
}
.rc-kpis > div {
  background: linear-gradient(135deg,#faf5ff,#f8f3ff);
  border-radius: 12px; padding: 10px 12px;
  border: 1px solid rgba(193,75,255,.10);
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.rc-kpis > div:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg,#f3e8ff,#fae8ff);
  border-color: var(--purple-200);
}
.rc-kpis small  { display: block; color: var(--muted); font-size: .66rem; margin-bottom: 2px; }
.rc-kpis strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.rc-kpis .up, .rc-kpis .down {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .64rem; font-weight: 700; margin-top: 2px;
}
.rc-kpis .up   { color: #16a34a; }
.rc-kpis .down { color: #ef4444; }

/* Chart enhancements */
.rc-chart { position: relative; margin-top: 6px; }
.rc-tooltip {
  position: absolute;
  top: 12%; left: 51%;
  background: var(--grad-purple);
  color: #fff;
  padding: 5px 11px; border-radius: 10px;
  font-size: .76rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(160,32,224,.4);
  animation: tipBob 3s ease-in-out infinite;
}
.rc-tooltip small { font-weight: 500; opacity: .85; margin-left: 3px; }
.rc-tooltip::after {
  content: ""; position: absolute; bottom: -5px; left: 18%;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #a020e0;
}
.rc-peak-glow {
  transform-origin: 200px 42px;
  animation: peakBreathe 2.2s ease-in-out infinite;
}
@keyframes peakBreathe {
  0%,100% { r: 14; opacity: .25; }
  50%     { r: 22; opacity: .45; }
}

/* Team avatars */
.rc-team {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid #f1f1f4;
}
.rc-avatars { display: flex; }
.rc-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  font-size: .66rem; font-weight: 700; color: #fff;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  opacity: 0;
  animation: avatarPop .6s var(--ease) forwards;
}

/* Client-logo variant — blue theme glow */
.rc-avatars-logos span {
  overflow: hidden;
  padding: 3px;
  box-shadow:
    0 4px 12px rgba(59,130,246,.28),
    0 0 0 1px rgba(14,165,233,.15);
}
.rc-avatars-logos span img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.rc-avatars-logos span:hover {
  transform: translateY(-3px) scale(1.15);
  z-index: 2;
  box-shadow:
    0 8px 20px rgba(59,130,246,.45),
    0 0 0 2px rgba(14,165,233,.35);
}
.rc-avatars-logos .more { padding: 0; color: var(--purple-700); }
.rc-avatars span:first-child { margin-left: 0; }
.rc-avatars span:nth-child(1) { animation-delay: .2s; }
.rc-avatars span:nth-child(2) { animation-delay: .35s; }
.rc-avatars span:nth-child(3) { animation-delay: .50s; }
.rc-avatars span:nth-child(4) { animation-delay: .65s; }
.rc-avatars span:nth-child(5) { animation-delay: .80s; }
.rc-avatars span:hover { transform: translateY(-3px) scale(1.1); z-index: 2; }
.rc-avatars .more { background: var(--purple-100); color: var(--purple-700); }
@keyframes avatarPop {
  from { opacity: 0; transform: translateY(8px) scale(.6); }
  to   { opacity: 1; transform: translateY(0)  scale(1);   }
}
.rc-team-text { color: var(--muted); font-size: .82rem; }

/* Floating "Deal won" notification */
.rc-notification {
  position: absolute; right: -22px; bottom: 110px;
  background: #fff; border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 22px 40px rgba(15,15,25,.18);
  border: 1px solid rgba(34,197,94,.25);
  z-index: 3;
  min-width: 200px;
  animation: notifDrift 5s ease-in-out infinite, notifIn .8s var(--ease) .6s backwards;
}
.rc-notif-badge {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff; display: grid; place-items: center;
  font-size: .85rem;
  box-shadow: 0 6px 14px rgba(34,197,94,.4);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 6px 14px rgba(34,197,94,.4), 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 6px 14px rgba(34,197,94,.4), 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 6px 14px rgba(34,197,94,.4), 0 0 0 0 rgba(34,197,94,0);  }
}
.rc-notification small { display: block; color: var(--muted); font-size: .68rem; }
.rc-notification strong { font-size: .88rem; font-weight: 700; color: var(--ink); }
@keyframes notifDrift {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes notifIn {
  from { opacity: 0; transform: translateX(40px) scale(.9); }
  to   { opacity: 1; transform: translateX(0)   scale(1);   }
}

/* Floating "Forecast" chip */
.rc-forecast {
  position: absolute; left: -22px; top: 38%;
  background: #fff; border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 22px 40px rgba(126,34,206,.20);
  border: 1px solid var(--purple-200);
  z-index: 3;
  animation: forecastDrift 6s ease-in-out infinite, notifIn .8s var(--ease) .4s backwards;
}
.rc-forecast > i {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-purple); color: #fff;
  display: grid; place-items: center;
  font-size: .9rem;
  box-shadow: 0 6px 14px rgba(160,32,224,.4);
}
.rc-forecast small  { display: block; color: var(--muted); font-size: .66rem; }
.rc-forecast strong { font-size: .9rem; font-weight: 800; color: var(--purple-700); }
@keyframes forecastDrift {
  0%,100% { transform: translateY(0)  rotate(0); }
  50%     { transform: translateY(-12px) rotate(-2deg); }
}

/* Reports copy side */
.reports-perks {
  display: grid; gap: 12px;
  margin: 26px 0 30px;
}
.reports-perks li {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-2); font-size: .98rem;
}
.reports-perks li i { color: var(--purple-600); font-size: 1.05rem; }
.reports-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1100px) {
  .rc-notification { right: 0; bottom: 80px; }
  .rc-forecast { left: 0; top: 30%; }
}
@media (max-width: 700px) {
  .rc-kpis { grid-template-columns: 1fr 1fr; }
  .rc-kpis > div:last-child { grid-column: 1 / -1; }
  .rc-notification, .rc-forecast {
    position: relative; right: auto; left: auto; top: auto; bottom: auto;
    margin-top: 14px; animation: none;
  }
}
.rc-head { display: flex; justify-content: space-between; gap: 16px; }
.rc-head h3 { font-size: 2rem; font-weight: 800; }
.rc-head p  { color: var(--muted); font-size: .9rem; }
.visitors { text-align: right; }
.visitors small { color: var(--muted); font-size: .78rem; }
.visitors strong { display: block; font-weight: 700; font-size: .95rem; }
.visitors i { color: #ef4444; }

.rc-chart { position: relative; margin-top: 14px; }
.rc-chart .tooltip {
  position: absolute; top: 30%; left: 56%;
  background: var(--purple-100); color: var(--purple-700);
  padding: 4px 12px; border-radius: 8px; font-weight: 700; font-size: .85rem;
}

.rc-foot {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 16px;
  margin-top: -8px; box-shadow: var(--shadow-sm);
  position: absolute; bottom: 8px; left: 8px;
}
.rc-foot strong { display: block; font-weight: 800; }
.rc-foot small  { color: var(--muted); font-size: .8rem; }

/* ============= ANALYSIS ============= */
.analysis { padding: 100px 0; }
.ticks { margin: 0 0 30px; display: grid; gap: 12px; }
.ticks li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); }
.ticks li i { color: var(--purple-600); }

.donut-card {
  background: #fff; border-radius: 28px; padding: 30px;
  box-shadow: 0 30px 60px rgba(126,34,206,.15);
  border: 1px solid var(--purple-100);
  position: relative;
}
.donut-card::before {
  content: ""; position: absolute; inset: -20px; border-radius: 36px;
  background: var(--purple-100); z-index: -1; opacity: .55;
}
.donut-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.donut-head small { color: var(--muted); font-size: .82rem; display: block; }
.donut-head strong { font-size: 1.5rem; font-weight: 800; }

.donut-head { position: relative; }
.donut-period {
  margin-left: auto;
  font-size: .7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: var(--purple-50); color: var(--purple-700);
  border: 1px solid rgba(193,75,255,.2);
}

.donut-wrap { position: relative; width: 230px; margin: 0 auto; }
.donut { width: 100%; height: auto; }

/* Ring animation — staggered fill on load */
.ring { stroke-dasharray: 440; stroke-dashoffset: 440; animation: ringFill 1.6s var(--ease) forwards; transition: stroke-width .3s; }
.ring-1 { animation-delay: .2s; --df: 194; }
.ring-2 { animation-delay: .5s; --df: 326; }
.ring-3 { animation-delay: .8s; --df: 392; }
.ring-4 { animation-delay: 1.1s; --df: 409; }
@keyframes ringFill { to { stroke-dashoffset: var(--df, 194); } }

.donut:hover .ring { stroke-width: 30; }

/* Center label inside the donut */
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none; text-align: center;
}
.donut-center strong {
  font-size: 1.8rem; font-weight: 800; line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.donut-center strong span { font-size: 1.1rem; }
.donut-center small {
  display: block;
  color: var(--muted); font-size: .68rem;
  margin-top: 4px;
}

/* Floating % tags positioned around the donut */
.d-tag {
  position: absolute; background: #fff; border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 700; font-size: .78rem; box-shadow: var(--shadow-sm);
  animation: tagFade .6s var(--ease) backwards;
}
.t-q { top: 20%;    right: -10%;  animation-delay: 1.2s; }
.t-d { bottom: 8%;  left: 26%;    animation-delay: 1.35s; }
.t-p { top: 38%;    left: -10%;   animation-delay: 1.5s; }
.t-w { top: 8%;     left: 18%;    animation-delay: 1.65s; }
@keyframes tagFade {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* Legend rows */
.donut-legend { margin-top: 26px; display: grid; gap: 10px; }
.donut-legend > div {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2); font-size: .92rem;
  padding: 8px 12px; border-radius: 10px;
  border: 1px solid transparent;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.donut-legend > div:hover {
  background: #faf5ff;
  border-color: var(--purple-200);
  transform: translateX(4px);
}
.lg-meta { display: flex; flex-direction: column; line-height: 1.25; }
.lg-meta span { font-weight: 600; color: var(--ink-2); }
.lg-meta small { color: var(--muted); font-size: .72rem; }
.donut-legend .ml { margin-left: auto; font-weight: 800; color: var(--ink); white-space: nowrap; }
.donut-legend .ml i { color: #16a34a; font-size: .75rem; }

.dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot.purple       { background: var(--purple-600); }
.dot.purple-light { background: var(--purple-400); }
.dot.lime         { background: var(--lime-400); }
.dot.green        { background: #22c55e; }

/* Analysis CTA row */
.analysis-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* Floating chips around the donut card */
.conv-chip, .hot-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 22px 40px rgba(15,15,25,.18);
  z-index: 3;
  animation: chipDrift 6s ease-in-out infinite, notifIn .8s var(--ease) .5s backwards;
}
.conv-chip { left: -24px; top: 38%; border: 1px solid var(--purple-200); }
.hot-chip  { right: -24px; bottom: 14%; border: 1px solid rgba(239,68,68,.25); animation-delay: -3s, 1s; }

.conv-icon, .hot-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: #fff;
  font-size: .9rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}
.conv-icon { background: var(--grad-purple); box-shadow: 0 6px 14px rgba(160,32,224,.4); }
.hot-icon  {
  background: linear-gradient(135deg, #ef4444, #ec4899);
  box-shadow: 0 6px 14px rgba(239,68,68,.45);
  animation: pulseDot 1.8s infinite;
}

.conv-chip small, .hot-chip small { display: block; color: var(--muted); font-size: .68rem; }
.conv-chip strong { font-size: .9rem; font-weight: 800; color: #16a34a; }
.hot-chip  strong { font-size: .85rem; font-weight: 800; color: var(--ink); }

@keyframes chipDrift {
  0%,100% { transform: translateY(0)  rotate(0); }
  50%     { transform: translateY(-10px) rotate(-2deg); }
}

/* Responsive chip placement */
@media (max-width: 1100px) {
  .conv-chip { left: 0; top: 30%; }
  .hot-chip  { right: 0; bottom: 8%; }
}
@media (max-width: 700px) {
  .conv-chip, .hot-chip {
    position: relative; left: auto; right: auto; top: auto; bottom: auto;
    margin-top: 14px; animation: none;
  }
}

/* ============= STATS ============= */
.stats { padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
  background: linear-gradient(135deg, var(--ink) 0%, #2a1245 100%);
  padding: 50px 40px; border-radius: 32px;
  position: relative; overflow: hidden;
}
.stats-grid::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(193,75,255,.4), transparent 60%);
}
.stat-card { text-align: center; position: relative; z-index: 1; }
.stat-card h3 {
  font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800;
  background: linear-gradient(135deg,#fff,var(--lime-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card p { color: rgba(255,255,255,.7); margin-top: 8px; }

/* ============= HOW IT WORKS ============= */
.how { padding: 100px 0; }
.timeline {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 50px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-300, var(--purple-200)), transparent);
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; text-align: center;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--purple-200); }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-purple); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 24px rgba(160,32,224,.35);
  position: relative; z-index: 1;
}
.step h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--muted); }

/* ============= INTEGRATIONS ============= */
.integrations { padding: 100px 0; }
.integration-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 18px;
}
.i-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 24px 14px; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  cursor: pointer;
}
.i-card i { font-size: 1.8rem; color: var(--purple-600); margin-bottom: 8px; }
.i-card span { display: block; font-weight: 600; font-size: .9rem; color: var(--ink-2); }
.i-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple-200);
  box-shadow: 0 18px 40px rgba(126,34,206,.18);
}

/* ============= TESTIMONIALS ============= */
.testimonials { padding: 100px 0; background: var(--bg-soft); position: relative; }
.testimonials::before, .testimonials::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35;
}
.testimonials::before { width: 360px; height: 360px; top: 10%; left: -100px; background: var(--purple-200); }
.testimonials::after  { width: 360px; height: 360px; bottom: 10%; right: -100px; background: var(--lime-300); }

/* Brand purple gradient — used for testimonials "growing teams"
   and clients "leading brands". Class kept as `.gradient-text-blue`
   for backward compatibility, but the gradient is purple-themed. */
.gradient-text-blue {
  background: linear-gradient(135deg, #c14bff 0%, #a020e0 50%, #7e22ce 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Orange gradient — used for "Our happy clients" */
.gradient-text-orange {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Compact clients heading (no eyebrow, no subtitle) */
.clients-head { margin-bottom: 40px; }
.clients-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

/* ============= HAPPY CLIENTS MARQUEE ============= */
.clients {
  padding: 90px 0 70px;
  position: relative;
}
.clients .eyebrow i { color: #ef4444; margin-right: 6px; }

.clients-marquee {
  margin-top: 50px;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.clients-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* Left-to-right scroll (content moves rightward) */
  animation: clientsScroll 80s linear infinite reverse;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-card {
  flex-shrink: 0;
  width: 180px;
  height: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  overflow: hidden;          /* clip any logo overflow */
  box-shadow: 0 4px 14px rgba(15,15,25,.04);
  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}
.client-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .4s var(--ease);
}
.client-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-200);
  box-shadow: 0 18px 36px rgba(126,34,206,.18);
}
.client-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .client-card { width: 150px; height: 80px; padding: 12px 16px; }
  .clients-track { gap: 16px; animation-duration: 60s; }
}

/* === Auto-scrolling testimonial marquee === */
.t-marquee {
  margin-top: 40px;
  overflow: hidden;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.t-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: tMarquee 80s linear infinite;
}
.t-marquee:hover .t-marquee-track { animation-play-state: paused; }
@keyframes tMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Card */
.t-card {
  flex: 0 0 360px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(15,15,25,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(126,34,206,.18);
  border-color: var(--purple-200);
}

/* Top row: avatar + name + Google */
.t-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.t-card-head strong { display: block; font-weight: 700; font-size: .98rem; line-height: 1.2; }
.t-card-head small  { color: var(--muted); font-size: .78rem; }
.t-google {
  margin-left: auto;
  color: #4285f4;
  font-size: 1.4rem;
}

/* Stars + verified */
.t-stars {
  display: flex; align-items: center; gap: 4px;
  color: #f5b400;
  font-size: .85rem;
  margin-bottom: 12px;
}
.t-verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: #1a73e8;
  color: #fff;
  border-radius: 50%;
  font-size: .5rem;
  margin-left: 6px;
}

.t-card p {
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

/* ============= PRICING ============= */
.pricing { padding: 100px 0; }
.price-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.price-card {
  background: #fff; border-radius: 24px; padding: 36px 28px;
  border: 1px solid var(--line); position: relative;
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(126,34,206,.2); border-color: var(--purple-200); }
.price-card.featured {
  border: 2px solid var(--purple-600);
  background: linear-gradient(180deg,#fff,#faf5ff);
  box-shadow: 0 30px 70px rgba(160,32,224,.22);
  transform: translateY(-10px);
}
.price-card.featured::before {
  content: ""; position: absolute; inset: -2px; border-radius: 24px;
  background: var(--grad-purple);
  z-index: -1; opacity: .15;
}
.price-card h3 { font-size: 1.4rem; font-weight: 800; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 22px; }
.price-card .price span { font-size: 2.6rem; font-weight: 800; }
.price-card .price small { color: var(--muted); }
.price-card ul { display: grid; gap: 10px; margin-bottom: 26px; }
.price-card li { display: flex; align-items: center; gap: 10px; color: var(--ink-2); }
.price-card li i { color: var(--purple-600); }
.price-card .btn { width: 100%; justify-content: center; }
.ribbon {
  position: absolute; top: -14px; right: 22px;
  background: var(--grad-purple); color: #fff;
  padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700;
  box-shadow: 0 10px 20px rgba(160,32,224,.4);
}

/* ============= FAQ ============= */
.faq { padding: 100px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 0 22px; transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: var(--purple-200); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--ink); cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { transition: transform .3s; color: var(--purple-600); }
.faq details[open] summary i { transform: rotate(45deg); }
.faq p { padding-bottom: 20px; color: var(--muted); }

/* ============= CONTACT US ============= */
.contact {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(126,34,206,.08);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,75,255,.10), transparent 70%);
  pointer-events: none;
}
.contact-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-intro {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 26px;
}

/* === Get-in-touch list === */
.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #faf5ff;
  border-radius: 14px;
  border: 1px solid var(--purple-100);
  transition: transform .35s var(--ease), background .35s, border-color .35s, box-shadow .35s;
}
.contact-list li:hover {
  transform: translateX(4px);
  background: #f3e8ff;
  border-color: var(--purple-200);
  box-shadow: 0 10px 24px rgba(126,34,206,.12);
}
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-purple);
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(160,32,224,.35);
}
.ci-icon.green {
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 6px 14px rgba(34,197,94,.35);
}
.contact-list li small {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  margin-bottom: 2px;
}
.contact-list li a {
  font-weight: 700;
  color: var(--ink);
  font-size: .96rem;
  transition: color .25s;
}
.contact-list li a:hover { color: var(--purple-700); }

/* Follow us */
.contact-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-social > small {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}
.cs-icons { display: flex; gap: 10px; }
.cs-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: #f7f8fb;
  color: var(--ink-2);
  font-size: .9rem;
  transition: background .3s, color .3s, transform .3s var(--ease), box-shadow .3s;
}
.cs-icons a:hover {
  background: var(--grad-purple);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(160,32,224,.4);
}

/* === Enquiry form === */
.contact-form .form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #15803d;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-form .form-note i { font-size: 1rem; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cf-field {
  display: flex;
  flex-direction: column;
}
.cf-field label {
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.cf-field label .req {
  color: var(--purple-600);
  margin-left: 2px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: .94rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #9ca3af; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--purple-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(160,32,224,.15);
}
.cf-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23a020e0' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.cf-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.cf-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 20px;
  margin-top: 18px;
}
.cf-submit i.fa-whatsapp { font-size: 1.2rem; }
.cf-fine {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: .8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 22px; }
}

/* ============= CTA BANNER ============= */
.cta-banner { padding: 100px 0; }
.cta-inner {
  background: linear-gradient(135deg, #6b21a8 0%, #a020e0 50%, #c14bff 100%);
  border-radius: 36px; padding: 70px 50px; text-align: center;
  position: relative; overflow: hidden;
  color: #fff;
}
.cta-shine {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(180,242,74,.25), transparent 50%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800; color: #fff; }
.cta-inner p { color: rgba(255,255,255,.85); margin: 14px 0 28px; font-size: 1.1rem; }
.cta-inner .hero-form { margin-inline: auto; max-width: 500px; }
.cta-fine { display: block; margin-top: 16px; color: rgba(255,255,255,.75); font-size: .85rem; }

/* ============= FOOTER ============= */
.footer {
  background: #0d0d12;
  color: #d1d5db;
  padding: 80px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 40px;
}
.footer .logo-img.footer-logo-img {
  height: 120px; width: auto; filter: none;
  margin-bottom: 6px;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.footer a {
  display: block; color: #9ca3af; padding: 6px 0;
  transition: color .3s, transform .3s;
}
.footer a:hover { color: var(--lime-400); transform: translateX(4px); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: #1a1a23; color: #d1d5db;
  padding: 0;
  transition: .3s;
}
.socials a:hover {
  background: var(--grad-purple); color: #fff; transform: translateY(-3px);
}
.news-form { display: flex; gap: 6px; margin-top: 10px; }
.news-form input {
  flex: 1; padding: 10px 14px; border-radius: 999px;
  background: #1a1a23; border: 1px solid #2a2a35; color: #fff;
  outline: none;
}
.news-form input::placeholder { color: #6b7280; }
.news-form .btn { padding: 10px 16px; }

/* === Secure Payments row === */
.payments-row {
  margin-top: 50px; padding: 22px 0;
  border-top: 1px solid #1a1a23;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.secure-payments {
  display: inline-flex; align-items: center; gap: 10px;
  color: #f3f4f6; font-weight: 700; font-size: .92rem;
}
.secure-payments i { color: #f59e0b; font-size: 1rem; }

.payment-logos {
  display: inline-flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.pay-logo {
  display: inline-flex; align-items: center; gap: 6px;
  background: #15151c;
  border: 1px solid #2a2a35;
  border-radius: 8px;
  padding: 0 14px; height: 40px;
  font-size: .85rem; font-weight: 700;
  color: #f3f4f6;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.pay-logo:hover {
  transform: translateY(-3px);
  border-color: var(--purple-400);
  background: #1a1a23;
}

/* Razorpay — white card */
.pay-razorpay {
  background: #fff; color: #0f172a;
  border-color: #e5e7eb;
}
.pay-razorpay:hover { background: #fff; }
.pay-razorpay strong {
  font-family: var(--font-display);
  font-weight: 800; color: #0a3e8c; font-size: .9rem;
}
.rzp-mark { display: inline-flex; }

/* UPI — rainbow gradient */
.pay-upi {
  flex-direction: column; gap: 0;
  align-items: flex-start; padding: 4px 12px;
}
.upi-text {
  background: linear-gradient(90deg,#ff7a00 0%,#ffb800 25%,#20bdbe 55%,#2196f3 80%,#9c27b0 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem; line-height: 1;
}
.pay-upi small {
  font-size: .54rem; color: #6b7280;
  letter-spacing: .12em; font-weight: 600; margin-top: 2px;
}

/* Mastercard */
.pay-master i { font-size: 1.5rem; color: #ff5f00; }
.pay-master strong {
  font-family: var(--font-display);
  font-weight: 700; font-size: .82rem;
  color: #e5e7eb;
}

/* VISA — deep blue */
.pay-visa { background: #1a1f5c; border-color: #2a3070; padding: 0 16px; }
.pay-visa:hover { background: #1a1f5c; }
.visa-text {
  font-family: var(--font-display);
  font-style: italic; font-weight: 900;
  font-size: 1.1rem; letter-spacing: .06em;
  color: #fff;
}

/* Google Pay */
.pay-gpay { gap: 7px; padding: 0 12px; }
.g-mark {
  width: 20px; height: 20px; border-radius: 50%;
  background: #4285f4; color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: .75rem;
  flex-shrink: 0;
}
.pay-gpay small {
  font-size: .62rem; line-height: 1.1;
  color: #e5e7eb; font-weight: 600;
}

/* Paytm */
.pay-paytm strong {
  font-family: var(--font-display);
  font-weight: 800; font-size: .95rem;
  color: #e5e7eb;
}
.pay-paytm .tm { color: #00baf2; }

/* RuPay */
.pay-rupay {
  font-family: var(--font-display);
  font-weight: 800; font-size: .95rem;
}
.ru-mark { color: #f6921e; }
.pay-mark { color: #009e60; }

@media (max-width: 700px) {
  .payments-row { justify-content: center; }
  .pay-logo { height: 36px; font-size: .78rem; padding: 0 10px; }
}

/* === Footer bottom (copyright + legal links) === */
.footer-bottom {
  padding-top: 22px; border-top: 1px solid #1a1a23;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #6b7280;
}
.footer-bottom a { display: inline; color: #9ca3af; padding: 0; }
.footer-bottom a:hover { color: var(--lime-400); transform: none; }

/* ============= BACK TO TOP ============= */
.to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-purple); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 26px rgba(160,32,224,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: .35s var(--ease);
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* ============= REVEAL ANIMATIONS ============= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal[data-reveal="left"]  { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal.visible { opacity: 1; transform: translate(0,0); }

/* Tilt prep */
.tilt { transform-style: preserve-3d; transition: transform .25s var(--ease); will-change: transform; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1100px) {
  .hero-grid, .reports-grid, .analysis-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 520px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .integration-grid { grid-template-columns: repeat(4,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .t-card { flex: 0 0 320px; }
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; background: #fff;
    padding: 24px; gap: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transform: translateY(-20px); opacity: 0; visibility: hidden;
    transition: .35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .hamburger { display: flex; }
  .nav-actions .btn-ghost { display: none; }
  .features-panel { padding: 50px 24px; }
  .features-stats { gap: 16px; padding: 14px 18px; border-radius: 22px; }
  .features-stats .divider { display: none; }
  .features-stats strong { font-size: 1.2rem; }
  .features-pills li { font-size: .76rem; padding: 6px 12px; }
  .feature-grid, .price-grid, .timeline { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .t-card { flex: 0 0 290px; padding: 20px; }
  .t-marquee-track { gap: 16px; animation-duration: 60s; }
  .price-card.featured { transform: none; }
  .cta-inner { padding: 50px 24px; }

  /* Reduce floating cards on mobile */
  .card-activity, .card-daily { left: 0; right: auto; }
  .card-sales, .card-users { right: 0; left: auto; }
  .float-card { transform: scale(.85); }
}

@media (max-width: 480px) {
  .container { width: 94%; }
  .hero { padding: 30px 0 60px; }
  .logo-img { height: 72px; }
  .footer .logo-img.footer-logo-img { height: 60px; }
  .hero-form { flex-wrap: wrap; padding: 12px; border-radius: 18px; }
  .hero-form input { width: 100%; padding: 10px 14px; }
  .hero-form .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(2,1fr); }
  .hero-visual { min-height: 440px; transform: scale(.85); transform-origin: top center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
