﻿/* ============================================================
   AUTOEIGHT â€” Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #ffffff;
  --dark:         #f7f7f8;
  --surface:      #f0f0f2;
  --card:         #ffffff;
  --border:       #e0e0e4;
  --border-light: #d4d4d8;
  --white:        #111111;
  --off-white:    #222222;
  --muted:        #71717a;
  --subtle:       #a1a1aa;

  --purple:       #6d4de6;
  --purple-light: #7c5cfc;
  --purple-dim:   rgba(109, 77, 230, 0.10);
  --purple-glow:  rgba(109, 77, 230, 0.25);

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --font: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
  overflow: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video,
iframe {
  height: auto;
}

h1,
h2,
h3,
h4,
p,
li,
a,
span {
  overflow-wrap: anywhere;
}

.two-col,
.tier-grid,
.dashboard-body,
.sales-dashboard-grid,
.sales-demo-layout,
.sales-demo-stat-row,
.sales-demo-grid,
.sales-pipeline-columns,
.email-demo-wrap,
.email-app-body,
.bp-card-grid,
.bp-stats-grid {
  min-width: 0;
}

.content-block,
.feature-card,
.tier-card,
.hero-dashboard,
.sales-demo-panel,
.sales-demo-stat,
.email-demo-note,
.email-app-main,
.workflow-builder-wrap,
.tool-card,
.article-wrapper {
  min-width: 0;
}

/* â”€â”€ UTILITY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section,
nav,
.container,
.page-section-inner,
.logo-timeline-section,
.logo-timeline-rows,
.steps-grid {
  max-width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--purple-light);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 0 var(--purple-glow);
}

.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 8px 32px var(--purple-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-dim);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 0.98rem;
  border-radius: 10px;
}

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

nav {
  position: fixed;
  top: 10px;
  left: 20px;
  right: 20px;
  z-index: 200;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  max-width: calc(100vw - 40px);
  overflow: visible;
  transition: box-shadow 0.3s, border-color 0.3s;
}

nav.scrolled {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.10);
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  margin-top: 0;
  margin-left: 0;
}

/* â”€â”€ NAV MENU & DROPDOWNS â”€â”€ */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
}

.nav-item > a:hover,
.nav-item.active > a {
  color: var(--white);
  background: rgba(0, 0, 0, 0.05);
}

.nav-item .chevron {
  font-size: 0.62rem;
  opacity: 0.5;
  transition: transform 0.22s;
}

.nav-item.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 299;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 210px;
  max-width: min(92vw, 280px);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 300;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 7px;
  transition: all 0.15s;
  white-space: nowrap;
}

.dropdown li a:hover {
  color: var(--white);
  background: rgba(0, 0, 0, 0.04);
}

.dropdown li a i {
  width: 16px;
  text-align: center;
  color: var(--purple-light);
  font-size: 0.82rem;
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #222222;
  border-radius: 2px;
  transition: all 0.28s ease;
}

.mobile-nav-sheet {
  display: none;
}

.mobile-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 5% 72px;
  overflow: hidden;
}

/* Layered background */
.hero-bg-base {
  position: absolute;
  inset: 0;
  background: var(--black);
}

/* Canvas particle network */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Noise texture */
.hero-bg-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 20%, transparent 100%);
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 3;
}

.hero-orb-1 {
  width: 650px;
  height: 450px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.32) 0%, transparent 70%);
  animation: orb-drift-center 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.18) 0%, transparent 70%);
  animation: orb-drift-plain 11s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 5%;
  background: radial-gradient(ellipse, rgba(160, 122, 255, 0.15) 0%, transparent 70%);
  animation: orb-drift-plain 9s ease-in-out infinite alternate;
}

.hero-orb-4 {
  width: 260px;
  height: 260px;
  top: 55%;
  left: 18%;
  background: radial-gradient(ellipse, rgba(160, 122, 255, 0.13) 0%, transparent 70%);
  animation: orb-drift-plain 13s ease-in-out infinite alternate;
}

.hero-orb-5 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: 15%;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.12) 0%, transparent 70%);
  animation: orb-drift-plain 10s ease-in-out infinite alternate-reverse;
}

.hero-orb-6 {
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: 12%;
  background: radial-gradient(ellipse, rgba(140, 100, 255, 0.14) 0%, transparent 70%);
  animation: orb-drift-plain 12s ease-in-out infinite alternate;
}

@keyframes orb-drift-center {
  from { transform: translate(0, 0) translateX(-50%); }
  to   { transform: translate(20px, 30px) translateX(-50%); }
}

@keyframes orb-drift-plain {
  from { transform: translate(0, 0); }
  to   { transform: translate(-15px, 20px); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.28);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 26px;
}

