/* ═══════════════════════════════════════════════════════
   VRINDA AI ANALYTICS — style.css
   Light Professional Theme | Blue + Cyan
═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:        #faf8ff;
  --bg2:       #f0ebff;
  --bg3:       #e9e0ff;
  --blue:      #6d28d9;
  --cyan:      #7c3aed;
  --glow:      #6d28d9aa;
  --glow2:     #7c3aed66;
  --white:     #1e1b4b;
  --muted:     #374151;
  --border:    rgba(109,40,217,0.2);
  --glass:     rgba(109,40,217,0.06);
  --glass2:    rgba(109,40,217,0.12);
  --red:       #dc2626;
  --green:     #16a34a;
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-ui:   'Inter', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #1e1b4b;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CANVAS ── */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  display: block;
}

/* ── CUSTOM CURSOR: disabled — handled in JS only ── */

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ebff; }
::-webkit-scrollbar-thumb { background: #6d28d9; border-radius: 4px; }

/* ── SECTION UTILITIES ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 5vw;
}
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 4px;
  color: #6d28d9;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 1;
  font-weight: 700;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1e1b4b;
}
.section-sub {
  color: #374151;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 56px;
  max-width: 540px;
}
.highlight {
  background: linear-gradient(90deg, #6d28d9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right, .reveal-float {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
/* JS adds .js-loaded to body, then animations activate */
.js-loaded .reveal        { opacity: 0; transform: translateY(40px); }
.js-loaded .reveal-left   { opacity: 0; transform: translateX(-50px); }
.js-loaded .reveal-right  { opacity: 0; transform: translateX(50px); }
.js-loaded .reveal-float  { opacity: 0; transform: translateY(20px); }
.js-loaded .reveal.visible,
.js-loaded .reveal-left.visible,
.js-loaded .reveal-right.visible,
.js-loaded .reveal-float.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 24px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px var(--cyan);
}
.btn-primary.full { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: #6d28d9;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--cyan);
  background: var(--glass);
  transform: translateY(-2px);
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5vw;
  background: rgba(250,248,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(250,248,255,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: #1e1b4b;
  display: flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: 2px;
}
.logo-v { color: #6d28d9; font-weight: 900; }
.logo-sub {
  font-size: 14px;
  letter-spacing: 3px;
  color: #6d28d9;
  margin-left: 6px;
  opacity: 0.9;
  align-self: center;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #1e1b4b;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: color 0.25s;
}
.nav-links a:hover { color: #6d28d9; }
.nav-links .nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 0 16px var(--glow);
}
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--cyan);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { max-width: 800px; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(109,40,217,0.3);
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: #6d28d9;
  margin-bottom: 28px;
  background: var(--glass);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #1e1b4b;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.hero-line1 {
  display: block;
  white-space: nowrap;
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 900;
  color: #1e1b4b;
}
.hero-title-sub {
  background: linear-gradient(90deg, #6d28d9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  white-space: nowrap;
  font-size: clamp(22px, 3.5vw, 54px);
  font-weight: 900;
}
.typewriter-line {
  display: block;
  min-height: 1.15em;
  line-height: 1.15;
}
.typewriter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.3em;
  min-width: 10px;
}
#typewriter {
  display: inline;
  color: #7c3aed;
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 900;
}
.cursor-blink {
  display: inline-block;
  color: #7c3aed;
  animation: blink 0.9s infinite;
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 52px);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc {
  font-size: 17px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
  font-weight: 600;
  text-align: center;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  color: #1e1b4b;
  background: linear-gradient(90deg, #6d28d9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-unit { font-size: 22px; }
.stat-label { font-size: 12px; color: #374151; font-weight: 700; letter-spacing: 0.5px; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  max-width: 540px;
  position: relative;
}
.dashboard-mockup {
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(14,165,233,0.12), 0 30px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(109,40,217,0.06);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green  { background: #22c55e; }
.mockup-title {
  font-family: var(--font-head);
  font-size: 11px;
  color: #1f2937;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 8px;
}
.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.mock-kpis { display: flex; gap: 12px; }
.mock-kpi {
  flex: 1;
  background: rgba(109,40,217,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.kpi-val {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  color: #1e1b4b;
  font-weight: 700;
}
.kpi-lbl { font-size: 10px; color: #374151; display: block; font-weight: 600; }
.kpi-up { font-size: 11px; color: var(--green); display: block; margin-top: 4px; }
.mock-chart {
  background: rgba(109,40,217,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  height: 110px;
  overflow: hidden;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--blue) 0%, rgba(14,165,233,0.2) 100%);
  border-radius: 3px 3px 0 0;
  opacity: 0.5;
  transition: var(--transition);
}
.bar.active {
  background: linear-gradient(180deg, var(--cyan) 0%, rgba(34,211,238,0.2) 100%);
  opacity: 1;
  box-shadow: 0 0 12px var(--cyan);
}
.chart-line-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.chart-line-svg svg { width: 100%; height: 100%; }
.line-glow {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-opacity: 0.15;
  filter: blur(3px);
}
.line-main {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s ease forwards 0.5s;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.mock-table { display: flex; flex-direction: column; gap: 6px; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #374151;
}
.mock-row.header {
  color: #6d28d9;
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.mock-row:not(.header):hover { background: var(--glass); }
.tag {
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}
.tag.green { background: rgba(34,197,94,0.15); color: var(--green); }
.tag.blue  { background: rgba(14,165,233,0.15); color: var(--blue); }

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  color: #1e1b4b;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.floating-card i { color: var(--cyan); }
.fc1 { top: -20px; right: -30px; animation: floatA 4s ease-in-out infinite; }
.fc2 { bottom: 80px; left: -40px; animation: floatB 5s ease-in-out infinite 1s; }
.fc3 { bottom: -20px; right: 20px; animation: floatA 4.5s ease-in-out infinite 0.5s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(10px); }
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6d28d9;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: var(--font-head);
}
.scroll-arrow {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.6); }
}

/* ═══════════════════════ PROBLEM/SOLUTION ═══════════════════════ */
.problem-solution {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
}
.ps-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.ps-card.problem { border-color: rgba(239,68,68,0.3); }
.ps-card.solution { border-color: rgba(34,197,94,0.3); }
.ps-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.ps-card-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #1e1b4b;
}
.ps-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.ps-icon.danger { background: rgba(239,68,68,0.15); color: var(--red); }
.ps-icon.success { background: rgba(34,197,94,0.15); color: var(--green); }
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #1e1b4b;
  font-weight: 800;
  padding: 10px 0;
  border-bottom: 1px solid rgba(109,40,217,0.1);
  line-height: 1.5;
}
.ps-list li i { margin-top: 3px; flex-shrink: 0; font-size: 13px; }
.ps-card.problem .ps-list li i { color: var(--red); }
.ps-card.solution .ps-list li i { color: var(--green); }
.ps-result {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
}
.danger-box  { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.25); color: #b91c1c; font-weight: 700; }
.success-box { background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.25); color: #15803d; font-weight: 700; }
.ps-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--blue);
  font-size: 28px;
  gap: 8px;
}

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6d28d9, #a855f7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--blue);
  background: var(--glass2);
  box-shadow: 0 0 40px rgba(14,165,233,0.1);
}
.sc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(109,40,217,0.12), rgba(124,58,237,0.08));
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6d28d9;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon {
  background: linear-gradient(135deg, rgba(14,165,233,0.25), rgba(34,211,238,0.15));
  color: var(--cyan);
  box-shadow: 0 0 20px var(--glow2);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e1b4b;
}
.service-card p {
  font-size: 14px;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 20px;
}
.sc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-tags span {
  padding: 4px 10px;
  border: 1px solid rgba(109,40,217,0.25);
  border-radius: 50px;
  font-size: 13px;
  color: #6d28d9;
  font-weight: 900;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}