.hero-headline em {
  font-style: normal;
  background: linear-gradient(130deg, #6d4de6 0%, #7c5cfc 50%, #9b7dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--subtle);
  font-weight: 500;
}

.hero-trust-item i {
  color: var(--purple-light);
  font-size: 0.85rem;
}

/* Hero dashboard mockup */
.hero-visual {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero-dashboard {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(109, 77, 230, 0.08),
    0 40px 120px rgba(0, 0, 0, 0.08),
    0 0 80px rgba(109, 77, 230, 0.06);
}

.dashboard-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red   { background: #ff5f57; }
.dot-amber { background: #febc2e; }
.dot-green { background: #28c840; }

.dashboard-url {
  flex: 1;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.dashboard-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.dash-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.dash-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.dash-card-value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.dash-card-sub {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-chart {
  grid-column: 1 / -1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.dash-chart-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.chart-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--purple), var(--purple-light));
  transform: scaleY(0);
  transform-origin: bottom;
  animation: bar-grow 1s ease both;
}

.chart-bar:nth-child(1)  { height: 30%; } .chart-bar:nth-child(1)::after  { animation-delay: 0.7s; }
.chart-bar:nth-child(2)  { height: 50%; } .chart-bar:nth-child(2)::after  { animation-delay: 0.75s; }
.chart-bar:nth-child(3)  { height: 40%; } .chart-bar:nth-child(3)::after  { animation-delay: 0.8s; }
.chart-bar:nth-child(4)  { height: 65%; } .chart-bar:nth-child(4)::after  { animation-delay: 0.85s; }
.chart-bar:nth-child(5)  { height: 55%; } .chart-bar:nth-child(5)::after  { animation-delay: 0.9s; }
.chart-bar:nth-child(6)  { height: 75%; } .chart-bar:nth-child(6)::after  { animation-delay: 0.95s; }
.chart-bar:nth-child(7)  { height: 60%; } .chart-bar:nth-child(7)::after  { animation-delay: 1.0s; }
.chart-bar:nth-child(8)  { height: 85%; } .chart-bar:nth-child(8)::after  { animation-delay: 1.05s; }
.chart-bar:nth-child(9)  { height: 70%; } .chart-bar:nth-child(9)::after  { animation-delay: 1.1s; }
.chart-bar:nth-child(10) { height: 90%; } .chart-bar:nth-child(10)::after { animation-delay: 1.15s; }
.chart-bar:nth-child(11) { height: 80%; } .chart-bar:nth-child(11)::after { animation-delay: 1.2s; }
.chart-bar:nth-child(12) { height: 100%;} .chart-bar:nth-child(12)::after { animation-delay: 1.25s; }

@keyframes bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Bottom glow on dashboard */
.hero-dashboard-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: var(--purple);
  filter: blur(60px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

/* â”€â”€ LOGOS / SOCIAL PROOF â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#logos {
  padding: 32px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
}

.logos-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.logos-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logos-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.logos-scroll {
  display: flex;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: scroll-logos 65s linear infinite;
  flex-shrink: 0;
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--subtle);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-pill i { font-size: 1rem; }

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* â”€â”€ ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#about {
  padding: 72px 5%;
  background: var(--black);
}

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

.about-text .section-sub {
  margin-top: 18px;
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.stat-card:hover { border-color: var(--purple); box-shadow: 0 0 32px rgba(109,77,230,0.12), 0 8px 32px rgba(0,0,0,0.06); }

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--purple-light);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* Feature cards */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.feature-card:hover {
  border-color: rgba(124, 92, 252, 0.65);
  transform: translateX(5px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--purple-light);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#faq {
  padding: 72px 5%;
  background: var(--dark);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-label { justify-content: center; }
.faq-header .section-label::before { display: none; }

.faq-header .section-sub {
  margin: 14px auto 0;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--purple); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.18s;
}

.faq-q:hover { color: var(--purple-light); }

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(124, 92, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
  font-size: 0.75rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(124, 92, 252, 0.22);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-body { max-height: 320px; }

.faq-body p {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* â”€â”€ CTA STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#cta {
  padding: 52px 5%;
  background: var(--black);
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.cta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(124, 92, 252, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  position: relative;
}

.cta-box p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 36px;
  position: relative;
}

/* â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

#contact {
  padding: 72px 5%;
  background: var(--dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-top: 8px;
}

.contact-info .section-sub { margin-top: 16px; margin-bottom: 44px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: 0.93rem;
  color: var(--off-white);
}

.contact-detail a {
  color: var(--purple-light);
  text-decoration: none;
}

.contact-detail a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.01em;
}

input, textarea {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 11px 15px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

input::placeholder, textarea::placeholder { color: var(--subtle); }

input:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.14);
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 52px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.18s;
}

.socials a:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-dim);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-address {
  font-style: normal;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.85;
}

.footer-address a {
  color: var(--purple-light);
  text-decoration: none;
}

.footer-address a:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-member-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.footer-member-login:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  color: #fff;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-legal a:hover { color: var(--white); }

/* â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* â”€â”€ INNER PAGE STYLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.page-hero {
  position: relative;
  padding: 130px 5% 64px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124, 92, 252, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-content .section-label { justify-content: center; }
.page-hero-content .section-label::before { display: none; }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(130deg, #6d4de6, #7c5cfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.page-hero-aurora,
.page-hero-circuit,
.page-hero-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-aurora {
  background:
    radial-gradient(circle at 18% 22%, rgba(124, 92, 252, 0.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(84, 196, 255, 0.15), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(124, 92, 252, 0.12), transparent 34%);
  filter: blur(10px);
  animation: hero-aurora-shift 12s ease-in-out infinite alternate;
  opacity: 0.9;
}

.page-hero-circuit::before,
.page-hero-circuit::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(124, 92, 252, 0.18);
  border-radius: 999px;
}

.page-hero-circuit::before {
  width: 460px;
  height: 460px;
  top: -170px;
  right: -80px;
  animation: hero-circuit-spin 26s linear infinite;
}

.page-hero-circuit::after {
  width: 320px;
  height: 320px;
  bottom: -110px;
  left: -70px;
  border-style: dashed;
  animation: hero-circuit-spin 20s linear infinite reverse;
}

.page-hero-nodes {
  z-index: 1;
}

.page-hero-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 6px rgba(124, 92, 252, 0.12), 0 0 24px rgba(124, 92, 252, 0.28);
  animation: hero-node-pulse 4.2s ease-in-out infinite;
}

.page-hero-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 92, 252, 0.5), transparent);
  transform-origin: left center;
}

.page-hero-node.node-a { top: 18%; left: 12%; }
.page-hero-node.node-a::after { transform: translate(0, -50%) rotate(18deg); }
.page-hero-node.node-b { top: 28%; right: 18%; animation-delay: 0.8s; }
.page-hero-node.node-b::after { width: 140px; transform: translate(0, -50%) rotate(145deg); }
.page-hero-node.node-c { bottom: 22%; left: 24%; animation-delay: 1.5s; }
.page-hero-node.node-c::after { width: 100px; transform: translate(0, -50%) rotate(-12deg); }
.page-hero-node.node-d { bottom: 18%; right: 22%; animation-delay: 2.1s; }
.page-hero-node.node-d::after { width: 118px; transform: translate(0, -50%) rotate(198deg); }

.hero-section-split {
  width: min(1080px, calc(100% - 10%));
  height: 24px;
  margin: 0 auto;
  position: relative;
}

.hero-section-split::before,
.hero-section-split::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
}

.hero-section-split::before {
  top: 11px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 92, 252, 0.18) 10%, rgba(124, 92, 252, 0.78) 50%, rgba(124, 92, 252, 0.18) 90%, transparent 100%);
}

.hero-section-split::after {
  top: 7px;
  left: 35%;
  right: 35%;
  height: 9px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.35) 0%, transparent 70%);
  filter: blur(4px);
}

.service-bottom-accent {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.service-bottom-accent .marquee-row {
  justify-content: flex-end;
  text-align: right;
}

@keyframes hero-aurora-shift {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.08) translate3d(-2%, 2%, 0); }
  100% { transform: scale(1.02) translate3d(2%, -1%, 0); }
}

@keyframes hero-circuit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hero-node-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 0.55; }
}

/* â”€â”€ SALES HERO (Full-screen photo hero) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sales-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sales-hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  filter: saturate(1.05) contrast(1.0) brightness(1.0);
}

.sales-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.50) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.65) 100%
  );
}

/* Subtle AI-style purple colour grade */
.sales-hero-grade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(124, 92, 252, 0.22) 0%,
    transparent 55%,
    rgba(100, 60, 220, 0.10) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* 9-column faded grid lines overlay */
.sales-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  pointer-events: none;
}
.sales-hero-grid > div {
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}
.sales-hero-grid > div:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

/* Content */
.sales-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
  color: #111;
}
.sales-hero-content .section-label {
  justify-content: center;
  color: rgba(0, 0, 0, 0.50);
  border-color: rgba(0, 0, 0, 0.12);
}
.sales-hero-content .section-label::before { display: none; }
.sales-hero-content h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: #111;
}
.sales-hero-content h1 em {
  font-style: normal;
  background: linear-gradient(130deg, #6d4de6, #7c5cfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sales-hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.70);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* Animated pill CTA */
.sales-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-family: inherit;
}
.sales-hero-btn-label {
  background: #e1fcad;
  color: #111;
  padding: 14px 28px;
  border-radius: 999px 0 0 999px;
  font-weight: 500;
  transition: background 0.45s ease, color 0.45s ease;
}
.sales-hero-btn-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e1fcad;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.45s ease, color 0.45s ease;
}
.sales-hero-btn-icon svg {
  position: absolute;
  width: 20px;
  height: 20px;
  transition: transform 0.45s ease;
}
.sales-hero-btn-icon .icon-in { transform: translateX(-150%); }
.sales-hero-btn-icon .icon-out { transform: translateX(0); }
.sales-hero-btn:hover .sales-hero-btn-label,
.sales-hero-btn:hover .sales-hero-btn-icon {
  background: #1a3a3f;
  color: #e1fcad;
}
.sales-hero-btn:hover .icon-out { transform: translateX(150%); }
.sales-hero-btn:hover .icon-in  { transform: translateX(0); }

/* â”€â”€ PIPELINE FUNNEL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.funnel-chart-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.funnel-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.funnel-row:hover { background: rgba(124, 92, 252, 0.07); }

.funnel-row-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.funnel-step-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(124, 92, 252, 0.65);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
  min-width: 18px;
  flex-shrink: 0;
}
.funnel-row-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.funnel-row-head strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.funnel-row-head span {
  font-size: 0.76rem;
  color: rgba(0,0,0,0.32);
  line-height: 1.55;
}

.funnel-bar-track {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  gap: 14px;
  height: 44px;
}
.funnel-bar-area {
  height: 44px;
  position: relative;
}
.funnel-bar {
  height: 100%;
  width: 0;
  min-width: 0;
  border-radius: 7px;
  background: var(--bar-color, #7c5cfc);
  box-shadow: 0 0 18px -4px var(--bar-color, #7c5cfc);
  transition: width 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}
.funnel-bar.animated { width: var(--target-w); }

.funnel-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0,0.45);
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.funnel-connector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 280px;
  color: rgba(0,0,0,0.18);
  font-size: 0.73rem;
  letter-spacing: 0.02em;
}
.funnel-connector i {
  font-size: 0.65rem;
  color: rgba(124, 92, 252, 0.45);
  flex-shrink: 0;
}

/* Summary stats strip */
.funnel-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 52px auto 0;
  background: rgba(124, 92, 252, 0.08);
  border: 1px solid rgba(124, 92, 252, 0.18);
  border-radius: 16px;
  padding: 32px 40px;
}
.funnel-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.funnel-stat-num {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(130deg, #6d4de6, #7c5cfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.funnel-stat-label {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.38);
  font-weight: 400;
  max-width: 130px;
  line-height: 1.45;
}
.funnel-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(124, 92, 252, 0.2);
  margin: 0 8px;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .funnel-row { grid-template-columns: 1fr; gap: 10px; }
  .funnel-connector { padding-left: 18px; }
  .funnel-summary { flex-wrap: wrap; gap: 28px; padding: 24px 20px; }
  .funnel-stat { flex: 0 0 calc(50% - 14px); }
  .funnel-stat-div { display: none; }
}

/* â”€â”€ INTEGRATIONS ACCORDION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.int-accordion {
  display: flex;
  flex-direction: column;
}
.int-acc-item {
  border: 1px solid var(--border);
  background: var(--card);
  margin-bottom: -1px;
}
.int-acc-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.int-acc-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); margin-bottom: 0; }

.int-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: inherit;
  transition: background 0.2s ease;
}
.int-acc-trigger:hover { background: rgba(0,0,0,0.02); }

.int-acc-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.int-acc-blue   { background: rgba(59,130,246,0.12);  color: #60a5fa; }
.int-acc-orange { background: rgba(251,146,60,0.12);  color: #fb923c; }
.int-acc-teal   { background: rgba(45,212,191,0.12);  color: #2dd4bf; }
.int-acc-purple { background: rgba(124,92,252,0.14);  color: #a07aff; }

.int-acc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.int-acc-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.int-acc-sub {
  font-size: 0.8rem;
  color: var(--muted);
}
.int-acc-chevron {
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.int-acc-item.open .int-acc-chevron { transform: rotate(180deg); }

/* Height animation via CSS grid trick */
.int-acc-content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.int-acc-item.open .int-acc-content-wrap {
  grid-template-rows: 1fr;
}
.int-acc-content-inner { overflow: hidden; }

.int-acc-body {
  padding: 0 18px 18px 76px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.page-section {
  padding: 64px 5%;
}

.page-section.alt { background: var(--dark); }

.page-section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Content blocks */
.content-block .section-sub { margin-top: 16px; margin-bottom: 32px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.55;
}

.check-list li i {
  color: var(--purple-light);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Tier / option cards */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.22s, box-shadow 0.2s;
}

.tier-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.tier-card.featured {
  border-color: var(--border);
  background: var(--surface);
}

.tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--purple-light);
  margin-bottom: 18px;
}

.tier-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.tier-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tier-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--purple-dim);
  border: 1px solid rgba(124,92,252,0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Expandable tier cards */
.tier-expandable {
  cursor: pointer;
  position: relative;
  padding-bottom: 48px;
}

.tier-expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.tier-expandable.expanded .tier-expand-content {
  max-height: 300px;
  opacity: 1;
}

.tier-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.tier-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--off-white);
  line-height: 1.5;
}