/* ═══════════════════════ INDUSTRIES ═══════════════════════ */
.industries { background: var(--bg2); border-top: 1px solid var(--border); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.industry-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.industry-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 36px rgba(34,211,238,0.18);
  transform: translateY(-6px);
}
.industry-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e8eeff;
}
.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-img-wrap img {
  transform: scale(1.1);
}
.industry-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,7,18,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.industry-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.88);
  padding: 14px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}
.industry-card:hover .industry-overlay { transform: translateY(0); }
.industry-overlay p {
  font-size: 12.5px;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  line-height: 1.65;
  margin: 0;
}
.industry-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg3);
  flex-shrink: 0;
}
.industry-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(34,211,238,0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--cyan);
  flex-shrink: 0;
}
.industry-info h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: #1e1b4b;
  line-height: 1.3;
  padding-left: 2px;
}

/* ═══════════════════════ WORKFLOW ═══════════════════════ */
.workflow { background: var(--bg); }
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
.wf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.wf-num {
  font-family: var(--font-head);
  font-size: 13px;
  color: #6d28d9;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.wf-icon {
  width: 64px; height: 64px;
  background: rgba(109,40,217,0.1);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6d28d9;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.wf-step:hover .wf-icon {
  background: linear-gradient(135deg, rgba(109,40,217,0.2), rgba(124,58,237,0.15));
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 28px var(--glow2);
}
.wf-step h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1e1b4b;
  letter-spacing: 0.5px;
}
.wf-step p { font-size: 13px; color: #1f2937; line-height: 1.6; font-weight: 700; }

/* ═══════════════════════ COMPARE ═══════════════════════ */
.compare { background: var(--bg2); border-top: 1px solid var(--border); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.compare-card.bad  { background: #fff5f5; border-color: rgba(239,68,68,0.2); box-shadow: 0 0 40px rgba(239,68,68,0.06); }
.compare-card.good {
  background: linear-gradient(135deg, rgba(109,40,217,0.06), rgba(124,58,237,0.04));
  border-color: var(--border);
  box-shadow: 0 0 40px rgba(14,165,233,0.08);
}
.compare-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.compare-header i { font-size: 22px; }
.compare-card.bad .compare-header i  { color: var(--red); }
.compare-card.good .compare-header i { color: var(--cyan); }
.compare-header h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  color: #1e1b4b;
  letter-spacing: 0.5px;
}
.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #1e1b4b;
  font-weight: 800;
  padding: 10px 0;
  border-bottom: 1px solid rgba(109,40,217,0.1);
}
.compare-card ul li i { margin-top: 3px; flex-shrink: 0; }
.compare-card.bad  ul li i { color: var(--red); }
.compare-card.good ul li i { color: var(--green); }
.compare-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(109,40,217,0.08);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: var(--radius);
  font-size: 14px;
  color: #1e1b4b;
  line-height: 1.5;
}
.compare-note.danger-note {
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.25);
  color: #991b1b;
  font-weight: 700;
}
.compare-vs {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  padding: 0 16px;
}