.tier-detail-list li i {
  color: var(--purple-light);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.tier-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 0.65rem;
  transition: transform 0.3s ease, background 0.2s ease;
}

.tier-expandable.expanded .tier-toggle {
  transform: translateX(-50%) rotate(180deg);
  background: rgba(109,77,230,0.18);
}

/* Integration logos grid */
.integrations-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.integration-logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.22s;
  cursor: default;
}

.integration-logo-card:hover {
  border-color: rgba(109,77,230,0.45);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(109,77,230,0.08), 0 8px 24px rgba(0,0,0,0.06);
}

.integration-logo-card i {
  font-size: 1.8rem;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
  transition: color 0.18s;
}

.integration-logo-card:hover i { color: var(--purple-light); }

.int-logo-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.int-logo-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.integration-logo-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.integrations-category {
  margin-bottom: 52px;
}

.integrations-category h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover { border-color: var(--purple); box-shadow: 0 0 36px rgba(109,77,230,0.10), 0 12px 40px rgba(0,0,0,0.06); }

.testimonial-stars { color: #f59e0b; font-size: 0.82rem; letter-spacing: 2px; }

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.7;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.22s;
}

.case-card:hover {
  border-color: rgba(124,92,252,0.65);
  transform: translateY(-4px);
}

.case-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--purple-dim);
  border: 1px solid rgba(124,92,252,0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.case-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.case-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.case-metrics {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.case-metric {
  flex: 1;
}

.case-metric .val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.case-metric .lbl {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* Case study full cards (Axe style) */
.cs-full-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cs-full-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s;
}
.cs-full-card:hover { border-color: rgba(124,92,252,0.5); }
.cs-full-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.cs-full-top .case-tag { margin-bottom: 0; }
.cs-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}
.cs-ba-col {
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-ba-col.before {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.12);
}
.cs-ba-col.after {
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.12);
}
.cs-ba-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.cs-ba-col.before .cs-ba-label { color: #ef4444; }
.cs-ba-col.after .cs-ba-label { color: #22c55e; }
.cs-ba-item {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.cs-ba-item:last-child { border-bottom: none; }

/* Highlight cards at top of results page */
.cs-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.cs-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.cs-highlight:hover {
  border-color: rgba(124,92,252,0.5);
  transform: translateY(-4px);
}
.cs-highlight-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--purple-dim);
  border: 1px solid rgba(124,92,252,0.25);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cs-highlight h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.35;
}
.cs-highlight-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cs-highlight-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.cs-highlight-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-light);
}
.cs-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
}
@media (max-width: 800px) {
  .cs-highlights { grid-template-columns: 1fr; }
}
.cs-ba-item:last-child { border-bottom: none; }
.cs-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
}
.cs-full-story { margin-bottom: 24px; }
.cs-full-story h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.cs-full-story p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.cs-auto-list h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.cs-auto-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.cs-auto-item:last-child { border-bottom: none; }
.cs-auto-item i { color: var(--purple-light); margin-top: 3px; font-size: 0.7rem; }
.cs-auto-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.cs-auto-item span { color: var(--muted); font-size: 0.8rem; }
.cs-full-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-light);
}

@media (max-width: 700px) {
  .cs-full-card { padding: 24px; }
  .cs-ba { grid-template-columns: 1fr; gap: 12px; }
  .cs-ba-arrow { transform: rotate(90deg); }
  .cs-ba-col { padding: 18px 20px; }
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.22s;
}

.blog-card:hover {
  border-color: rgba(109,77,230,0.45);
  transform: translateY(-4px);
  box-shadow: 0 0 36px rgba(109,77,230,0.08), 0 16px 48px rgba(0,0,0,0.06);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #f0f0f2, #e8e8ec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--white);
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.22s;
  cursor: pointer;
}

.video-card:hover {
  border-color: rgba(109,77,230,0.45);
  transform: translateY(-4px);
  box-shadow: 0 0 36px rgba(109,77,230,0.08), 0 16px 48px rgba(0,0,0,0.06);
}

.video-thumb {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, #f0f0f2, #e8e8ec);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(124,92,252,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.2s, background 0.2s;
  padding-left: 4px;
}

.video-card:hover .video-play {
  transform: scale(1.1);
  background: var(--purple-light);
}

.video-body { padding: 20px; }

.video-body h3 {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--white);
}

.video-body p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

.video-duration {
  font-size: 0.75rem;
  color: var(--subtle);
  margin-top: 10px;
}