/* ═══════════════════════ TOOLS ═══════════════════════ */
.tools { background: var(--bg); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.tool-badge {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.tool-badge:hover {
  border-color: var(--cyan);
  background: var(--glass2);
  box-shadow: 0 0 24px rgba(34,211,238,0.1);
  transform: translateY(-4px);
}
.tool-badge i {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}
.tool-badge:hover i { color: var(--cyan); }
.tool-badge span {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: #1e1b4b;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.tool-badge p {
  font-size: 11px;
  color: #1f2937;
  font-weight: 700;
  line-height: 1.4;
}

/* ═══════════════════════ FOUNDER ═══════════════════════ */
.founder {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.founder-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder-img-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(30px);
  z-index: 0;
}
.founder-img {
  width: 280px; height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 40px rgba(14,165,233,0.2);
}
.founder-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #000;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 1px;
}
.founder-info h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: #1e1b4b;
  margin-bottom: 8px;
}
.founder-role {
  font-size: 15px;
  color: #6d28d9;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.founder-bio {
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.fw-label {
  font-size: 13px;
  color: #1f2937;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-head);
  display: block;
  margin-bottom: 14px;
}
.fw-companies { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.fw-company {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(109,40,217,0.06);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  color: #1e1b4b;
  transition: var(--transition);
}
.fw-company:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.fw-company i { color: var(--blue); font-size: 13px; }
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0a66c2;
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,102,194,0.4);
}