/* About page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.team-card:hover { border-color: var(--purple); box-shadow: 0 0 32px rgba(109,77,230,0.10), 0 10px 36px rgba(0,0,0,0.06); }

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.value-card:hover { border-color: var(--purple); box-shadow: 0 0 32px rgba(109,77,230,0.10), 0 10px 36px rgba(0,0,0,0.06); }

.value-card i {
  font-size: 1.4rem;
  color: var(--purple-light);
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Shared CTA strip for inner pages */
.page-cta {
  padding: 52px 5%;
  background: var(--black);
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 960px) {
  .dashboard-body { grid-template-columns: 1fr 1fr; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .tier-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* â”€â”€ NAV â”€â”€ */
  nav {
    height: 62px;
    padding: 0 14px;
    left: 10px;
    right: 10px;
    top: 10px;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) 108px;
    align-items: center;
  }
  .nav-logo {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    min-width: 0;
  }
  .nav-logo img { height: 36px; margin-top: 0; }
  .nav-menu { display: none; }
  .mobile-nav-sheet {
    position: fixed;
    inset: 0;
    display: none;
    background:
      radial-gradient(circle at top center, rgba(160, 120, 255, 0.18), transparent 34%),
      rgba(255,255,255,0.985);
    z-index: 999;
  }
  .mobile-nav-sheet.open { display: block; }
  #mobile-nav-toggle:checked ~ nav {
    inset: 0;
    max-width: none;
    height: 100dvh;
    display: block;
    padding: 18px 14px 22px;
    background:
      radial-gradient(circle at top center, rgba(160, 120, 255, 0.18), transparent 34%),
      rgba(255,255,255,0.985);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow-y: auto;
    z-index: 998;
  }
  #mobile-nav-toggle:checked ~ nav::before {
    content: '';
    position: fixed;
    top: 14px;
    left: 12px;
    right: 12px;
    height: 64px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    z-index: 1000;
  }
  #mobile-nav-toggle:checked ~ nav .nav-logo {
    position: fixed;
    top: 24px;
    left: 22px;
    right: 76px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
  }
  #mobile-nav-toggle:checked ~ nav .nav-logo img {
    height: 34px;
    width: auto;
  }
  .mobile-nav-shell {
    min-height: 100vh;
    padding: 84px 16px 28px;
  }
  .mobile-nav-topbar {
    position: fixed;
    top: 14px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
  }
  .mobile-nav-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-light);
  }
  .mobile-nav-close {
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  }
  .mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1f1b2d;
  }
  .mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .mobile-nav-group { margin-bottom: 0; }
  .mobile-nav-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin: 0 0 10px 4px;
  }
  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px 16px;
    margin-bottom: 8px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.07);
    background: rgba(255,255,255,0.96);
    color: #111111;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 550;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  }
  .mobile-nav-link i {
    width: 18px;
    text-align: center;
    color: var(--purple-light);
  }
  .mobile-nav-group-single .mobile-nav-link {
    margin-bottom: 0;
  }
  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin-top: 4px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--purple-light), #7c3aed);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 22px 52px rgba(116, 83, 255, 0.24);
  }
  #mobile-nav-toggle:checked ~ nav .nav-menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: static;
    inset: auto;
    z-index: auto;
    width: 100%;
    margin-top: 72px;
    padding: 0 0 12px;
    overflow: visible;
    background: transparent;
    gap: 10px;
    list-style: none;
  }
  #mobile-nav-toggle:checked ~ nav .nav-item {
    width: 100%;
    display: block;
  }
  #mobile-nav-toggle:checked ~ nav .nav-item > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 4px;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
  }
  #mobile-nav-toggle:checked ~ nav .nav-item:not(.has-dropdown) > a {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 2px;
    padding: 13px 14px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    color: #111111;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  }
  #mobile-nav-toggle:checked ~ nav .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 6px 0 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  #mobile-nav-toggle:checked ~ nav .dropdown li {
    min-width: 0;
  }
  #mobile-nav-toggle:checked ~ nav .dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 12px 12px;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    color: #111111;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
    white-space: normal;
  }
  #mobile-nav-toggle:checked ~ nav .dropdown li a i {
    width: 18px;
    color: var(--purple-light);
    text-align: center;
  }
  .nav-cta { display: none; }
  .hamburger {
    display: flex !important;
    grid-column: 3;
    justify-self: end;
    position: relative;
    z-index: 1002;
  }
  #mobile-nav-toggle:checked ~ nav .hamburger {
    position: fixed;
    top: 23px;
    right: 22px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    align-items: center;
    background: rgba(255,255,255,0.94);
    border-color: rgba(0,0,0,0.10);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }
  #mobile-nav-toggle:checked ~ nav .hamburger span {
    width: 18px;
  }
  #mobile-nav-toggle:checked ~ nav .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  #mobile-nav-toggle:checked ~ nav .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  #mobile-nav-toggle:checked ~ nav .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  #mobile-nav-toggle:checked ~ nav .chevron { display: none; }

  /* â”€â”€ HERO â”€â”€ */
  #home { padding: 100px 6% 56px; }
  .hero-headline { font-size: clamp(1.85rem, 8vw, 2.6rem); letter-spacing: -0.03em; }
  .hero-sub { font-size: 0.97rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 14px; }
  .hero-badge { font-size: 0.72rem; }

  /* â”€â”€ GENERAL â”€â”€ */
  .dashboard-body { grid-template-columns: 1fr; padding: 16px; }
  .dash-chart { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .cta-box { padding: 44px 20px; }
  .logos-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .integrations-section-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .testimonial-grid, .case-grid, .blog-grid, .video-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .workflow-header,
  .sales-demo-topbar,
  .email-app-header { flex-direction: column; align-items: flex-start; }
  .workflow-add-btn { width: 100%; justify-content: center; }
  .workflow-canvas-area { height: 260px; }
  .workflow-node { width: 160px; }
  .sales-demo-shell,
  .workflow-builder-wrap,
  .hero-dashboard,
  .email-app-window { border-radius: 22px; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 1.65rem; }
  nav {
    left: 6px;
    right: 6px;
    padding: 0 12px;
    grid-template-columns: 98px minmax(0, 1fr) 98px;
  }
  #mobile-nav-toggle:checked ~ nav { padding: 16px 10px 18px; }
  #mobile-nav-toggle:checked ~ nav::before { top: 12px; left: 8px; right: 8px; height: 60px; }
  #mobile-nav-toggle:checked ~ nav .nav-logo { left: 16px; right: 70px; top: 22px; }
  #mobile-nav-toggle:checked ~ nav .hamburger { right: 16px; top: 22px; }
  #mobile-nav-toggle:checked ~ nav .nav-menu { margin-top: 68px; }
  #mobile-nav-toggle:checked ~ nav .dropdown { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .page-section,
  .page-cta { padding-left: 0; padding-right: 0; }
}

/* â”€â”€ VISUAL ENHANCEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Animated gradient border on hover for cards */
.feature-card,
.tier-card,
.stat-card,
.case-card,
.testimonial-card,
.blog-card,
.video-card,
.value-card {
  position: relative;
}

/* Subtle glow on card hover */
.tier-card:hover,
.case-card:hover {
  box-shadow: 0 0 0 1px rgba(109,77,230,0.35), 0 20px 60px rgba(0,0,0,0.06), 0 0 55px rgba(109,77,230,0.08);
}

.feature-card:hover {
  box-shadow: 0 0 0 1px rgba(109,77,230,0.30), 0 0 36px rgba(109,77,230,0.08), 0 12px 40px rgba(0,0,0,0.06);
}

/* Glowing section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124,92,252,0.4) 30%, rgba(124,92,252,0.6) 50%, rgba(124,92,252,0.4) 70%, transparent 100%);
  position: relative;
  margin: 0;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 25%;
  right: 25%;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.3), transparent);
  filter: blur(4px);
}

@media (max-width: 767px) {
  .page-hero-circuit::before {
    width: 280px;
    height: 280px;
    top: -90px;
    right: -80px;
  }

  .page-hero-circuit::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -70px;
  }

  .page-hero-node::after {
    width: 74px;
  }

  .hero-section-split {
    width: calc(100% - 36px);
  }
}

/* Counter animation */
.counter {
  display: inline-block;
  transition: opacity 0.3s;
}

/* Animated gradient text */
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-animate {
  background: linear-gradient(130deg, #6d4de6, #7c5cfc, #5a3bc7, #9b7dff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

/* Floating animated shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.04;
}

.float-shape-1 {
  width: 300px;
  height: 300px;
  border: 1px solid var(--purple-light);
  top: 10%;
  right: 5%;
  animation: float-rotate 20s linear infinite;
}

.float-shape-2 {
  width: 200px;
  height: 200px;
  border: 1px solid var(--purple-light);
  bottom: 15%;
  left: 3%;
  animation: float-rotate 15s linear infinite reverse;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes float-rotate {
  from { transform: rotate(0deg) translateY(0); opacity: 0.04; }
  50%  { transform: rotate(180deg) translateY(-20px); opacity: 0.07; }
  to   { transform: rotate(360deg) translateY(0); opacity: 0.04; }
}

/* Steps / process timeline */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 23px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 10px;
  z-index: 0;
  pointer-events: none;
}

.steps-connector-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(124,92,252,0.18);
  border-radius: 999px;
  overflow: hidden;
}

.steps-connector-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(124,92,252,0.7), rgba(180,150,255,1), rgba(124,92,252,0.8));
  border-radius: 999px;
  animation: connector-progress 6s ease-in-out infinite;
}

@keyframes connector-progress {
  0%   { width: 0%;   opacity: 0; }
  5%   { opacity: 1; }
  25%  { width: 33%; }
  35%  { width: 33%; }
  55%  { width: 66%; }
  65%  { width: 66%; }
  82%  { width: 100%; }
  90%  { width: 100%; opacity: 1; }
  96%  { opacity: 0; }
  100% { width: 0%;   opacity: 0; }
}

.steps-connector-dot {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124,92,252,0.35);
  border: 2px solid rgba(124,92,252,0.55);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(124,92,252,0.3);
}

.steps-connector-dot.dot-1 { left: 0%; }
.steps-connector-dot.dot-2 { left: 33.33%; }
.steps-connector-dot.dot-3 { left: 66.66%; }
.steps-connector-dot.dot-4 { left: 100%; }

.step-card {
  padding: 0 24px 32px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(124,92,252,0.4);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple-light);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(124,92,252,0.15);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Step number ring — circular stroke draws around the number */
.step-number::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2.5px solid var(--purple-light);
  pointer-events: none;
  opacity: 0;
}

/* The ring uses a conic-gradient mask to reveal clockwise */
@keyframes ring-reveal {
  0%   { opacity: 1; mask: conic-gradient(#000 0deg, transparent 0deg); -webkit-mask: conic-gradient(#000 0deg, transparent 0deg); }
  100% { opacity: 1; mask: conic-gradient(#000 360deg, transparent 360deg); -webkit-mask: conic-gradient(#000 360deg, transparent 360deg); }
}

.steps-grid .step-card:nth-child(2) .step-number::after {
  animation: ring-reveal 1s ease-out 0.5s forwards;
}
.steps-grid .step-card:nth-child(3) .step-number::after {
  animation: ring-reveal 1s ease-out 2s forwards;
}
.steps-grid .step-card:nth-child(4) .step-number::after {
  animation: ring-reveal 1s ease-out 3.5s forwards;
}
.steps-grid .step-card:nth-child(5) .step-number::after {
  animation: ring-reveal 1s ease-out 5s forwards;
}

/* Highlight pill */
.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,92,252,0.1);
  border: 1px solid rgba(124,92,252,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 20px;
}

/* Icon ring pulse */
.icon-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-ring::before,
.icon-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124,92,252,0.3);
  animation: ring-pulse 3s ease-out infinite;
}

.icon-ring::before {
  inset: -8px;
  animation-delay: 0s;
}

.icon-ring::after {
  inset: -16px;
  animation-delay: 0.8s;
}

@keyframes ring-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* Wide stat bar */
.stat-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}

.stat-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.5), transparent);
}

.stat-bar-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat-bar-item:last-child { border-right: none; }