/* ═══════════════════════ IMPACT ═══════════════════════ */
.impact {
  background: linear-gradient(135deg, #ede9fe 0%, #f0ebff 100%);
  border-top: 1px solid rgba(109,40,217,0.15);
  border-bottom: 1px solid rgba(109,40,217,0.15);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.impact-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.impact-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
  color: #1e1b4b;
}
.impact-inner p {
  font-size: 17px;
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 56px;
  line-height: 1.7;
}
.impact-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.is {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.is:last-child { border-right: none; }
.is span {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.is p {
  font-size: 12px;
  color: #1f2937;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.ci-item:hover .ci-icon {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px var(--glow2);
}
.ci-item div { display: flex; flex-direction: column; gap: 4px; }
.ci-item div > *:not(span) { font-size: 15px; font-weight: 800; color: #1e1b4b; font-family: var(--font-body); }
.ci-item span { font-size: 11px; color: #6d28d9; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-head); }
.ci-item a {
  font-size: 15px;
  color: #1e1b4b;
  font-weight: 800;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 0.25s;
}
.ci-item a:hover { color: var(--cyan); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #1e1b4b;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: #6b7280; font-weight: 600; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--glass2);
  box-shadow: 0 0 20px rgba(109,40,217,0.12);
}
.form-group select option { background: #ffffff; color: #1e1b4b; font-weight: 700; }
.form-group select { color: #1e1b4b; font-weight: 700; }
.form-group textarea { resize: vertical; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: #f0ebff;
  border-top: 1px solid var(--border);
  padding: 60px 5vw 40px;
  position: relative;
  z-index: 1;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: #1e1b4b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.footer-logo .logo-sub {
  font-size: 14px;
  letter-spacing: 3px;
  color: #6d28d9;
  opacity: 0.9;
  font-weight: 600;
  align-self: center;
}
.footer-tagline {
  font-size: 14px;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.footer-divider { width: 60px; height: 2px; background: linear-gradient(90deg, #6d28d9, #a855f7); margin: 16px auto 0; border-radius: 2px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 40px;
}
.footer-links a {
  font-size: 13px;
  color: #1e1b4b;
  font-weight: 700;
  transition: color 0.25s;
  font-family: var(--font-head);
  letter-spacing: 1px;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #1e1b4b;
  font-weight: 800;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── DOWNLOAD VOUCHER BUTTON ── */
.btn-voucher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 24px var(--glow);
  margin: 16px auto 16px;
  display: inline-flex;
}
.btn-voucher:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px var(--cyan);
  color: #fff;
}
.btn-voucher i { font-size: 16px; }

/* ── 3D TILT CARD ── */
.tilt-card { transform-style: preserve-3d; }
.tilt-card .tilt-inner { transform: translateZ(20px); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1200px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .workflow-steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .wf-connector { display: none; }
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; min-height: auto; padding-bottom: 80px; }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 100%; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow { transform: rotate(90deg); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { text-align: center; }
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .fw-companies { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .floating-card { display: none; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}
@media (max-width: 600px) {
  section { padding: 70px 5vw; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: 1fr; }
  .impact-stats { flex-direction: column; gap: 32px; }
  .is { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .is:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-visual { width: 100%; }
  .dashboard-mockup { font-size: 12px; }
}

/* ── FONT AWESOME FALLBACK (if CDN blocked) ──
   Icons show as colored squares with text — better than broken boxes */
.fas, .fab, .far, .fa {
  font-style: normal;
}
/* If FA loads, these do nothing. If blocked, elements still layout correctly */

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.whatsapp-float i { line-height: 1; }

/* tooltip */
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  border: 1px solid rgba(37,211,102,0.3);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111;
  border-right: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}


/* ── CONTACT ICONS COLORED ── */
.ci-icon { transition: transform 0.3s ease; }
.ci-item:hover .ci-icon { transform: scale(1.1); }
.ci-email   { background: rgba(234,67,53,0.1)  !important; border-color: rgba(234,67,53,0.25)  !important; }
.ci-email i { color: #ea4335 !important; }
.ci-whatsapp   { background: rgba(37,211,102,0.1) !important; border-color: rgba(37,211,102,0.25) !important; }
.ci-whatsapp i { color: #25d366 !important; }
.ci-phone   { background: rgba(109,40,217,0.1) !important; border-color: rgba(109,40,217,0.25) !important; }
.ci-phone i { color: #6d28d9 !important; }
.ci-website   { background: rgba(8,145,178,0.1) !important; border-color: rgba(8,145,178,0.25) !important; }
.ci-website i { color: #0891b2 !important; }
.ci-linkedin   { background: rgba(10,102,194,0.1) !important; border-color: rgba(10,102,194,0.25) !important; }
.ci-linkedin i { color: #0a66c2 !important; }

/* ── CONTACT VALUES BOLD ── */
.ci-label {
  font-size: 11px !important;
  color: #6d28d9 !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-family: var(--font-head) !important;
}
.ci-value {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #1e1b4b !important;
  font-family: var(--font-body) !important;
}
.ci-value:hover { color: #6d28d9 !important; }

.scroll-hint { display: none !important; }