.stat-bar-item .num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-bar-item .num span {
  background: linear-gradient(130deg, #6d4de6, #7c5cfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-bar-item .lbl {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* Comparison table */
.comparison-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row.header {
  background: var(--card);
}

.comparison-cell {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-cell:last-child { border-right: none; }
.comparison-row.header .comparison-cell { font-weight: 700; color: var(--white); font-size: 0.82rem; }
.comparison-cell .yes { color: #22c55e; }
.comparison-cell .no  { color: #ef4444; opacity: 0.7; }

/* Marquee tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.18s;
  cursor: default;
}

.tag:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-dim);
}

/* Typewriter cursor */
.typewriter::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--purple-light);
  margin-left: 2px;
}

@keyframes blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

/* Mouse-follow card tilt */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

/* Glow text */
.glow-text {
  text-shadow: 0 0 40px rgba(160, 122, 255, 0.4);
}

/* Animated underline on section titles */
.underline-animate {
  position: relative;
  display: inline-block;
}

.underline-animate::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  transition: width 0.6s ease;
}

.underline-animate.visible::after { width: 100%; }

/* Neon card border variant */
.neon-card {
  border-color: transparent;
  background: var(--surface);
  box-shadow:
    inset 0 0 0 1px rgba(124,92,252,0.2),
    0 0 40px rgba(124,92,252,0.05);
  transition: box-shadow 0.3s ease;
}

.neon-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(109,77,230,0.5),
    0 0 80px rgba(109,77,230,0.10),
    0 20px 60px rgba(0,0,0,0.06);
}

/* Process arrow connector */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.22s;
}

.process-step:hover {
  border-color: rgba(124,92,252,0.4);
  transform: translateX(6px);
}

.process-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple-light);
  background: var(--purple-dim);
  border: 1px solid rgba(124,92,252,0.25);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Responsive stat-bar */
@media (max-width: 700px) {
  .stat-bar { grid-template-columns: 1fr 1fr; padding: 24px; }
  .stat-bar-item { padding: 16px 12px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-bar-item:nth-child(2n) { border-right: none; }
  .stat-bar-item:last-child, .stat-bar-item:nth-last-child(2) { border-bottom: none; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .steps-connector {
    display: none;
  }
  .step-card {
    padding: 0 0 24px;
    text-align: left;
    border: 1px solid rgba(124,92,252,0.14);
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    padding: 18px 18px 20px;
  }
  .step-number {
    margin: 0 0 16px;
  }
  .steps-grid .step-card:nth-child(2) .step-number::after { animation-delay: 0.3s; }
  .steps-grid .step-card:nth-child(3) .step-number::after { animation-delay: 1.2s; }
  .steps-grid .step-card:nth-child(4) .step-number::after { animation-delay: 2.1s; }
  .steps-grid .step-card:nth-child(5) .step-number::after { animation-delay: 3s; }
}

/* â”€â”€ RADAR EFFECT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.radar-section-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  padding-bottom: 0;
}

/* Icon rows float above the radar */
.radar-icon-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 680px;
  position: relative;
  z-index: 50;
  margin-bottom: 16px;
}

.radar-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.radar-icon-row.narrow {
  max-width: 400px;
}

.radar-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 50;
  opacity: 0;
  animation: radar-icon-in 0.35s ease forwards;
}

@keyframes radar-icon-in {
  from { opacity: 0; transform: scale(0.88) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.radar-icon-inner {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.08);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.radar-icon-box:hover .radar-icon-inner {
  color: var(--purple-light);
  border-color: rgba(124,92,252,0.45);
  box-shadow: 0 0 20px rgba(124,92,252,0.15), inset 0 1px 0 rgba(0,0,0,0.04);
}

.radar-icon-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--subtle);
  text-align: center;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.radar-icon-box:hover .radar-icon-label {
  color: var(--muted);
}

/* Radar sweep lit state */
.radar-icon-box.lit .radar-icon-inner {
  color: var(--purple-light);
  border-color: rgba(124,92,252,0.6);
  background: rgba(124,92,252,0.08);
  box-shadow: 0 0 24px rgba(124,92,252,0.28), 0 0 8px rgba(124,92,252,0.4), inset 0 1px 0 rgba(0,0,0,0.06);
}
.radar-icon-box.lit .radar-icon-label {
  color: var(--purple-light);
}

/* The radar rings + sweep, anchored at bottom-center */
.radar-visual {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  z-index: 10;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
}

/* Rotating sweep arm â€” origin at right = center of radar */
.radar-sweep-arm {
  position: absolute;
  right: 50%;
  top: 50%;
  transform-origin: right center;
  height: 6px;
  width: clamp(280px, 45vw, 520px);
  z-index: 45;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  animation: radar-spin 10s linear infinite;
  pointer-events: none;
}

.radar-sweep-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(124,92,252,0.55) 60%, rgba(160,122,255,0.8) 85%, transparent 100%);
}

/* Faint glow cone that follows the sweep */
.radar-sweep-glow {
  position: absolute;
  right: 50%;
  top: 50%;
  transform-origin: right center;
  height: 80px;
  width: clamp(280px, 45vw, 520px);
  background: linear-gradient(to right, transparent 0%, rgba(124,92,252,0.04) 100%);
  animation: radar-spin 10s linear infinite;
  pointer-events: none;
  z-index: 11;
}

/* Horizontal base line */
.radar-bottom-line {
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124,92,252,0.25), transparent);
  z-index: 41;
}

/* Center pulse dot */
.radar-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 12px rgba(124,92,252,0.8);
  z-index: 50;
  animation: center-pulse 2s ease-in-out infinite;
}

@keyframes center-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(124,92,252,0.6); transform: translate(-50%,-50%) scale(1); }
  50%       { box-shadow: 0 0 20px rgba(124,92,252,0.9); transform: translate(-50%,-50%) scale(1.3); }
}

@keyframes radar-spin {
  from { transform: rotate(20deg); }
  to   { transform: rotate(380deg); }
}

@media (max-width: 700px) {
  .radar-icon-row { justify-content: center; gap: 16px; }
  .radar-icon-row.narrow { max-width: 100%; }
  .radar-section-wrap { min-height: 340px; }
}

/* â”€â”€ EMAIL FLOW VISUALISER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.eflow-section { background: var(--black); }

.eflow-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.eflow-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  color: rgba(0,0,0,0.38);
  transition: all 0.2s;
  font-family: inherit;
}
.eflow-tab.active {
  background: rgba(124,92,252,0.14);
  border-color: rgba(124,92,252,0.45);
  color: #a78bfa;
}
.eflow-tab:hover:not(.active) {
  color: rgba(0,0,0,0.55);
  border-color: rgba(0,0,0,0.14);
}
.eflow-diagram.hidden { display: none; }

.eflow-row {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.eflow-row::-webkit-scrollbar { display: none; }

/* Node */
.eflow-node {
  flex: 1 0 148px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 22px 16px 20px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.eflow-node:hover { transform: translateY(-3px); }
.eflow-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 12px;
}
.eflow-node-step {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.18);
  margin-bottom: 5px;
}
.eflow-node-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.eflow-node-desc {
  font-size: 0.67rem;
  color: rgba(0,0,0,0.30);
  line-height: 1.55;
}

/* Node colour variants */
.eflow-node.wf-amber   { border-color: rgba(251,191,36,0.22); }
.eflow-node.wf-amber   .eflow-node-icon { border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.08); color: #fbbf24; }
.eflow-node.wf-amber   .eflow-node-step { color: rgba(251,191,36,0.6); }
.eflow-node.wf-purple  { border-color: rgba(167,139,250,0.22); }
.eflow-node.wf-purple  .eflow-node-icon { border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.08); color: #a78bfa; }
.eflow-node.wf-purple  .eflow-node-step { color: rgba(167,139,250,0.6); }
.eflow-node.wf-blue    { border-color: rgba(96,165,250,0.22); }
.eflow-node.wf-blue    .eflow-node-icon { border-color: rgba(96,165,250,0.3); background: rgba(96,165,250,0.08); color: #60a5fa; }
.eflow-node.wf-blue    .eflow-node-step { color: rgba(96,165,250,0.6); }
.eflow-node.wf-indigo  { border-color: rgba(129,140,248,0.22); }
.eflow-node.wf-indigo  .eflow-node-icon { border-color: rgba(129,140,248,0.3); background: rgba(129,140,248,0.08); color: #818cf8; }
.eflow-node.wf-indigo  .eflow-node-step { color: rgba(129,140,248,0.6); }
.eflow-node.wf-rose    { border-color: rgba(251,113,133,0.22); }
.eflow-node.wf-rose    .eflow-node-icon { border-color: rgba(251,113,133,0.3); background: rgba(251,113,133,0.08); color: #fb7185; }
.eflow-node.wf-rose    .eflow-node-step { color: rgba(251,113,133,0.6); }
.eflow-node.wf-emerald { border-color: rgba(52,211,153,0.22); }
.eflow-node.wf-emerald .eflow-node-icon { border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); color: #34d399; }
.eflow-node.wf-emerald .eflow-node-step { color: rgba(52,211,153,0.6); }

/* Connector */
.eflow-conn {
  display: flex;
  align-items: center;
  flex: 0 0 42px;
}
.eflow-conn-line {
  flex: 1;
  height: 2px;
  background: rgba(124,92,252,0.18);
  position: relative;
  overflow: hidden;
}
.eflow-conn-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c5cfc;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-200%);
  animation: eflow-pulse-h 2.4s ease-in-out infinite;
  animation-delay: var(--pd, 0s);
  box-shadow: 0 0 7px rgba(124,92,252,0.9);
}
@keyframes eflow-pulse-h {
  0%   { transform: translateY(-50%) translateX(-200%); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-50%) translateX(1500%); opacity: 0; }
}
.eflow-conn-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(124,92,252,0.38);
  flex-shrink: 0;
}

/* Callout strip */
.eflow-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(124,92,252,0.07);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 0.83rem;
  color: rgba(0,0,0,0.50);
  line-height: 1.65;
}
.eflow-callout-loop { background: rgba(251,113,133,0.06); border-color: rgba(251,113,133,0.2); }
.eflow-callout-icon { font-size: 1rem; color: #a78bfa; margin-top: 2px; flex-shrink: 0; }
.eflow-callout-loop .eflow-callout-icon { color: #fb7185; }
.eflow-callout strong { color: var(--white); }

/* Responsive â€” vertical stack */
.email-demo-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}

.email-demo-sidebar {
  display: grid;
  gap: 16px;
}

.email-demo-note {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(167,139,250,0.16);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

.email-demo-note h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--white);
}

.email-demo-note p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.email-demo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.email-demo-pill {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124,92,252,0.09);
  border: 1px solid rgba(124,92,252,0.18);
  color: rgba(255,255,255,0.84);
}

.email-demo-stack {
  display: grid;
  gap: 18px;
}

.email-app-window {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(22,23,34,0.98), rgba(13,14,20,0.98));
  box-shadow: 0 24px 80px rgba(0,0,0,0.36);
}

.email-app-window::after {
  content: '';
  position: absolute;
  inset: auto 24px 0;
  height: 32px;
  background: radial-gradient(circle, rgba(124,92,252,0.2), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.email-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.email-app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.email-app-brand i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,92,252,0.14);
  color: #b9a3ff;
}

.email-app-status {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fe8c1;
}

.email-app-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 470px;
}

.email-app-sidebar {
  padding: 18px 14px;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.email-app-folder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.email-app-folder.active {
  background: rgba(124,92,252,0.14);
  color: var(--white);
}

.email-app-folder span:last-child {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.52);
}

.email-app-main {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.email-thread-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.email-thread-subject {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.email-draft-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  color: #8ee0b7;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.email-thread-card,
.email-compose-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}

.email-thread-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.email-thread-person {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.email-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, rgba(124,92,252,0.8), rgba(59,130,246,0.7));
}

.email-avatar.support {
  background: linear-gradient(135deg, rgba(52,211,153,0.76), rgba(14,165,233,0.72));
}

.email-thread-name {
  font-size: 0.92rem;
  font-weight: 700;
}

.email-thread-address,
.email-thread-time {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.54);
}

.email-thread-copy {
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.92rem;
}

.email-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.email-compose-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.email-compose-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9a3ff;
}

.email-compose-field {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.84rem;
}

.email-compose-field strong {
  width: 58px;
  color: rgba(255,255,255,0.58);
  flex-shrink: 0;
}

.email-compose-field span {
  color: rgba(255,255,255,0.82);
}

.email-compose-body {
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.email-compose-body p + p {
  margin-top: 12px;
}

.email-compose-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-compose-chip {
  padding: 8px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.74);
  font-size: 0.76rem;
}

@media (max-width: 1100px) {
  .email-demo-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .email-app-body {
    grid-template-columns: 1fr;
  }

  .email-app-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .sales-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .sales-demo-layout,
  .sales-demo-stat-row,
  .sales-demo-grid,
  .sales-pipeline-columns {
    grid-template-columns: 1fr;
  }

  .sales-demo-main,
  .sales-demo-sidebar,
  .sales-demo-panel,
  .email-app-main,
  .email-app-sidebar {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 860px) {
  .eflow-row {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
  }
  .eflow-node {
    flex: none;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 16px;
  }
  .eflow-node-icon { margin: 0; flex-shrink: 0; }
  .eflow-conn {
    flex: none;
    width: 2px;
    height: 36px;
    flex-direction: column;
    align-self: flex-start;
    margin-left: 36px;
  }
  .eflow-conn-line { width: 2px; flex: 1; height: 100%; }
  .eflow-conn-pulse {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    animation: eflow-pulse-v 2.4s ease-in-out infinite;
    animation-delay: var(--pd, 0s);
  }
  .eflow-conn-arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(124,92,252,0.38);
    border-bottom: none;
  }
}
@keyframes eflow-pulse-v {
  0%   { transform: translateX(-50%) translateY(-200%); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(-50%) translateY(1500%); opacity: 0; }
}

/* â”€â”€ AI TOOLS GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

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

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.22s, box-shadow 0.2s;
}

.tool-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(109,77,230,0.35), 0 20px 60px rgba(0,0,0,0.06), 0 0 55px rgba(109,77,230,0.08);
}

.tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.tool-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.tool-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.sales-dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.sales-dashboard-card {
  margin: 0;
  width: 100%;
}

.sales-report-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(124,92,252,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  padding: 28px;
}

.sales-report-head {
  margin-bottom: 20px;
}

.sales-report-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124,92,252,0.12);
  border: 1px solid rgba(124,92,252,0.18);
  color: #c9b8ff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sales-report-head h3 {
  font-size: 1.2rem;
  color: var(--white);
}

.sales-report-list {
  display: grid;
  gap: 14px;
}

.sales-report-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.sales-report-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.sales-report-item span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.sales-demo-shell {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(124,92,252,0.14);
  background: linear-gradient(180deg, rgba(20,22,30,0.98), rgba(12,13,19,0.98));
  box-shadow: 0 26px 90px rgba(0,0,0,0.34);
}

.sales-demo-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.sales-demo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.sales-demo-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  color: #8ee0b7;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sales-demo-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.sales-demo-sidebar {
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.sales-demo-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.sales-demo-nav.active {
  background: rgba(124,92,252,0.14);
  color: var(--white);
}

.sales-demo-apps {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.sales-demo-app-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-size: 0.84rem;
}

.sales-demo-main {
  padding: 20px;
}

.sales-demo-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.sales-demo-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.sales-demo-stat-label {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sales-demo-stat strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
}

.sales-demo-stat-sub {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.sales-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sales-demo-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.sales-demo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.sales-demo-panel-head h3 {
  color: var(--white);
  font-size: 1rem;
}

.sales-demo-panel-head span {
  color: rgba(255,255,255,0.5);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-lead-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
}

.sales-lead-card:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.sales-lead-card.active {
  margin: 0 -10px;
  padding: 14px 10px;
  border-radius: 16px;
  border-top-color: transparent;
  background: rgba(124,92,252,0.12);
}

.sales-lead-card strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 5px;
}

.sales-lead-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.sales-demo-view[hidden] {
  display: none;
}

.sales-lead-score {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sales-lead-score.hot {
  background: rgba(251,113,133,0.12);
  border: 1px solid rgba(251,113,133,0.2);
  color: #fb7185;
}

.sales-lead-score.warm {
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.2);
  color: #fbbf24;
}

.sales-message-preview {
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
}

.sales-message-top,
.sales-report-mini-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.sales-message-top {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.56);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-message-preview p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.sales-message-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sales-message-tags span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(124,92,252,0.1);
  border: 1px solid rgba(124,92,252,0.16);
  color: rgba(255,255,255,0.8);
  font-size: 0.74rem;
}

.sales-pipeline-panel {
  grid-column: 1 / -1;
}

.sales-pipeline-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sales-pipeline-col {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.sales-pipeline-title {
  display: block;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sales-pipeline-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 8px;
}

.sales-report-mini {
  display: grid;
  gap: 12px;
}

.sales-report-mini-row {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.sales-report-mini-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.sales-report-mini-row strong {
  color: var(--white);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .tools-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .email-demo-wrap,
  .sales-dashboard-grid,
  .sales-demo-grid,
  .bp-card-grid,
  .bp-stats-grid { gap: 14px; }
}

/* â”€â”€ WEB DESIGN PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Entropy canvas section */
.entropy-section-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--black);
}
#entropy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.entropy-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.entropy-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  gap: 5px;
}
.entropy-side.right { align-items: flex-end; text-align: right; }
.entropy-side-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.22);
}
.entropy-side.right .entropy-side-label { color: var(--purple-light); }
.entropy-side-sub {
  font-size: 0.62rem;
  color: rgba(0,0,0,0.12);
  letter-spacing: 0.04em;
}
.entropy-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
  flex-shrink: 0;
  width: clamp(260px, 40%, 560px);
}
.entropy-center-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-top: 10px;
}
.entropy-center-box h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Marquee cycling */
.marquee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.marquee-prefix-text {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: rgba(0,0,0,0.14);
  white-space: nowrap;
}
.marquee-cycling-wrap {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.marquee-cycling-text {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Workflow builder */
.workflow-builder-wrap {
  background: rgba(0,0,0,0.015);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1060px;
  margin: 0 auto;
}
.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.workflow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 999px;
  padding: 5px 14px;
}
.workflow-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.workflow-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.workflow-add-btn:hover { color: var(--white); border-color: rgba(0,0,0,0.12); background: rgba(0,0,0,0.04); }
.workflow-canvas-area {
  position: relative;
  height: 310px;
  overflow: auto;
}
.workflow-canvas-inner {
  position: relative;
  min-width: 100%;
  min-height: 100%;
}
.workflow-svg { position: absolute; top: 0; left: 0; pointer-events: none; overflow: visible; }
.workflow-node {
  position: absolute;
  width: 178px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 14px;
  cursor: grab;
  user-select: none;
  transition: box-shadow 0.15s;
  backdrop-filter: blur(12px);
}
.workflow-node.dragging {
  cursor: grabbing;
  box-shadow: 0 20px 56px rgba(0,0,0,0.10), 0 0 0 1px rgba(109,77,230,0.3);
  z-index: 100;
}
.workflow-node-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.workflow-node-type { font-size: 0.57rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.22); margin-bottom: 3px; }
.workflow-node-title { font-size: 0.77rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.workflow-node-desc { font-size: 0.66rem; color: rgba(0,0,0,0.30); line-height: 1.5; }
.workflow-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px;
  border-top: 1px solid rgba(0,0,0,0.04);
  background: rgba(0,0,0,0.01);
}
.workflow-stats { display: flex; gap: 20px; font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.30); }
.workflow-stat { display: flex; align-items: center; gap: 7px; }
.workflow-stat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.workflow-hint { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.12); }

/* Workflow node colour variants */
.wf-emerald { border-color: rgba(52,211,153,0.22) !important; }
.wf-emerald .workflow-node-icon { border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); color: #34d399; }
.wf-emerald .workflow-node-type { color: #34d399; }
.wf-blue { border-color: rgba(96,165,250,0.22) !important; }
.wf-blue .workflow-node-icon { border-color: rgba(96,165,250,0.3); background: rgba(96,165,250,0.08); color: #60a5fa; }
.wf-blue .workflow-node-type { color: #60a5fa; }
.wf-amber { border-color: rgba(251,191,36,0.22) !important; }
.wf-amber .workflow-node-icon { border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.08); color: #fbbf24; }
.wf-amber .workflow-node-type { color: #fbbf24; }
.wf-purple { border-color: rgba(167,139,250,0.22) !important; }
.wf-purple .workflow-node-icon { border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.08); color: #a78bfa; }
.wf-purple .workflow-node-type { color: #a78bfa; }
.wf-indigo { border-color: rgba(129,140,248,0.22) !important; }
.wf-indigo .workflow-node-icon { border-color: rgba(129,140,248,0.3); background: rgba(129,140,248,0.08); color: #818cf8; }
.wf-indigo .workflow-node-type { color: #818cf8; }
.wf-rose { border-color: rgba(251,113,133,0.22) !important; }
.wf-rose .workflow-node-icon { border-color: rgba(251,113,133,0.3); background: rgba(251,113,133,0.08); color: #fb7185; }
.wf-rose .workflow-node-type { color: #fb7185; }
.wf-teal { border-color: rgba(45,212,191,0.22) !important; }
.wf-teal .workflow-node-icon { border-color: rgba(45,212,191,0.3); background: rgba(45,212,191,0.08); color: #2dd4bf; }
.wf-teal .workflow-node-type { color: #2dd4bf; }

/* â”€â”€ LOGO TIMELINE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.logo-timeline-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0;
}
.logo-timeline-rows {
  display: grid;
  grid-template-rows: repeat(7, 60px);
  position: relative;
}
.logo-row {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* dashed centre line */
.logo-row::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,0.07) 0, rgba(0,0,0,0.07) 2px, transparent 2px, transparent 12px);
  pointer-events: none;
}
/* row separator */
.logo-row::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 2px, transparent 2px, transparent 12px);
}
.logo-row:last-child::after { display: none; }

.logo-row .logo-pill {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  animation: logo-move var(--dur) var(--delay) linear infinite;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  z-index: 2;
}
.logo-row .logo-pill i { font-size: 0.88rem; width: 16px; text-align: center; flex-shrink: 0; }
.logo-row .logo-pill .logo-letter {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 3px;
  font-size: 0.6rem; font-weight: 800; line-height: 1;
  flex-shrink: 0;
}

@keyframes logo-move {
  from { transform: translateX(-280px) translateY(-50%); }
  to   { transform: translateX(calc(100vw + 280px)) translateY(-50%); }
}

/* Centre overlay card */
.logo-timeline-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}
.logo-timeline-center {
  text-align: center;
  padding: 22px 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
}
.logo-timeline-center h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 6px;
}
.logo-timeline-center h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-timeline-center p {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.02em;
}

/* â”€â”€ BUCKET SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bucket-section {
  padding: 96px 24px 80px;
  background: var(--black);
  text-align: center;
}

/* â”€â”€ Outer container â”€â”€ */
.bucket-outer {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  overflow: visible;
}

/* â”€â”€ Chip throw stage â€“ centred at the rim â”€â”€ */
.bucket-chip-stage {
  position: absolute;
  top: 22px;   /* aligns with SVG rim centre (y=22 in viewBox) */
  left: 50%;
  width: 0;
  height: 0;
  z-index: 30;
  pointer-events: none;
  overflow: visible;
}

/* â”€â”€ Chip pill â”€â”€ */
.bucket-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 0 0 1px rgba(109,77,230,0.12);
  min-width: 230px;
  opacity: 0;
  white-space: nowrap;
  /* anchored at its own centre */
  transform: translateX(-50%);
}

/* arc from left: glide from upper-left, settle at rim, sink smoothly in */
.bucket-chip.chip-left {
  animation: chip-arc-left 3.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
/* arc from right */
.bucket-chip.chip-right {
  animation: chip-arc-right 3.6s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes chip-arc-left {
  0%   { transform: translate(calc(-50% - 320px), -100px) rotate(-18deg) scale(0.82); opacity: 0; }
  6%   { opacity: 1; }
  35%  { transform: translate(calc(-50% - 80px),   -30px) rotate(-6deg)  scale(0.96); opacity: 1; }
  50%  { transform: translate(calc(-50% - 10px),    -6px) rotate(-1deg)  scale(1.0);  opacity: 1; }
  62%  { transform: translate(-50%,                  4px) rotate(0deg)   scale(0.98); opacity: 1; }
  72%  { transform: translate(-50%,                 20px) rotate(0deg)   scale(0.92); opacity: 0.85; }
  82%  { transform: translate(-50%,                 40px) rotate(0deg)   scale(0.72); opacity: 0.5; }
  92%  { transform: translate(-50%,                 58px) rotate(0deg)   scale(0.48); opacity: 0.18; }
  100% { transform: translate(-50%,                 72px) rotate(0deg)   scale(0.32); opacity: 0; }
}
@keyframes chip-arc-right {
  0%   { transform: translate(calc(-50% + 320px), -100px) rotate(18deg)  scale(0.82); opacity: 0; }
  6%   { opacity: 1; }
  35%  { transform: translate(calc(-50% + 80px),   -30px) rotate(6deg)   scale(0.96); opacity: 1; }
  50%  { transform: translate(calc(-50% + 10px),    -6px) rotate(1deg)   scale(1.0);  opacity: 1; }
  62%  { transform: translate(-50%,                  4px) rotate(0deg)   scale(0.98); opacity: 1; }
  72%  { transform: translate(-50%,                 20px) rotate(0deg)   scale(0.92); opacity: 0.85; }
  82%  { transform: translate(-50%,                 40px) rotate(0deg)   scale(0.72); opacity: 0.5; }
  92%  { transform: translate(-50%,                 58px) rotate(0deg)   scale(0.48); opacity: 0.18; }
  100% { transform: translate(-50%,                 72px) rotate(0deg)   scale(0.32); opacity: 0; }
}

.bucket-chip-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(124,92,252,0.18);
  border: 1px solid rgba(124,92,252,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--purple-light);
  flex-shrink: 0;
}
.bucket-chip-text  { text-align: left; }
.bucket-chip-title { font-size: 0.84rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.bucket-chip-desc  { font-size: 0.7rem; color: rgba(0,0,0,0.35); margin-top: 3px; }

/* â”€â”€ Bucket visual â”€â”€ */
.bucket-wrap {
  position: relative;
  width: 280px;
  margin: 0 auto;
  /* push bucket down so the chip stage has room above the rim */
  margin-top: 120px;
}
.bucket-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(124,92,252,0.38));
  animation: rim-pulse 2.8s ease-in-out infinite;
}
@keyframes rim-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(124,92,252,0.32)); }
  50%       { filter: drop-shadow(0 0 34px rgba(124,92,252,0.60)); }
}

/* logo sits in the middle of the bucket body */
.bucket-logo-wrap {
  position: absolute;
  top: 52%;          /* SVG body centre (rim=22, base=288, midâ‰ˆ155 / 310 â‰ˆ 50%) */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.bucket-logo {
  height: 90px;
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 18px rgba(124,92,252,0.4));
}

@media (max-width: 600px) {
  .bucket-wrap  { width: 220px; }
  .bucket-logo  { height: 68px; }
  .bucket-chip  { min-width: 200px; }
}

/* â”€â”€ PRICING SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-section {
  padding: 88px 24px 96px;
  background: var(--black);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: rgba(0,0,0,0.015);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  border-color: rgba(124,92,252,0.6);
  transform: translateY(-4px);
  box-shadow: 0 0 44px rgba(109,77,230,0.10), 0 20px 48px rgba(0,0,0,0.06);
}
.pricing-card.featured {
  background: rgba(124,92,252,0.06);
  border-color: rgba(124,92,252,0.35);
  box-shadow: 0 0 60px rgba(124,92,252,0.1), inset 0 1px 0 rgba(0,0,0,0.04);
  transform: translateY(-8px);
}
.pricing-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.06), 0 0 80px rgba(109,77,230,0.12);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 10px;
}
.pricing-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-card .pricing-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  min-height: 56px;
}
.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-note {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.22);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.pricing-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.04);
  margin: 0 0 22px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-features li i {
  color: var(--purple-light);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pricing-features li.muted i { color: rgba(0,0,0,0.14); }
.pricing-features li.muted   { color: rgba(0,0,0,0.18); text-decoration: none; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

/* â”€â”€ CASE STUDIES SCROLL-STACK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* ── CASE STUDY CLIENT BAR ── */
.cs-client-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 0 0;
}
.cs-client-bar img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.cs-client-bar .cs-visit-site {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  transition: opacity 0.2s;
}
.cs-client-bar .cs-visit-site:hover {
  opacity: 0.75;
}
@media (max-width: 600px) {
  .cs-client-bar { padding: 20px 24px 0; }
  .cs-client-bar img { height: 36px; }
  .cs-client-bar .cs-visit-site { font-size: 0.75rem; }
}

/* ── CASE STUDIES CAROUSEL ── */
.cs-section {
  padding: 100px 0 80px;
  overflow: hidden;
}

.cs-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.cs-carousel-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 60px;
}

.cs-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.cs-card {
  flex: 0 0 100%;
  min-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--card);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.cs-card.active {
  opacity: 1;
}

.cs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,92,252,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cs-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
}

.cs-card-client {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.cs-card-title {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: -0.02em;
}

.cs-card-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.50);
  flex: 1;
  margin-top: 4px;
}

.cs-card-stats {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.75rem;
  color: var(--muted);
}

.cs-stat span {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: -0.03em;
}

/* Arrow buttons */
.cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-arrow:hover {
  background: var(--purple-dim, rgba(124,92,252,0.15));
  border-color: rgba(124,92,252,0.5);
  transform: translateY(-50%) scale(1.08);
}
.cs-arrow-left { left: 0; }
.cs-arrow-right { right: 0; }

/* Dots */
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.cs-dot:hover {
  background: rgba(124,92,252,0.4);
}
.cs-dot.active {
  background: var(--purple-light);
  transform: scale(1.3);
}

/* Tablet */
@media (max-width: 900px) {
  .cs-carousel-wrap { max-width: 90%; padding: 0 50px; }
  .cs-card { padding: 36px 40px; }
}

/* Mobile */
@media (max-width: 600px) {
  .cs-section { padding: 60px 0 50px; }
  .cs-carousel-wrap { padding: 0 40px; }
  .cs-card { padding: 28px 24px; gap: 12px; }
  .cs-card-title { font-size: 1.05rem; }
  .cs-card-body { font-size: 0.85rem; line-height: 1.65; }
  .cs-card-stats { gap: 20px; flex-wrap: wrap; }
  .cs-stat span { font-size: 1.3rem; }
  .cs-arrow { width: 36px; height: 36px; font-size: 0.8rem; }
  .cs-arrow-left { left: 2px; }
  .cs-arrow-right { right: 2px; }
  .cs-dots { margin-top: 24px; }
  .cs-header { margin-bottom: 32px; }
}

/* Small phone */
@media (max-width: 400px) {
  .cs-carousel-wrap { padding: 0 32px; }
  .cs-card { padding: 24px 20px; }
  .cs-arrow { width: 30px; height: 30px; font-size: 0.7rem; }
}

/* â”€â”€ AUTOMATION BLUEPRINTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Landing page cards */
.bp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.bp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.22s, transform 0.22s;
}
.bp-card:hover { border-color: var(--purple); transform: translateY(-4px); text-decoration: none; }
.bp-card-icon { font-size: 2rem; line-height: 1; }
.bp-card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--purple-light); }
.bp-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.bp-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; flex: 1; }
.bp-card-stat { font-size: 1.6rem; font-weight: 800; color: var(--purple-light); letter-spacing: -0.04em; line-height: 1; }
.bp-card-cta { font-size: 0.8rem; font-weight: 600; color: var(--purple-light); display: flex; align-items: center; gap: 6px; margin-top: 4px; }

/* Detail page sections */
.bp-section { padding: 72px 5%; }
.bp-section.alt { background: var(--dark); }
.bp-inner { max-width: 960px; margin: 0 auto; }
.bp-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px; }
.bp-section h2 { font-size: 1.9rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.bp-section h2 em { font-style: normal; color: var(--purple-light); }
.bp-section .bp-lead { color: var(--muted); font-size: 1rem; max-width: 640px; margin-bottom: 0; }

/* Flowchart wrapper */
.bp-flow-pair { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.bp-flow-col {}
.bp-flow-col-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.bp-flow-col-label.red { color: #ef4444; }
.bp-flow-col-label.green { color: #22c55e; }
.bp-flow { border-radius: var(--radius); padding: 32px 28px; overflow-x: auto; }
.bp-flow.red { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); }
.bp-flow.green { background: rgba(124,92,252,0.06); border: 1px solid rgba(124,92,252,0.22); }
.bp-flow svg { display: block; width: 100%; }

/* Stats grid */
.bp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.bp-stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; }
.bp-stat-num { font-size: 2rem; font-weight: 800; color: var(--purple-light); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.bp-stat-num.green { color: #22c55e; }
.bp-stat-num.amber { color: #f59e0b; }
.bp-stat-label { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* Steps */
.bp-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.bp-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.bp-step:last-child { border-bottom: none; }
.bp-step-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(124,92,252,0.15); border: 1px solid rgba(124,92,252,0.4); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; color: var(--purple-light); flex-shrink: 0; }
.bp-step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.bp-step-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* Integration pills */
.bp-integrations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.bp-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-size: 0.8rem; font-weight: 600; color: var(--off-white); }
.bp-pill i { font-size: 0.85rem; color: var(--purple-light); }

/* Responsive */
@media (max-width: 900px) {
  .bp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bp-card-grid { grid-template-columns: 1fr; }
  .bp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-section h2 { font-size: 1.4rem; }
  .bp-section { padding: 52px 5%; }
}

/* â”€â”€ Blog Article Pages â”€â”€ */
.article-wrapper { max-width: 760px; margin: 0 auto; padding: 0 5% 80px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.article-meta .blog-tag { margin: 0; }
.article-meta span { font-size: 0.82rem; color: var(--muted); }
.article-meta span i { margin-right: 4px; }
.article-wrapper h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin: 48px 0 16px; color: var(--white); }
.article-wrapper h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; margin: 36px 0 12px; color: var(--white); }
.article-wrapper p { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.article-wrapper strong { color: var(--off-white); font-weight: 600; }
.article-wrapper ul, .article-wrapper ol { padding-left: 20px; margin-bottom: 20px; }
.article-wrapper li { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 8px; }
.article-wrapper blockquote { border-left: 3px solid var(--purple); padding: 16px 24px; margin: 28px 0; background: rgba(124,92,252,0.06); border-radius: 0 var(--radius) var(--radius) 0; }
.article-wrapper blockquote p { color: var(--off-white); margin-bottom: 0; font-style: italic; }
.article-callout { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 32px 0; }
.article-callout h4 { font-size: 0.95rem; font-weight: 700; color: var(--purple-light); margin-bottom: 10px; }
.article-callout p { margin-bottom: 0; }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--purple-light); margin-bottom: 40px; text-decoration: none; transition: color 0.2s; }
.article-back:hover { color: var(--purple); }
.article-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
@media (max-width: 600px) {
  .article-wrapper h2 { font-size: 1.25rem; }
  .article-wrapper { padding: 0 6% 60px; }
}


