/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --bg:              #06060f;
  --bg2:             #0c0c1e;
  --surface:         rgba(255,255,255,0.04);
  --surface-h:       rgba(255,255,255,0.07);
  --border:          rgba(255,255,255,0.07);
  --border-bright:   rgba(255,255,255,0.14);
  --text:            #f0f4ff;
  --text-2:          #94a3b8;
  --text-3:          #64748b;
  --primary:         #0ea5e9;
  --primary-d:       #0284c7;
  --purple:          #8b5cf6;
  --cyan:            #06b6d4;
  --green:           #10b981;
  --red-soft:        #f87171;
  --glow-blue:       rgba(14,165,233,0.25);
  --glow-purple:     rgba(139,92,246,0.2);
  --radius:          14px;
  --radius-lg:       22px;
  --font:            'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-card:     0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow:     0 0 40px rgba(14,165,233,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--purple), var(--cyan), var(--primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shimmer 6s linear infinite;
}
@keyframes gradient-shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .gradient-text { animation: none; background-size: 100% 100%; }
}

/* ============================================================
   GLOBAL PREMIUM BACKGROUND — aurora that drifts across all pages
============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(139,92,246,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 75%, rgba(6,182,212,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 105%, rgba(14,165,233,0.06) 0%, transparent 50%);
  animation: aurora-drift 28s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: scale(1)   translate(0, 0)     rotate(0deg); opacity: 0.85; }
  25%  { transform: scale(1.04) translate(-2%, 1%)  rotate(0.4deg); opacity: 1; }
  50%  { transform: scale(0.97) translate(1%, -1%)  rotate(-0.3deg); opacity: 0.9; }
  75%  { transform: scale(1.03) translate(-1%, 2%)  rotate(0.5deg); opacity: 1; }
  100% { transform: scale(1.05) translate(2%, -0.5%) rotate(-0.4deg); opacity: 0.88; }
}
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

/* Ambient glow nodes — one per section, rotates slowly */
.section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.055) 0%, transparent 65%);
  pointer-events: none;
  animation: node-spin 35s linear infinite;
}
.section:nth-child(even)::before {
  right: auto;
  left: -80px;
  background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 65%);
  animation-duration: 42s;
  animation-direction: reverse;
}
@keyframes node-spin {
  from { transform: rotate(0deg) translateX(40px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) { .section::before { animation: none; } }

/* Shimmer scan line on glass cards on hover */
.glass-card {
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255,255,255,0.05) 50%,
    transparent 62%
  );
  background-size: 250% 100%;
  background-position: -100% 0;
  pointer-events: none;
  transition: background-position 0.7s ease;
}
.glass-card:hover::after { background-position: 220% 0; }

.section {
  padding: 7rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 1.25rem;
  color: var(--text);
  text-wrap: balance;
  max-width: 700px;
}
.section-title br { display: none; }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 680px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14,165,233,0.45);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-secondary:hover {
  background: var(--surface-h);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  font-size: 0.9rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(14,165,233,0.25);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(14,165,233,0.4); }

.btn-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  opacity: 0;
  transition: opacity 0.4s;
  filter: blur(16px);
  z-index: -1;
}
.btn-glow:hover::after { opacity: 0.5; }

.btn-large { font-size: 1.1rem; padding: 1rem 2.5rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.45rem 0.75rem;
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--surface-h); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
  margin-right: auto;
}
.hamburger:hover { background: var(--surface-h); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

/* Animated background */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-drift 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.4), transparent 70%);
  top: -200px; right: -100px;
  animation-duration: 14s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 70%);
  bottom: -100px; left: -150px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.3), transparent 70%);
  top: 50%; left: 50%;
  animation-duration: 10s;
  animation-delay: -3s;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  /* start: both columns share the same top edge; visual is taller so
     it extends below — that is intentional and looks natural */
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

/* ---- Hero Visual Mockup ---- */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.1rem;
  position: relative;
  /* Offset past the badge so cards open at ~headline level.
     Badge height (~28px) + its margin-bottom (1.5rem) ≈ 3.25rem */
  padding-top: 3.25rem;
}

.mock-card {
  background: rgba(12,12,28,0.8);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.mock-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(14,165,233,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* WhatsApp Card */
.whatsapp-card { grid-column: 1; grid-row: 1 / 3; }
.mock-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  flex-shrink: 0;
}
.mock-header-info { flex: 1; }
.mock-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.mock-online { font-size: 0.72rem; color: var(--green); }
.mock-pill {
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.mock-pill.green { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }

.mock-messages { display: flex; flex-direction: column; gap: 0.5rem; }
.mock-msg {
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  max-width: 85%;
  line-height: 1.4;
}
.mock-msg.in {
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  align-self: flex-start;
  border-radius: 2px 10px 10px 10px;
}
.mock-msg.out {
  background: linear-gradient(135deg, rgba(14,165,233,0.25), rgba(139,92,246,0.2));
  color: var(--text);
  align-self: flex-end;
  border-radius: 10px 2px 10px 10px;
}

/* Stats Card */
.stats-card { grid-column: 2; grid-row: 1; }
.stats-card-title { font-size: 0.75rem; font-weight: 700; color: var(--text-3); margin-bottom: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.stats-row { display: flex; gap: 0.5rem; margin-bottom: 0.85rem; }
.stat-block { flex: 1; text-align: center; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-pct::after { content: '%'; font-size: 0.9rem; }
.stat-lbl { font-size: 0.66rem; color: var(--text-3); }
.stats-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.stats-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1) 0.5s;
}

/* CRM Card */
.crm-card { grid-column: 2; grid-row: 2; }
.crm-card-header { font-size: 0.75rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.crm-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0; font-size: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.crm-row:last-child { border-bottom: none; }
.crm-k { color: var(--text-3); width: 42px; flex-shrink: 0; }
.crm-v { color: var(--text-2); }
.crm-status {
  font-size: 0.65rem; font-weight: 700;
  background: rgba(14,165,233,0.15);
  color: var(--primary);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(14,165,233,0.25);
}

/* Flow Card — spans full width below */
.flow-card { grid-column: 1 / 3; }
.flow-card-title { font-size: 0.75rem; font-weight: 700; color: var(--text-3); margin-bottom: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.mini-flow { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.mini-node {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
  white-space: nowrap;
}
.mini-node.done {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.3);
  color: var(--green);
}
.pulse-node {
  background: rgba(14,165,233,0.15) !important;
  border-color: rgba(14,165,233,0.4) !important;
  color: var(--primary) !important;
  animation: pulse-node 2s ease-in-out infinite;
}
.mini-arrow-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.mini-arrow-dot {
  position: absolute;
  top: -2px;
  width: 14px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  animation: arrow-travel 1.8s linear infinite;
}
.flow-running { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--text-3); }
.flow-running-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse-dot 1.5s ease-in-out infinite; }

/* Float animations */
.float-1 { animation: float-a 6s ease-in-out infinite; }
.float-2 { animation: float-b 7s ease-in-out infinite 0.8s; }
.float-3 { animation: float-c 5.5s ease-in-out infinite 1.5s; }
.float-4 { animation: float-a 8s ease-in-out infinite 0.4s; }

/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem-section { background: linear-gradient(to bottom, var(--bg), var(--bg2)); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem-card {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.05), transparent);
  transition: opacity var(--transition);
}
.problem-card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.problem-card:hover::after { opacity: 1; }

.problem-icon-wrap { margin-bottom: 1.25rem; }
.p-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.2);
  position: relative;
}
.p-icon::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 3px;
  background: var(--red-soft);
  opacity: 0.7;
}
.pi-1::after { clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%, 0 60%, 100% 60%, 100% 80%, 0 80%); }
.pi-2::after { clip-path: polygon(0 0, 60% 0, 100% 40%, 100% 100%, 0 100%); border-radius: 2px; }
.pi-3::after { border-radius: 50%; }
.pi-4::after { clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.pi-5::after { clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.pi-6::after { clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%); }

.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.65rem; }
.problem-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   SOLUTION SECTION
============================================================ */
.solution-section { background: var(--bg); }

.solution-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.sol-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.sol-step:hover { border-color: rgba(14,165,233,0.35); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(14,165,233,0.1); }

.sol-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.sol-icon-wrap { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.sol-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.sol-icon::after { display: none; }
.si-1::after { border-radius: 50%; }
.si-2::after { clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); }
.si-3::after { clip-path: polygon(0 20%, 100% 20%, 100% 80%, 50% 100%, 0 80%); border-radius: 2px; }
.si-4::after { clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.si-5::after { clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.si-6::after { clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%); }

.sol-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.4rem; }
.sol-desc { font-size: 0.75rem; color: var(--text-3); line-height: 1.5; }

.sol-connector {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  flex-shrink: 0;
  width: 32px;
}
.sol-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.sol-dot {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  animation: dot-travel 2.5s linear infinite;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section { background: linear-gradient(to bottom, var(--bg2), var(--bg)); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(14,165,233,0.12); }
.service-card:hover::before { opacity: 1; }

.svc-icon-wrap { margin-bottom: 1rem; }
.svc-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  position: relative;
}
.svc-icon::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 2px;
  background: var(--primary);
  opacity: 0.8;
}
.sv-1::after { clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.sv-2::after { border-radius: 2px; }
.sv-3::after { border-radius: 50%; clip-path: none; }
.sv-4::after { clip-path: polygon(0 0, 60% 0, 100% 40%, 100% 100%, 0 100%); border-radius: 2px; }
.sv-5::after { clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 100%); border-radius: 2px; }
.sv-6::after { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.sv-7::after { clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); opacity: 0.9; }
.sv-8::after { clip-path: polygon(0 20%, 50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%); }

.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.35; }
.service-card p { font-size: 0.83rem; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   EXAMPLE FLOW SECTION
============================================================ */
.examples-section { background: var(--bg); }

.example-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  position: relative;
}
.example-steps::before {
  content: '';
  position: absolute;
  right: 26px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--purple), var(--cyan));
  opacity: 0.3;
  border-radius: 2px;
}

.ex-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.ex-step:last-child { border-bottom: none; }
.ex-step:hover .ex-num-wrap { transform: scale(1.1); }

.ex-num-wrap { flex-shrink: 0; }
.ex-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(139,92,246,0.15));
  border: 2px solid rgba(14,165,233,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  position: relative;
  z-index: 1;
  background-color: var(--bg);
  transition: all var(--transition);
}

.ex-content { padding-top: 0.5rem; }
.ex-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.ex-content p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* ============================================================
   INDUSTRIES SECTION
============================================================ */
.industries-section { background: linear-gradient(to bottom, var(--bg), var(--bg2)); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.industry-card {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.industry-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(14,165,233,0.1); }

.ind-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  margin: 0 auto 1.25rem;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  position: relative;
}
.ind-icon::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 3px;
  background: var(--primary);
  opacity: 0.7;
}
.ind-1::after { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.ind-2::after { border-radius: 50%; }
.ind-3::after { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); border-radius: 2px; }
.ind-4::after { clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%); border-radius: 2px; }
.ind-5::after { clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%); }
.ind-6::after { clip-path: polygon(50% 0, 100% 100%, 0 100%); }

.industry-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ============================================================
   BEFORE / AFTER SECTION
============================================================ */
.ba-section { background: var(--bg2); }

.ba-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}

.ba-col {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ba-before { border: 1px solid rgba(248,113,113,0.2); }
.ba-after  { border: 1px solid rgba(16,185,129,0.25); }

.ba-header {
  font-size: 0.9rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ba-before .ba-header { background: rgba(248,113,113,0.08); color: var(--red-soft); border-bottom: 1px solid rgba(248,113,113,0.15); }
.ba-after  .ba-header { background: rgba(16,185,129,0.08); color: var(--green);    border-bottom: 1px solid rgba(16,185,129,0.2); }

.ba-list { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.ba-list li {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.ba-list li::before { content: ''; display: block; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; margin-top: 1px; }
.ba-before .ba-list li::before { background: rgba(248,113,113,0.15); border: 1.5px solid var(--red-soft); }
.ba-after  .ba-list li::before { background: rgba(16,185,129,0.15); border: 1.5px solid var(--green); }

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ba-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  position: relative;
}
.ba-arrow::after {
  content: '←';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(14,165,233,0.5);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: rgba(248,113,113,0.5);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select option { background: #1a1a2e; }

.form-note { font-size: 0.82rem; color: var(--text-3); text-align: center; }
.form-note a { color: var(--primary); text-decoration: underline; }
.form-note a:hover { color: var(--cyan); }

.contact-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card h3 { font-size: 1.15rem; font-weight: 800; }
.contact-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }
.contact-or { text-align: center; font-size: 0.82rem; color: var(--text-3); }
.contact-details { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-detail { display: flex; align-items: center; gap: 0.6rem; }
.detail-label { font-size: 0.78rem; font-weight: 600; color: var(--text-3); min-width: 40px; }
.detail-val { font-size: 0.88rem; color: var(--primary); transition: color var(--transition); }
.detail-val:hover { color: var(--cyan); }

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section { background: linear-gradient(to bottom, var(--bg2), var(--bg)); }

.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(14,165,233,0.3); }

.faq-q {
  width: 100%;
  text-align: right;
  padding: 1.25rem 1.5rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--surface-h); }
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-a[hidden] { display: block; max-height: 0; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.final-cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(14,165,233,0.06) 0%, transparent 100%);
}

.final-cta-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.final-cta-orb {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.12), transparent 70%);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.final-cta-wrap .section-title { position: relative; z-index: 1; margin-inline: auto; text-align: center; }
.final-cta-wrap .section-sub { position: relative; z-index: 1; margin: 0 auto 2.5rem; }

.final-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand .footer-logo { font-size: 1.2rem; font-weight: 900; margin-bottom: 0.5rem; }
.footer-brand .footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 0.83rem; color: var(--text-3); max-width: 320px; line-height: 1.6; }

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }
.footer-links a { font-size: 0.88rem; color: var(--text-2); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible, .reveal-left.visible {
  opacity: 1;
  transform: translate(0,0);
}
/* Reduced motion: always show immediately */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; }
}

/* Stagger children within a revealed parent */
.problem-grid .problem-card:nth-child(2),
.services-grid .service-card:nth-child(2),
.industries-grid .industry-card:nth-child(2) { transition-delay: 0.08s; }
.problem-grid .problem-card:nth-child(3),
.services-grid .service-card:nth-child(3),
.industries-grid .industry-card:nth-child(3) { transition-delay: 0.16s; }
.problem-grid .problem-card:nth-child(4),
.services-grid .service-card:nth-child(4),
.industries-grid .industry-card:nth-child(4) { transition-delay: 0.24s; }
.problem-grid .problem-card:nth-child(5),
.services-grid .service-card:nth-child(5),
.industries-grid .industry-card:nth-child(5) { transition-delay: 0.32s; }
.problem-grid .problem-card:nth-child(6),
.services-grid .service-card:nth-child(6),
.industries-grid .industry-card:nth-child(6) { transition-delay: 0.4s; }

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.45; }
  33%       { transform: translate(20px,-25px) scale(1.08); opacity: 0.5; }
  66%       { transform: translate(-15px,18px) scale(0.95); opacity: 0.4; }
}

@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(-6px); }
  50%       { transform: translateY(8px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(-10px); }
  50%       { transform: translateY(4px); }
}

@keyframes pulse-node {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

@keyframes arrow-travel {
  from { right: -20px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  to   { right: calc(100% + 4px); opacity: 0; }
}

@keyframes dot-travel {
  from { right: -12px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  to   { right: calc(100% + 4px); opacity: 0; }
}

/* ============================================================
   PREFERS REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Content stays first (matches HTML order); visual follows below */
  .hero-container { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 2.5rem; }
  /* Reset desktop offset — no need to offset when stacked vertically */
  .hero-visual { padding-top: 0; }
  .hero-content { text-align: center; }
  .hero-sub { max-width: none; }
  .hero-avatar-row { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .trust-badges { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { order: -1; }
  .contact-card { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .solution-flow { gap: 0.75rem; }
  .hero-bullets { align-items: center; }
  .hero-bullet { text-align: center; }
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-connector { display: none; }
  .solution-flow { flex-direction: column; overflow-x: visible; }
  .sol-step { width: 100%; }
  .navbar .nav-links,
  .navbar .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* Mobile navbar — always opaque, clean layout */
  .navbar {
    background: rgba(6,6,15,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
  }
  /* Centered logo, theme toggle left, hamburger right */
  .nav-container {
    position: relative;
    justify-content: center;
    gap: 0;
  }
  .logo {
    position: relative;
    z-index: 1;
  }
  .nav-actions {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }
  .nav-actions > * { pointer-events: auto; }
  .hamburger {
    order: 1;
    margin-right: 0;
  }
  .theme-toggle {
    order: 2;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100dvh;
    background: rgba(6,6,15,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
    animation: menu-open 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open a { font-size: 1.3rem; font-weight: 700; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.65rem; }

  /* Hero — content visible above the fold, visual hidden to save space */
  .hero { padding-top: 3.75rem; min-height: auto; }
  .hero-container { padding-top: 1.25rem; padding-bottom: 1.5rem; gap: 0; }
  .hero-headline { font-size: 1.55rem; line-height: 1.3; margin-bottom: 1rem; }
  .hero-headline br { display: none; }
  .hero-badge { margin-bottom: 1rem; }
  .hero-bullets { margin-bottom: 1.25rem; gap: 0.3rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
  .hero-trust-row { justify-content: center; margin-bottom: 1.25rem; gap: 0.4rem; }
  .trust-badges { gap: 0.4rem; }
  /* Show 2 animated hero cards on mobile for wow factor */
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 0;
  }
  .whatsapp-card { grid-column: 1; grid-row: auto; }
  .flow-card     { grid-column: 1; grid-row: auto; }
  .stats-card    { display: none; }
  .crm-card      { display: none; }

  .problem-grid  { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .ba-grid { flex-direction: column; }
  .ba-divider { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; }
  .final-ctas { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 1.5rem; }
  .example-steps::before { right: 24px; }
}

@keyframes menu-open {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO — Personal intro additions
============================================================ */
.hero-intro-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.hero-bullet {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0.85;
  position: relative;
  padding-right: 1.2rem;
}
.hero-bullet::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
}

/* ============================================================
   SOLUTION — flow direction wrapper & indicator
============================================================ */
.solution-flow-wrap { width: 100%; }

.sol-flow-direction {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sol-flow-arrow-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.sol-flow-arrow-dot {
  position: absolute;
  top: -2px;
  width: 18px;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  animation: dot-travel 2s linear infinite;
}

/* 5-step flow — make last step visually distinct */
.sol-step:last-child {
  border: 1px solid rgba(14,165,233,0.3);
  background: rgba(14,165,233,0.04);
}

/* ============================================================
   HERO FLOW CARD — 5-node mini-flow layout
============================================================ */
.flow-card .mini-flow {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.flow-card .mini-node { flex-shrink: 0; font-size: 0.65rem; padding: 0.28rem 0.55rem; }
.flow-card .mini-arrow-line { min-width: 18px; }

.flow-direction-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  font-size: 0.65rem;
  color: var(--text-3);
}
.flow-start-label { flex-shrink: 0; }
.flow-end-label   { flex-shrink: 0; }
.flow-direction-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, var(--primary), transparent);
  position: relative;
}
.flow-direction-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 5px solid var(--primary);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text { }
.about-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.about-text p {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-cta { margin-top: 1.5rem; }

.about-examples {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.about-examples-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.about-examples-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-example-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.aei-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 8px var(--glow-blue);
}
.about-example-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.about-example-item span {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ============================================================
   MOCKUPS SECTION
============================================================ */
.mockups-section { background: var(--bg); }

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mockup-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mockup-showcase-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}
.mockup-inner {
  flex: 1;
}
.mockup-showcase-desc {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.5;
  padding: 0 0.25rem;
}

/* Airtable CRM mock */
.airtable-mock {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.at-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 0;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.75rem;
}
.at-row:last-child { border-bottom: none; }
.at-header {
  background: rgba(255,255,255,0.04);
  color: var(--text-3);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.at-source {
  color: var(--text-2);
  font-size: 0.72rem;
}
.at-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  align-self: center;
}
.status-open { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.status-in   { background: rgba(14,165,233,0.12); color: var(--primary); border: 1px solid rgba(14,165,233,0.25); }
.status-done { background: rgba(16,185,129,0.12); color: var(--green); border: 1px solid rgba(16,185,129,0.25); }

/* Weekly Report mock */
.report-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.report-title { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.report-date { font-size: 0.72rem; color: var(--text-3); margin-top: 0.15rem; }
.report-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.report-stat { text-align: center; }
.rs-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.rs-green { color: var(--green); }
.rs-blue  { color: var(--primary); }
.rs-label { font-size: 0.68rem; color: var(--text-3); }
.report-bar-section { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--text-3); }
.rb-label { flex-shrink: 0; }
.rb-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rb-fill  { height: 100%; background: linear-gradient(90deg, var(--primary), var(--purple)); border-radius: 3px; }
.rb-pct   { flex-shrink: 0; color: var(--primary); font-weight: 700; }

/* Appointment reminder mock */
.reminder-msg { font-size: 0.75rem !important; line-height: 1.6 !important; }
.reminder-sub { color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 400; }

/* ============================================================
   RESPONSIVE — new sections
============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mockups-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-intro-name { font-size: 1rem; }
  .sol-flow-direction { display: none; }
  .mockups-grid { gap: 1.25rem; }
  .hero-bullets { gap: 0.25rem; }
  .about-examples { padding: 1.25rem; }
}

/* ============================================================
   NAV ACTIONS — theme toggle wrapper
============================================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14,165,233,0.28), rgba(139,92,246,0.22));
  border: 1px solid rgba(14,165,233,0.45);
  box-shadow: 0 2px 10px rgba(14,165,233,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.theme-toggle:hover {
  background: linear-gradient(135deg, rgba(14,165,233,0.45), rgba(139,92,246,0.38));
  border-color: rgba(14,165,233,0.65);
  transform: scale(1.1) rotate(12deg);
  box-shadow: 0 4px 18px rgba(14,165,233,0.35);
}
.tt-icon {
  display: block;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  user-select: none;
}
.tt-icon::before { content: '☀'; }
body.light-mode .tt-icon::before { content: '🌙'; }
body.light-mode .theme-toggle {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.18);
  box-shadow: none;
}
body.light-mode .tt-icon { color: var(--text); }

/* ============================================================
   LIGHT MODE — full theme override
============================================================ */
body.light-mode {
  --bg:            #f4f6fb;
  --bg2:           #e8ecf5;
  --surface:       rgba(255,255,255,0.88);
  --surface-h:     rgba(255,255,255,0.98);
  --border:        rgba(0,0,0,0.09);
  --border-bright: rgba(0,0,0,0.16);
  --text:          #0f172a;
  --text-2:        #334155;
  --text-3:        #64748b;
  --primary:       #0284c7;
  --primary-d:     #0369a1;
  --purple:        #7c3aed;
  --cyan:          #0891b2;
  --green:         #059669;
  --red-soft:      #ef4444;
  --glow-blue:     rgba(2,132,199,0.12);
  --glow-purple:   rgba(124,58,237,0.1);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.1);
  --shadow-glow:   0 0 40px rgba(2,132,199,0.1);
}

/* Navbar scrolled */
body.light-mode .navbar.scrolled {
  background: rgba(244,246,251,0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
@media (max-width: 900px) {
  body.light-mode .navbar {
    background: rgba(244,246,251,0.96);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
  }
}
body.light-mode .theme-toggle:hover {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.2);
}

/* Mobile menu */
body.light-mode .nav-links.open {
  background: rgba(244,246,251,0.97);
}

/* Hero grid + orbs */
body.light-mode .hero-grid-lines {
  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);
}
body.light-mode .orb-1 { background: radial-gradient(circle, rgba(2,132,199,0.22), transparent 70%); opacity: 0.35; }
body.light-mode .orb-2 { background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%); opacity: 0.3; }
body.light-mode .orb-3 { background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%); opacity: 0.25; }

/* Mock cards */
body.light-mode .mock-card {
  background: rgba(255,255,255,0.96);
  border-color: rgba(0,0,0,0.1);
}
body.light-mode .mock-card::before {
  background: linear-gradient(135deg, rgba(2,132,199,0.04) 0%, transparent 60%);
}
body.light-mode .mock-msg.in {
  background: rgba(0,0,0,0.05);
  color: var(--text-2);
}
body.light-mode .mock-msg.out {
  background: linear-gradient(135deg, rgba(2,132,199,0.18), rgba(124,58,237,0.12));
  color: var(--text);
}

/* Mini flow */
body.light-mode .mini-node {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-2);
}
body.light-mode .mini-arrow-line { background: rgba(0,0,0,0.08); }

/* Stats card */
body.light-mode .stats-bar-wrap { background: rgba(0,0,0,0.08); }

/* CRM rows */
body.light-mode .crm-row { border-bottom-color: rgba(0,0,0,0.05); }

/* Form inputs */
body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.14);
  color: var(--text);
}
body.light-mode .form-group select option { background: #f4f6fb; color: #0f172a; }

/* Airtable mock */
body.light-mode .at-row { border-bottom-color: rgba(0,0,0,0.06); }
body.light-mode .at-header { background: rgba(0,0,0,0.04); }

/* Solution flow */
body.light-mode .sol-line { background: rgba(0,0,0,0.1); }

/* Report */
body.light-mode .rb-track { background: rgba(0,0,0,0.08); }

/* Footer */
body.light-mode .footer {
  background: rgba(0,0,0,0.04);
  border-top-color: rgba(0,0,0,0.09);
}

/* Final CTA section */
body.light-mode .final-cta-section::before {
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(2,132,199,0.07) 0%, transparent 100%);
}
body.light-mode .final-cta-orb {
  background: radial-gradient(circle, rgba(2,132,199,0.1), transparent 70%);
}

/* Stats strip light */
body.light-mode .stats-strip {
  background: linear-gradient(to right, rgba(2,132,199,0.06), rgba(124,58,237,0.06));
  border-color: rgba(0,0,0,0.08);
}
body.light-mode .ss-divider { background: rgba(0,0,0,0.1); }

/* Testimonials light */
body.light-mode .testimonial-card { background: rgba(255,255,255,0.9); }
body.light-mode .testimonial-footer { border-top-color: rgba(0,0,0,0.07); }

/* Toast light */
body.light-mode .toast-notification {
  background: rgba(255,255,255,0.97);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* ============================================================
   HERO — scarcity element + pulsing CTA
============================================================ */
.hero-scarcity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: var(--text-2);
  margin-top: -0.75rem;
  margin-bottom: 2rem;
}
.hero-scarcity strong { color: var(--green); font-weight: 700; }
.scarcity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(16,185,129,0.7);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Pulsing primary CTA */
@keyframes btn-pulse-anim {
  0%, 100% { box-shadow: 0 4px 20px rgba(14,165,233,0.3), 0 0 0 0 rgba(14,165,233,0); }
  60%       { box-shadow: 0 4px 20px rgba(14,165,233,0.45), 0 0 0 10px rgba(14,165,233,0); }
}
.btn-pulse { animation: btn-pulse-anim 2.8s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: linear-gradient(to right, rgba(14,165,233,0.07), rgba(139,92,246,0.07));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.85rem 0;
}
.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ss-item { text-align: center; flex: 1; min-width: 110px; }
.ss-num {
  font-size: 2.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ss-label { font-size: 0.8rem; color: var(--text-2); line-height: 1.45; max-width: 130px; margin: 0 auto; }
.ss-divider {
  width: 1px;
  height: 44px;
  background: var(--border-bright);
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section { background: var(--bg2); }

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  opacity: 0;
  transition: opacity var(--transition);
}
.testimonial-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(14,165,233,0.1); }
.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote {
  font-size: 3.5rem;
  line-height: 0.75;
  color: var(--primary);
  opacity: 0.35;
  font-family: Georgia, 'Times New Roman', serif;
  user-select: none;
}
.testimonial-text {
  font-size: 0.91rem;
  color: var(--text-2);
  line-height: 1.8;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border-bright);
  position: relative;
}
.tv-1 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.tv-2 { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); }
.tv-3 { background: linear-gradient(135deg, #10b981 0%, #0891b2 100%); }

.testimonial-info { flex: 1; min-width: 0; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.74rem; color: var(--text-3); margin-top: 0.1rem; }
.testimonial-badge {
  font-size: 0.64rem;
  font-weight: 700;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  color: var(--primary);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
  align-self: flex-start;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
/* ============================================================
   HERO TRUST ROW — below CTAs
============================================================ */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.htr-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-3);
}
.htr-check {
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}
.htr-sep {
  color: var(--border-bright);
  font-size: 1rem;
  line-height: 1;
}

/* ============================================================
   HERO AVATAR ROW — personal photo above badge
============================================================ */
.hero-avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(14,165,233,0.55);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12), 0 4px 16px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.hero-avatar-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-avatar-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-avatar-role {
  font-size: 0.74rem;
  color: var(--text-3);
  line-height: 1;
}

/* ============================================================
   MOCKUP SCREENSHOT — real screenshot inside card
============================================================ */
.mockup-screenshot-wrap {
  padding: 0;
  overflow: hidden;
}
.mockup-screenshot-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
}
.mockup-screenshot-wrap:hover .mockup-screenshot-img {
  transform: scale(1.03);
}

/* ============================================================
   WA REPLY BADGE — persistent tag above floating button
============================================================ */
.wa-reply-badge {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%);
  background: rgba(10,20,14,0.92);
  border: 1px solid rgba(37,211,102,0.35);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  animation: wa-badge-in 0.5s ease 5s forwards;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@keyframes wa-badge-in {
  from { opacity: 0; transform: translateX(50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(50%) translateY(0); }
}

.floating-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37,211,102,0.65);
}
.floating-wa svg { width: 32px; height: 32px; fill: #fff; }
.floating-wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.55);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   TOAST NOTIFICATION
============================================================ */
.toast-notification {
  position: fixed;
  bottom: 5.75rem;
  right: 1.75rem;
  background: var(--bg2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem;
  max-width: 360px;
  z-index: 890;
  box-shadow: 0 8px 48px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.toast-notification[hidden] { display: none; }

@keyframes toast-in {
  from { transform: translateY(16px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes toast-out {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to   { transform: translateY(16px) scale(0.97); opacity: 0; }
}
.toast-notification { animation: toast-in 0.38s cubic-bezier(0.4,0,0.2,1) both; }
.toast-notification.hiding { animation: toast-out 0.3s cubic-bezier(0.4,0,0.2,1) forwards; }

.toast-close {
  position: absolute;
  top: 0.65rem;
  left: 0.8rem;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--text-3);
  padding: 0.2rem 0.45rem;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
}
.toast-close:hover { color: var(--text); background: var(--surface-h); }

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.toast-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.toast-text { flex: 1; min-width: 0; }
.toast-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.toast-text span { font-size: 0.78rem; color: var(--text-2); line-height: 1.4; }
.toast-cta {
  font-size: 0.82rem !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — new elements
============================================================ */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .testimonials-grid .testimonial-card:nth-child(2),
  .testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0; }
  .ss-divider { display: none; }
  .stats-strip-inner { justify-content: center; gap: 1.5rem 2.5rem; }
}

@media (max-width: 640px) {
  .floating-wa { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
  .floating-wa svg { width: 26px; height: 26px; }
  .toast-notification { right: 0.75rem; left: 0.75rem; bottom: 5rem; max-width: none; }
  .hero-scarcity { font-size: 0.78rem; margin-bottom: 1.5rem; }
  .ss-num { font-size: 1.7rem; }
  .testimonial-badge { display: none; }
  .a11y-widget { bottom: 1.25rem; left: 1.25rem; }
  .a11y-panel { width: 220px; }
  .sticky-cta-text { display: none; }
}

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--purple), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2000;
  pointer-events: none;
  transition: transform 0.08s linear;
}

/* ============================================================
   STICKY CTA BAR
============================================================ */
.sticky-cta-bar {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 990;
  background: rgba(6,6,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-bright);
  padding: 0.65rem 0;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.sticky-cta-bar.visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sticky-cta-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
}
.sticky-cta-btn {
  font-size: 0.85rem !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 8px !important;
  flex-shrink: 0;
}
body.light-mode .sticky-cta-bar { background: rgba(244,246,251,0.95); }

/* ============================================================
   TESTIMONIAL STARS
============================================================ */
.testimonial-stars {
  font-size: 1.05rem;
  color: #f59e0b;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* ============================================================
   HERO BULLETS — stagger entrance
============================================================ */
.hero-content .hero-bullet {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-content.visible .hero-bullet              { opacity: 0.85; transform: none; }
.hero-content.visible .hero-bullet:nth-child(1) { transition-delay: 0.3s; }
.hero-content.visible .hero-bullet:nth-child(2) { transition-delay: 0.46s; }
.hero-content.visible .hero-bullet:nth-child(3) { transition-delay: 0.62s; }
@media (prefers-reduced-motion: reduce) {
  .hero-content .hero-bullet { opacity: 0.85; transform: none; transition: none; }
}

/* ============================================================
   HERO PARTICLES
============================================================ */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-drift ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes particle-drift {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.12; }
  25%       { transform: translateY(-22px) translateX(9px);  opacity: 0.38; }
  50%       { transform: translateY(-14px) translateX(-6px); opacity: 0.18; }
  75%       { transform: translateY(-28px) translateX(13px); opacity: 0.3; }
}

/* ============================================================
   WHATSAPP TOOLTIP
============================================================ */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a2e22;
  border: 1px solid rgba(37,211,102,0.4);
  color: #25d366;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(-50%) translateX(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(37,211,102,0.4);
}
.wa-tooltip.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   EXIT INTENT POPUP
============================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: exit-overlay-in 0.3s ease;
}
.exit-popup-overlay[hidden] { display: none; }
@keyframes exit-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.exit-popup {
  background: var(--bg2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(14,165,233,0.08);
  animation: exit-popup-in 0.38s cubic-bezier(0.34,1.4,0.64,1);
  text-align: right;
}
@keyframes exit-popup-in {
  from { transform: scale(0.88) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-popup-close {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-3);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.exit-popup-close:hover { color: var(--text); background: var(--surface-h); }

.exit-popup-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.exit-popup-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.exit-popup-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.exit-popup-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  direction: rtl;
  text-align: right;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.exit-popup-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.exit-popup-input.error { border-color: var(--red-soft); }
.exit-popup-input::placeholder { color: var(--text-3); }

.exit-popup-btn { width: 100%; }

.exit-popup-note {
  font-size: 0.74rem;
  color: var(--text-3);
  text-align: center;
}

/* Light mode */
body.light-mode .exit-popup {
  background: var(--bg2);
  border-color: var(--border-bright);
}

/* ============================================================
   ACCESSIBILITY WIDGET
============================================================ */
.a11y-widget {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.a11y-main-btn {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(6,182,212,0.25));
  border: 1px solid rgba(139,92,246,0.5);
  box-shadow: 0 2px 14px rgba(139,92,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
}
.a11y-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 22px rgba(139,92,246,0.4);
  background: linear-gradient(135deg, rgba(139,92,246,0.5), rgba(6,182,212,0.35));
}
body.light-mode .a11y-main-btn {
  background: rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.2);
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.a11y-panel {
  background: var(--bg2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  width: 240px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: panel-slide-in 0.25s cubic-bezier(0.4,0,0.2,1) both;
  margin-bottom: 0.4rem;
}
.a11y-panel[hidden] { display: none; }
@keyframes panel-slide-in {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.a11y-panel-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.a11y-row + .a11y-row { border-top: 1px solid var(--border); }
.a11y-row-label { font-size: 0.83rem; color: var(--text-2); }

.a11y-font-btns { display: flex; gap: 0.3rem; }

.a11y-btn {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: var(--surface-h);
  border: 1px solid var(--border-bright);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.a11y-btn:hover { background: rgba(14,165,233,0.15); border-color: rgba(14,165,233,0.4); color: var(--primary); }

.a11y-toggle {
  min-width: 52px;
  text-align: center;
}
.a11y-toggle[aria-pressed="true"] {
  background: rgba(14,165,233,0.2);
  border-color: rgba(14,165,233,0.45);
  color: var(--primary);
}

/* ============================================================
   ABOUT — personal photo card
============================================================ */
.about-photo-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-photo-wrap:hover {
  border-color: rgba(14,165,233,0.3);
  box-shadow: 0 4px 24px rgba(14,165,233,0.08);
}

.about-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2.5px solid rgba(14,165,233,0.5);
  box-shadow: 0 0 0 5px rgba(14,165,233,0.08), 0 0 28px rgba(14,165,233,0.18);
  flex-shrink: 0;
  display: block;
  animation: photo-float 5s ease-in-out infinite;
}

@keyframes photo-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 5px rgba(14,165,233,0.08), 0 0 28px rgba(14,165,233,0.18);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 6px 36px rgba(14,165,233,0.25), 0 0 0 5px rgba(14,165,233,0.1);
  }
}

.about-photo-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.about-photo-info > span {
  display: block;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.about-photo-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.22);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
}

@media (max-width: 500px) {
  .about-photo-wrap { flex-direction: column; text-align: center; }
  .about-photo { width: 80px; height: 80px; }
  .about-photo-info > span { display: block; }
}

/* ============================================================
   ICONS — emoji upgrade (problem / solution / service cards)
============================================================ */

/* Problem cards */
.p-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.p-icon::after { content: none; }
.pi-1::before { content: '📡'; }
.pi-2::before { content: '💬'; }
.pi-3::before { content: '📋'; }
.pi-4::before { content: '📅'; }
.pi-5::before { content: '⏰'; }
.pi-6::before { content: '📊'; }

/* Solution steps */
.sol-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.sol-icon::after { content: none; }
.si-1::before { content: '📝'; }
.si-2::before { content: '🗂️'; }
.si-3::before { content: '💬'; }
.si-4::before { content: '🔔'; }
.si-5::before { content: '🔄'; }

/* Service cards */
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.svc-icon::after { content: none; }
.sv-1::before { content: '💬'; }
.sv-2::before { content: '🗂️'; }
.sv-3::before { content: '🔔'; }
.sv-4::before { content: '📧'; }
.sv-5::before { content: '📊'; }
.sv-6::before { content: '📈'; }
.sv-7::before { content: '📱'; }
.sv-8::before { content: '👤'; }

/* ============================================================
   HIGH CONTRAST MODE
============================================================ */
body.high-contrast {
  --bg:            #000000;
  --bg2:           #0a0a0a;
  --surface:       rgba(255,255,255,0.1);
  --surface-h:     rgba(255,255,255,0.16);
  --border:        rgba(255,255,255,0.28);
  --border-bright: rgba(255,255,255,0.45);
  --text:          #ffffff;
  --text-2:        #eeeeee;
  --text-3:        #cccccc;
  --primary:       #00d4ff;
  --cyan:          #00ffcc;
  --purple:        #cc88ff;
  --green:         #00ff88;
  --red-soft:      #ff6666;
}
body.high-contrast .mock-card { background: #050505; }
body.high-contrast .navbar.scrolled { background: #000; }
body.high-contrast .nav-links.open  { background: #000; }

/* ============================================================
   STOP ANIMATIONS MODE
============================================================ */
body.no-animations *,
body.no-animations *::before,
body.no-animations *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* ============================================================
   PREMIUM UPGRADE — SVG ICON SYSTEM
   Replaces CSS emoji ::before with real SVG
============================================================ */
.p-icon::before,   .p-icon::after,
.sol-icon::before, .sol-icon::after,
.svc-icon::before, .svc-icon::after { content: none !important; }

.p-icon, .sol-icon, .svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-icon svg, .sol-icon svg, .svc-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.p-icon   { color: var(--red-soft); }
.sol-icon { color: var(--primary); }
.svc-icon { color: var(--primary); }
.ind-icon::after { content: none !important; }
.ind-icon { display: flex; align-items: center; justify-content: center; color: var(--primary); }
.ind-icon svg { width: 26px; height: 26px; }

/* Slightly larger service card icons */
.svc-icon { width: 44px; height: 44px; border-radius: 10px; }
.svc-icon-wrap { margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1rem; }
.service-card { cursor: default; }

/* ============================================================
   PROCESS SECTION — How We Work Together
============================================================ */
.process-section { background: linear-gradient(to bottom, var(--bg2), var(--bg)); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3.5rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  right: calc(10% + 31px);
  left: calc(10% + 31px);
  height: 2px;
  background: linear-gradient(to left, var(--cyan), var(--primary), var(--purple));
  opacity: 0.22;
  border-radius: 2px;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}
.proc-num-wrap {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  box-shadow: 0 2px 14px rgba(0,0,0,0.28);
}
.process-step:hover .proc-num-wrap {
  border-color: var(--primary);
  box-shadow: 0 0 0 7px rgba(14,165,233,0.08), 0 4px 20px rgba(14,165,233,0.15);
}
.proc-num {
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.proc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.proc-desc {
  font-size: 0.76rem;
  color: var(--text-3);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.25rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 580px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; }
}
body.light-mode .proc-num-wrap {
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.14);
}

/* ============================================================
   TRUST SECTION — Reliability & Transparency
============================================================ */
.trust-section { background: var(--bg2); }

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.trust-item {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trust-item:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(16,185,129,0.07);
}
.trust-item-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 0.85rem;
}
.trust-item-icon svg { width: 18px; height: 18px; }
.trust-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.trust-item-desc {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
}

.trust-visual-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.trust-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}
.trust-visual-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.trust-check-list { display: flex; flex-direction: column; gap: 0.9rem; }
.trust-check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.trust-check-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1.5px solid rgba(16,185,129,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.trust-check-icon svg { width: 13px; height: 13px; }

@media (max-width: 1024px) {
  .trust-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}
body.light-mode .trust-visual-card { background: rgba(255,255,255,0.92); }
body.light-mode .trust-item-icon { background: rgba(5,150,105,0.07); border-color: rgba(5,150,105,0.18); }
body.light-mode .trust-check-icon { background: rgba(5,150,105,0.09); border-color: rgba(5,150,105,0.28); }

/* ============================================================
   PRICING SECTION
============================================================ */
.pricing-section { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  opacity: 0;
  transition: opacity var(--transition);
}
.pricing-card:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(14,165,233,0.1);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: rgba(14,165,233,0.32);
  background: linear-gradient(160deg, rgba(14,165,233,0.07) 0%, rgba(139,92,246,0.04) 100%);
}
.pricing-card.featured::before { opacity: 1; }
.pricing-card.featured:hover { box-shadow: 0 20px 60px rgba(14,165,233,0.15); }

.plan-popular-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.28);
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
}

.plan-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.plan-icon svg { width: 24px; height: 24px; }
.pricing-card:hover .plan-icon {
  background: rgba(14,165,233,0.14);
  border-color: rgba(14,165,233,0.3);
}

.plan-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}
.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.plan-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.plan-price-wrap {
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.plan-price-label {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.plan-price-note {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.5;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.45;
}
.plan-feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1.5px solid rgba(16,185,129,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 1px;
}
.plan-feature-check svg { width: 10px; height: 10px; }

.plan-cta { width: 100%; }

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 620px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-disclaimer strong { color: var(--text-2); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-card { padding: 1.75rem 1.5rem; }
}

body.light-mode .pricing-card.featured {
  background: linear-gradient(160deg, rgba(2,132,199,0.04) 0%, rgba(124,58,237,0.03) 100%);
}
body.light-mode .plan-popular-badge {
  background: rgba(2,132,199,0.09);
  border-color: rgba(2,132,199,0.22);
}

/* ============================================================
   ENHANCED SECTION POLISH
============================================================ */
/* Tighter hero-content spacing on large screens */
@media (min-width: 1100px) {
  .hero-container { gap: 5rem; }
}

/* Richer section subtitle line-length */
.section-sub { max-width: 660px; }

/* Stagger delays for pricing + trust grids */
.trust-grid .trust-item:nth-child(2) { transition-delay: 0.07s; }
.trust-grid .trust-item:nth-child(3) { transition-delay: 0.14s; }
.trust-grid .trust-item:nth-child(4) { transition-delay: 0.21s; }
.trust-grid .trust-item:nth-child(5) { transition-delay: 0.28s; }
.trust-grid .trust-item:nth-child(6) { transition-delay: 0.35s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(2) { transition-delay: 0.07s; }
.process-step:nth-child(3) { transition-delay: 0.14s; }
.process-step:nth-child(4) { transition-delay: 0.21s; }
.process-step:nth-child(5) { transition-delay: 0.28s; }

/* ============================================================
   INTRO / SPLASH SCREEN
============================================================ */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #06060f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
#intro-screen.hidden {
  opacity: 0;
  transform: scale(1.07);
  pointer-events: none;
}

/* Central glow orb */
.intro-glow-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(14,165,233,0.2) 0%,
    rgba(139,92,246,0.13) 35%,
    transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: intro-orb-breathe 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes intro-orb-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
  50%       { transform: translate(-50%, -50%) scale(1.22); opacity: 1; }
}

/* Floating particles */
.intro-particles { position: absolute; inset: 0; pointer-events: none; }
.intro-dot {
  position: absolute;
  border-radius: 50%;
}
.intro-dot-1 {
  width: 6px; height: 6px;
  top: 28%; left: 18%;
  background: rgba(14,165,233,0.5);
  animation: intro-float-a 4.2s ease-in-out infinite;
}
.intro-dot-2 {
  width: 4px; height: 4px;
  top: 68%; left: 76%;
  background: rgba(139,92,246,0.55);
  animation: intro-float-b 3.6s ease-in-out 0.6s infinite;
}
.intro-dot-3 {
  width: 9px; height: 9px;
  top: 18%; left: 72%;
  background: rgba(6,182,212,0.4);
  animation: intro-float-a 5.1s ease-in-out 1.1s infinite;
}
.intro-dot-4 {
  width: 5px; height: 5px;
  top: 75%; left: 22%;
  background: rgba(16,185,129,0.45);
  animation: intro-float-b 4.5s ease-in-out 0.3s infinite;
}
@keyframes intro-float-a {
  0%, 100% { transform: translateY(0)    scale(1);   opacity: 0.35; }
  50%       { transform: translateY(-20px) scale(1.3); opacity: 0.9; }
}
@keyframes intro-float-b {
  0%, 100% { transform: translate(0, 0)        scale(1);   opacity: 0.35; }
  50%       { transform: translate(14px, -14px) scale(1.4); opacity: 0.9; }
}

/* Inner content */
.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  position: relative;
  z-index: 1;
  text-align: center;
  direction: ltr;
}

/* Logo */
.intro-logo {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  animation: intro-logo-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes intro-logo-in {
  from { opacity: 0; transform: translateY(36px) scale(0.86); filter: blur(16px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.intro-logo-text {
  font-size: clamp(2.6rem, 8.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #ffffff;
  line-height: 1;
}
.intro-logo-ai {
  font-size: clamp(1.2rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 0.35em;
  animation: intro-ai-pop 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
@keyframes intro-ai-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.8); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* Tagline */
.intro-sub {
  font-size: clamp(0.8rem, 1.8vw, 0.93rem);
  color: rgba(255, 255, 255, 0.27);
  font-weight: 400;
  letter-spacing: 0.05em;
  direction: rtl;
  animation: intro-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
@keyframes intro-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Progress bar */
.intro-loader {
  width: 155px;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  overflow: hidden;
  animation: intro-fade-up 0.6s ease 0.5s both;
}
.intro-loader-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #06b6d4, #0ea5e9);
  background-size: 200% 100%;
  animation:
    intro-bar-fill 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both,
    intro-bar-shimmer 1.8s linear 0.45s infinite;
}
@keyframes intro-bar-fill {
  from { width: 0%; }
  to   { width: 100%; }
}
@keyframes intro-bar-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Light mode: keep intro dark (it's a brand moment) */
body.light-mode #intro-screen { background: #06060f; }

/* Disable intro for reduced motion */
@media (prefers-reduced-motion: reduce) {
  #intro-screen { display: none !important; }
}

/* ============================================================
   HERO ENTRANCE — STAGGERED ANIMATIONS
============================================================ */

/* Override container-level reveal — animate children individually */
.hero-content.reveal,
.hero-content.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  filter: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-avatar-row { animation: hero-item-rise 0.78s cubic-bezier(0.16,1,0.3,1) 0.08s  both; }
  .hero-badge      { animation: hero-item-rise 0.78s cubic-bezier(0.16,1,0.3,1) 0.2s   both; }
  .hero-headline   { animation: hero-item-rise 0.9s  cubic-bezier(0.16,1,0.3,1) 0.34s  both; }
  .hero-bullets    { animation: hero-item-rise 0.76s cubic-bezier(0.16,1,0.3,1) 0.5s   both; }
  .hero-ctas       { animation: hero-item-rise 0.76s cubic-bezier(0.16,1,0.3,1) 0.64s  both; }
  .hero-trust-row  { animation: hero-item-rise 0.72s cubic-bezier(0.16,1,0.3,1) 0.76s  both; }
  .hero-scarcity   { animation: hero-item-rise 0.72s cubic-bezier(0.16,1,0.3,1) 0.86s  both; }
  .trust-badges    { animation: hero-item-rise 0.72s cubic-bezier(0.16,1,0.3,1) 0.95s  both; }

  @keyframes hero-item-rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
  }

  /* Hero visual — override reveal-left with more dramatic animation */
  .hero-visual.reveal-left {
    transition: none !important;
    animation: hero-visual-in 0.98s cubic-bezier(0.16,1,0.3,1) 0.42s both !important;
  }
  .hero-visual.reveal-left.visible {
    transition: none !important;
    transform: none !important;
    animation: hero-visual-in 0.98s cubic-bezier(0.16,1,0.3,1) 0.42s both !important;
  }
  @keyframes hero-visual-in {
    from { opacity: 0; transform: translateX(-65px) scale(0.93); }
    to   { opacity: 1; transform: none; }
  }
}

/* ============================================================
   SCROLL REVEAL — BLUR UPGRADE (premium feel)
   :not(.visible) = slow cinematic entrance
   .visible       = fast for hover/tilt interactivity
============================================================ */
.reveal:not(.visible) {
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left:not(.visible) {
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible,
.reveal-left.visible {
  transform: none;
  transition: opacity 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

/* ============================================================
   PROCESS SECTION — Bento card redesign
============================================================ */
.proc-bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.proc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.4rem 1.5rem;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.proc-card:hover { transform: translateY(-5px); }

.proc-card-1:hover { border-color: rgba(14,165,233,0.3);  box-shadow: 0 14px 50px rgba(14,165,233,0.1); }
.proc-card-2:hover { border-color: rgba(139,92,246,0.3);  box-shadow: 0 14px 50px rgba(139,92,246,0.1); }
.proc-card-3:hover { border-color: rgba(6,182,212,0.3);   box-shadow: 0 14px 50px rgba(6,182,212,0.1); }
.proc-card-4:hover { border-color: rgba(16,185,129,0.3);  box-shadow: 0 14px 50px rgba(16,185,129,0.1); }
.proc-card-5:hover { border-color: rgba(245,158,11,0.3);  box-shadow: 0 14px 50px rgba(245,158,11,0.1); }

/* Ghost number — huge, faded, positioned at bottom-left */
.proc-card-num {
  position: absolute;
  bottom: -1.1rem;
  left: 0.6rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  transition: color 0.3s ease;
  font-variant-numeric: tabular-nums;
}
.proc-card:hover .proc-card-num { color: rgba(255,255,255,0.07); }

/* Icon box */
.proc-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.proc-card-icon svg { width: 19px; height: 19px; }

/* Step badge */
.proc-step-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* Per-card accent colors */
.proc-card-1 .proc-card-icon  { color: var(--primary); background: rgba(14,165,233,0.1);  border: 1px solid rgba(14,165,233,0.18); }
.proc-card-1 .proc-step-badge { color: var(--primary); background: rgba(14,165,233,0.1);  border: 1px solid rgba(14,165,233,0.22); }
.proc-card-2 .proc-card-icon  { color: var(--purple);  background: rgba(139,92,246,0.1);  border: 1px solid rgba(139,92,246,0.18); }
.proc-card-2 .proc-step-badge { color: var(--purple);  background: rgba(139,92,246,0.1);  border: 1px solid rgba(139,92,246,0.22); }
.proc-card-3 .proc-card-icon  { color: var(--cyan);    background: rgba(6,182,212,0.1);   border: 1px solid rgba(6,182,212,0.18); }
.proc-card-3 .proc-step-badge { color: var(--cyan);    background: rgba(6,182,212,0.1);   border: 1px solid rgba(6,182,212,0.22); }
.proc-card-4 .proc-card-icon  { color: var(--green);   background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.18); }
.proc-card-4 .proc-step-badge { color: var(--green);   background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.22); }
.proc-card-5 .proc-card-icon  { color: #f59e0b;        background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.18); }
.proc-card-5 .proc-step-badge { color: #f59e0b;        background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.22); }

/* Card text */
.proc-card-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.proc-card-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.proc-card-time {
  display: inline-flex;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.17rem 0.55rem;
  border-radius: 6px;
}

/* Stagger entrance for bento cards */
.proc-card-2.reveal { transition-delay: 0.06s; }
.proc-card-3.reveal { transition-delay: 0.12s; }
.proc-card-4.reveal { transition-delay: 0.18s; }
.proc-card-5.reveal { transition-delay: 0.24s; }

/* Light mode overrides */
body.light-mode .proc-card {
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
body.light-mode .proc-card-num { color: rgba(0,0,0,0.04); }
body.light-mode .proc-card:hover .proc-card-num { color: rgba(0,0,0,0.08); }

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .proc-bento { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .proc-bento { grid-template-columns: repeat(2, 1fr); }
  .proc-card-num { font-size: 4.2rem; }
}
@media (max-width: 480px) {
  .proc-bento { grid-template-columns: 1fr; gap: 1rem; }
  .proc-card-num { font-size: 3.8rem; }
}

/* ============================================================
   SPECTACULAR — Directional Reveals & Stagger Delays
============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* Service cards — alternating L/R entrance */
  .services-grid .service-card:nth-child(odd).reveal:not(.visible) {
    transform: translateX(32px) translateY(10px);
  }
  .services-grid .service-card:nth-child(even).reveal:not(.visible) {
    transform: translateX(-32px) translateY(10px);
  }
  /* Delays only on entrance — cleared once .visible so hover is instant */
  .services-grid .service-card:nth-child(1).reveal:not(.visible) { transition-delay: 0s; }
  .services-grid .service-card:nth-child(2).reveal:not(.visible) { transition-delay: 0.06s; }
  .services-grid .service-card:nth-child(3).reveal:not(.visible) { transition-delay: 0.12s; }
  .services-grid .service-card:nth-child(4).reveal:not(.visible) { transition-delay: 0.18s; }
  .services-grid .service-card:nth-child(5).reveal:not(.visible) { transition-delay: 0.24s; }
  .services-grid .service-card:nth-child(6).reveal:not(.visible) { transition-delay: 0.30s; }
  .services-grid .service-card:nth-child(7).reveal:not(.visible) { transition-delay: 0.36s; }
  .services-grid .service-card:nth-child(8).reveal:not(.visible) { transition-delay: 0.42s; }

  /* Process bento — fly in from different angles */
  .proc-card-1.reveal:not(.visible) { transform: translateY(55px) translateX(16px) rotate(-1.2deg); }
  .proc-card-2.reveal:not(.visible) { transform: translateY(72px) scale(0.96); }
  .proc-card-3.reveal:not(.visible) { transform: translateY(88px) scale(0.94); }
  .proc-card-4.reveal:not(.visible) { transform: translateY(72px) scale(0.96); }
  .proc-card-5.reveal:not(.visible) { transform: translateY(55px) translateX(-16px) rotate(1.2deg); }

  /* Testimonials — 3D perspective drop */
  .testimonial-card.reveal:not(.visible) {
    transform: perspective(650px) rotateX(9deg) translateY(42px);
  }
  .testimonials-grid .testimonial-card:nth-child(2).reveal:not(.visible) { transition-delay: 0.1s; }
  .testimonials-grid .testimonial-card:nth-child(3).reveal:not(.visible) { transition-delay: 0.2s; }

  /* Trust items — slide from right (RTL: right = inward) */
  .trust-item.reveal:not(.visible) { transform: translateX(26px); }
  .trust-grid .trust-item:nth-child(2).reveal:not(.visible) { transition-delay: 0.07s; }
  .trust-grid .trust-item:nth-child(3).reveal:not(.visible) { transition-delay: 0.14s; }
  .trust-grid .trust-item:nth-child(4).reveal:not(.visible) { transition-delay: 0.21s; }

  /* Pricing cards — drop from above */
  .pricing-card.reveal:not(.visible) { transform: translateY(-30px) scale(0.97); }
  .pricing-grid .pricing-card:nth-child(2).reveal:not(.visible) { transition-delay: 0.1s; }
  .pricing-grid .pricing-card:nth-child(3).reveal:not(.visible) { transition-delay: 0.2s; }

  /* FAQ items — slide from left */
  .faq-item.reveal:not(.visible) { transform: translateX(-22px); }
  .faq-list .faq-item:nth-child(2).reveal:not(.visible) { transition-delay: 0.05s; }
  .faq-list .faq-item:nth-child(3).reveal:not(.visible) { transition-delay: 0.10s; }
  .faq-list .faq-item:nth-child(4).reveal:not(.visible) { transition-delay: 0.15s; }
  .faq-list .faq-item:nth-child(5).reveal:not(.visible) { transition-delay: 0.20s; }
  .faq-list .faq-item:nth-child(6).reveal:not(.visible) { transition-delay: 0.25s; }
  .faq-list .faq-item:nth-child(7).reveal:not(.visible) { transition-delay: 0.30s; }

  /* Solution steps — cascade right-to-left (RTL flow) */
  .solution-flow > div:nth-child(1).reveal:not(.visible) { transition-delay: 0s; }
  .solution-flow > div:nth-child(3).reveal:not(.visible) { transition-delay: 0.08s; }
  .solution-flow > div:nth-child(5).reveal:not(.visible) { transition-delay: 0.16s; }
  .solution-flow > div:nth-child(7).reveal:not(.visible) { transition-delay: 0.24s; }
  .solution-flow > div:nth-child(9).reveal:not(.visible) { transition-delay: 0.32s; }

  /* Section titles — extra pop */
  .section-title.reveal:not(.visible) {
    transform: translateY(38px) scale(0.97);
  }
  .section-label.reveal:not(.visible) {
    transform: translateY(18px);
  }

  /* Mockup cards — alternating tilt entrance */
  .mockup-card:nth-child(odd).reveal:not(.visible)  { transform: translateX(28px) rotate(0.6deg); }
  .mockup-card:nth-child(even).reveal:not(.visible) { transform: translateX(-28px) rotate(-0.6deg); }
  .mockup-card:nth-child(2).reveal:not(.visible) { transition-delay: 0.1s; }
  .mockup-card:nth-child(3).reveal:not(.visible) { transition-delay: 0.2s; }
}

/* ============================================================
   SPECTACULAR — Service Card Scan Shimmer on Appear
============================================================ */
.service-card { overflow: hidden; }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(14, 165, 233, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  pointer-events: none;
  border-radius: inherit;
}
.service-card.visible::after {
  animation: card-scan 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@keyframes card-scan {
  from { transform: translateX(-130%); }
  to   { transform: translateX(150%); }
}

/* ============================================================
   SPECTACULAR — Featured Pricing Pulse Ring
============================================================ */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  border: 1px solid rgba(14, 165, 233, 0.5);
  animation: pricing-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes pricing-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.018); }
}

/* ============================================================
   SPECTACULAR — Counter Number Pop
============================================================ */
.ss-counter { display: inline-block; }
@keyframes num-pop {
  0%   { transform: scale(1); }
  38%  { transform: scale(1.24); }
  65%  { transform: scale(0.93); }
  100% { transform: scale(1); }
}
.num-pop-anim {
  animation: num-pop 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ============================================================
   SPECTACULAR — Cursor Spotlight
============================================================ */
#cursor-spotlight {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.05) 0%,
    rgba(139, 92, 246, 0.025) 45%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: left, top;
  transition: opacity 0.5s ease;
}
#cursor-spotlight.active { opacity: 1; }

/* ============================================================
   SPECTACULAR — Magnetic Button Base
============================================================ */
.btn-magnetic {
  will-change: transform;
}

/* ============================================================
   SPECTACULAR — Orbs parallax will-change
============================================================ */
.orb-1, .orb-2, .orb-3 {
  will-change: transform;
  transition: none !important;
}

/* ============================================================
   REDUCED MOTION — disable all spectacular extras
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .service-card::after,
  .pricing-card.featured::after { display: none; }
  #cursor-spotlight { display: none !important; }
  .num-pop-anim { animation: none; }
  .orb-1, .orb-2, .orb-3 { will-change: auto; }
}

/* ============================================================
   PAGE TRANSITIONS — curtain between pages
============================================================ */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 99997;
  background: var(--bg);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
#page-curtain.curtain-exit {
  opacity: 0;
  pointer-events: none;
}
#page-curtain.curtain-enter {
  opacity: 1;
  pointer-events: all;
}
@media (prefers-reduced-motion: reduce) {
  #page-curtain { transition: none; }
}

/* ============================================================
   SCROLL INDICATOR — animated arrow below hero
============================================================ */
.scroll-indicator {
  position: fixed;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: scroll-ind-appear 0.6s ease 3.5s forwards;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.scroll-indicator.hidden-ind { opacity: 0 !important; }
@keyframes scroll-ind-appear { to { opacity: 1; } }

.scroll-ind-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.50);
}
.scroll-ind-arrow {
  color: rgba(6,182,212,0.60);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ============================================================
   NAV — Active page indicator (used by components.js)
============================================================ */
.nav-link {
  position: relative;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s ease;
  padding-bottom: 2px;
}
.nav-link:hover { color: var(--text); }
.nav-link-active {
  color: var(--text) !important;
}
.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  border-radius: 2px;
}

/* ============================================================
   FOOTER — Premium 3-column (injected by components.js)
============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  margin-top: 0;
}
.footer-top {
  padding: 4.5rem 0 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo-link {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 0.55rem;
  letter-spacing: 0.03em;
}
.footer-desc {
  font-size: 0.76rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 270px;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  margin-bottom: 1.1rem;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav-list a {
  font-size: 0.84rem;
  color: var(--text-3);
  transition: color 0.2s ease;
}
.footer-nav-list a:hover { color: var(--text); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-contact-list svg {
  width: 14px;
  height: 14px;
  color: var(--text-3);
  flex-shrink: 0;
}
.footer-contact-list a {
  font-size: 0.81rem;
  color: var(--text-3);
  transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: var(--text); }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.18);
  color: #25d366;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-wa-btn:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}
.footer-wa-btn svg {
  width: 15px;
  height: 15px;
  fill: #25d366;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p,
.footer-made {
  font-size: 0.73rem;
  color: var(--text-3);
}
.footer-made { opacity: 0.6; }

/* Footer responsive */
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ============================================================
   PAGE HERO BASE — shared across all inner pages
============================================================ */
.page-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: var(--text-3);
  margin-bottom: 1.6rem;
}
.page-breadcrumb a { color: var(--text-3); transition: color 0.2s ease; }
.page-breadcrumb a:hover { color: var(--text); }
.page-breadcrumb .bc-sep { opacity: 0.35; font-size: 0.7rem; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.85rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
.page-hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 2.2rem;
  max-width: 490px;
}
.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.page-hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.phs-item { display: flex; flex-direction: column; gap: 0.15rem; }
.phs-num {
  font-size: 1.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.phs-label {
  font-size: 0.7rem;
  color: var(--text-3);
  font-weight: 500;
}

/* Light mode footer */
body.light-mode .site-footer { background: rgba(0,0,0,0.02); }
body.light-mode .footer-wa-btn { background: rgba(37,211,102,0.06); }

/* Light mode page-curtain */
body.light-mode #page-curtain { background: #f8fafc; }

/* ============================================================
   SHARED PAGE INNER LAYOUT (inner pages)
============================================================ */

/* Fix z-index so hero content sits ABOVE mesh/orb decorations */
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Breadcrumb — used on all inner pages as .hero-breadcrumb */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: var(--text-3);
  margin-bottom: 1.6rem;
}
.hero-breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s ease;
}
.hero-breadcrumb a:hover { color: var(--text); }
.hero-breadcrumb .bc-sep { opacity: 0.35; font-size: 0.7rem; }

/* Shared mesh-drift keyframe — available to all pages */
@keyframes mesh-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-12px, -8px); }
}

/* ============================================================
   SHARED CTA BOX (used in pricing, portfolio, contact)
============================================================ */
.pcta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 1rem;
}
.pcta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pcta-sub {
  font-size: 1rem;
  color: rgba(148, 163, 184, 0.85);
  max-width: 500px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.pcta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared orb drift animations — used by pricing, portfolio, contact heroes */
@keyframes orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.1); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-20px, 30px) scale(0.9); }
}

/* ============================================================
   SHARED SECTION — hero-inner pointer fix
============================================================ */
/* Ensure decorative absolute elements never block hero content */
.page-hero > .hero-mesh,
.page-hero > [class*="-orb"],
.page-hero > .svc-float-bg {
  pointer-events: none;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   INNER-PAGE HERO ENTRANCE ANIMATIONS
   Applied to ALL inner pages (pricing, portfolio, contact, services)
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Line-by-line title rise — used by all inner page h1s */
  .ph-line {
    overflow: hidden;
    display: block;
  }
  .ph-line-inner {
    display: block;
    animation: ph-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .ph-line:nth-child(1) .ph-line-inner { animation-delay: 0.08s; }
  .ph-line:nth-child(2) .ph-line-inner { animation-delay: 0.20s; }
  .ph-line:nth-child(3) .ph-line-inner { animation-delay: 0.32s; }

  @keyframes ph-rise {
    from { transform: translateY(105%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  /* Hero element fade-ups */
  .page-hero-badge { animation: hero-fade-up 0.7s  cubic-bezier(0.16,1,0.3,1) 0.05s both; }
  .hero-breadcrumb { animation: hero-fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0s    both; }
  .page-hero-sub   { animation: hero-fade-up 0.75s cubic-bezier(0.16,1,0.3,1) 0.40s both; }
  .page-hero-ctas  { animation: hero-fade-up 0.72s cubic-bezier(0.16,1,0.3,1) 0.54s both; }
  .page-hero-stats { animation: hero-fade-up 0.70s cubic-bezier(0.16,1,0.3,1) 0.62s both; }

  /* Hero stat items: spring pop — cascades within the stats bar */
  .page-hero-stats .phs-item:nth-child(1) {
    animation: hero-stat-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.68s both;
  }
  .page-hero-stats .phs-item:nth-child(2) {
    animation: hero-stat-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.80s both;
  }
  .page-hero-stats .phs-item:nth-child(3) {
    animation: hero-stat-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.92s both;
  }

  @keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes hero-stat-pop {
    from { opacity: 0; transform: translateY(24px) scale(0.82); }
    to   { opacity: 1; transform: none; }
  }
}

/* ── Form Success Toast ────────────────────────────────── */
.form-success-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(6,182,212,0.12));
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 50px;
  backdrop-filter: blur(16px);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  z-index: 99990;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.form-success-toast svg { color: #a78bfa; flex-shrink: 0; }
.form-success-toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Form Success States ───────────────────────────────── */
.lead-success-state,
.cf-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 48px 32px;
  background: linear-gradient(135deg,
    rgba(139, 92, 246, 0.10) 0%,
    rgba(6, 182, 212, 0.06) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 24px;
  animation: success-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.success-icon,
.cfs-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(6,182,212,0.15));
  border: 1.5px solid rgba(139,92,246,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #a78bfa;
}

.success-title,
.cfs-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.success-msg,
.cfs-msg {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 360px;
  margin: 0;
}

@keyframes success-pop {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */

.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: ep-overlay-in 0.28s ease;
}
.exit-popup-overlay[hidden] { display: none !important; }

@keyframes ep-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.exit-popup {
  position: relative;
  background: linear-gradient(150deg, rgba(13,11,28,0.99) 0%, rgba(22,10,45,0.99) 100%);
  border: 1px solid rgba(139, 92, 246, 0.40);
  border-radius: 28px;
  padding: 40px 44px 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.10),
    0 40px 100px rgba(0,0,0,0.75),
    0 0 80px rgba(139,92,246,0.15);
  animation: ep-in 0.55s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}

/* ambient glow blob */
.exit-popup::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.exit-popup::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(6,182,212,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.exit-popup > * { position: relative; z-index: 1; }

@keyframes ep-in {
  from { opacity: 0; transform: scale(0.82) translateY(32px); }
  to   { opacity: 1; transform: none; }
}

/* ── Close button ── */
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  color: rgba(148,163,184,0.65);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}
.exit-popup-close:hover {
  background: rgba(255,255,255,0.12);
  color: #f1f5f9;
  transform: rotate(90deg);
}

/* ── Roy's identity ── */
.exit-popup-identity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  animation: ep-in 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.08s both;
}
.exit-popup-roy {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2.5px solid rgba(139,92,246,0.55);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.12), 0 6px 20px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.exit-popup-identity-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.exit-popup-identity-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
}
.exit-popup-identity-text span {
  font-size: 0.75rem;
  color: rgba(148,163,184,0.65);
}

/* ── Badge ── */
.exit-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(167,139,250,0.95);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.28);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.ep-badge-dot {
  width: 7px; height: 7px;
  background: #a78bfa;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Title & subtitle ── */
.exit-popup-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.25;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.exit-popup-sub {
  font-size: 0.92rem;
  color: rgba(148,163,184,0.80);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 26px;
}

/* ── Form ── */
.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.exit-popup-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  color: var(--text-primary, #f1f5f9);
  font-size: 1rem;
  font-family: var(--font, 'Heebo', sans-serif);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.exit-popup-input::placeholder { color: rgba(148,163,184,0.45); }
.exit-popup-input:focus {
  outline: none;
  border-color: rgba(139,92,246,0.60);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.14);
}
.exit-popup-input.error {
  border-color: rgba(239,68,68,0.65);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
  animation: ep-shake 0.35s ease;
}
@keyframes ep-shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}

.exit-popup-btn {
  width: 100%;
  padding: 15px 24px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ── Note ── */
.exit-popup-note {
  font-size: 0.76rem;
  color: rgba(148,163,184,0.50);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Mobile ── */
@media (max-width: 520px) {
  .exit-popup { padding: 36px 22px 28px; border-radius: 22px; }
  .exit-popup-title { font-size: 1.5rem; }
}

/* ── Light mode ── */
body.light-mode .exit-popup {
  background: rgba(248,250,252,0.98);
  border-color: rgba(139,92,246,0.30);
  box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 0 80px rgba(139,92,246,0.10);
}
body.light-mode .exit-popup-close {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.10);
  color: rgba(71,85,105,0.7);
}
body.light-mode .exit-popup-input {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.12);
  color: #0f172a;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(139,92,246,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(6,182,212,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid: featured full-width top, 3 cards below */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* ── Featured card ─────────────────────────────────────── */
.testi-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.10) 0%,
    rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(139,92,246,0.28);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.08), 0 24px 60px rgba(139,92,246,0.10);
}
.testi-card--featured:hover {
  border-color: rgba(139,92,246,0.45);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.15), 0 32px 80px rgba(139,92,246,0.18);
}

.testi-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.testi-body { flex: 1; }

/* ── Regular cards ─────────────────────────────────────── */
.testi-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
/* Grow text to push author to the bottom of every card */
.testi-card .testi-text { flex: 1; }
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.20);
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Quote mark ─────────────────────────────────────────── */
.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
  color: rgba(139,92,246,0.30);
  margin-bottom: 12px;
  display: block;
  user-select: none;
}

/* ── Stars ──────────────────────────────────────────────── */
.testi-stars {
  font-size: 16px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}

/* ── Review text ─────────────────────────────────────────── */
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(203,213,225,0.90);
  margin: 0 0 20px;
}
.testi-text.testi-soon {
  color: rgba(148,163,184,0.40);
  font-style: italic;
}

/* ── Tag ─────────────────────────────────────────────────── */
.testi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(139,92,246,0.10);
  border: 1px solid rgba(139,92,246,0.20);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 0;
  align-self: flex-start;
}

/* ── Author row ─────────────────────────────────────────── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Featured card: author is beside text, not below */
.testi-card--featured .testi-author {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  min-width: 160px;
}

/* ── Avatar ─────────────────────────────────────────────── */
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139,92,246,0.40);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.10);
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover .testi-avatar {
  border-color: rgba(139,92,246,0.70);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.18), 0 0 20px rgba(139,92,246,0.20);
}
.testi-card--featured .testi-avatar {
  width: 80px;
  height: 80px;
  border-width: 2px;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testi-card--featured .testi-author-info {
  align-items: center;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}
.testi-role {
  font-size: 12px;
  color: rgba(148,163,184,0.65);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card--featured { grid-column: 1 / -1; }
  .testi-inner { grid-template-columns: 1fr; gap: 24px; }
  .testi-card--featured .testi-author {
    flex-direction: row;
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 20px;
  }
  .testi-card--featured .testi-author-info { align-items: flex-start; }
  .testi-card--featured .testi-avatar { width: 52px; height: 52px; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: auto; }
  .testi-quote-mark { font-size: 52px; }
}

/* ── Light mode ─────────────────────────────────────────── */
body.light-mode .testi-card {
  background: rgba(255,255,255,0.80);
  border-color: rgba(0,0,0,0.07);
}
body.light-mode .testi-card--featured {
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, rgba(255,255,255,0.90) 100%);
  border-color: rgba(139,92,246,0.22);
}
body.light-mode .testi-text { color: #334155; }
body.light-mode .testi-name { color: #0f172a; }
body.light-mode .testi-author { border-top-color: rgba(0,0,0,0.07); }

/* ============================================================
   POWERED BY STRIP
   ============================================================ */
.powered-by-strip {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.powered-by-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%,
    rgba(139,92,246,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pb-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.45);
  margin-bottom: 32px;
}

.pb-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pb-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: rgba(148,163,184,0.35);
  cursor: default;
  transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  min-width: 96px;
}
.pb-logo:hover {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  border-color: color-mix(in srgb, var(--brand) 20%, transparent);
  transform: translateY(-4px);
}
.pb-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: filter 0.3s;
}
.pb-logo:hover svg {
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--brand) 50%, transparent));
}
.pb-logo span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* divider dots between logos */
.pb-logos .pb-logo + .pb-logo::before {
  display: none;
}

/* ── Light mode ── */
body.light-mode .powered-by-strip {
  border-color: rgba(0,0,0,0.06);
}
body.light-mode .pb-logo {
  color: rgba(71,85,105,0.35);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .pb-logos { gap: 4px; }
  .pb-logo { padding: 14px 16px; min-width: 80px; }
  .pb-logo svg { width: 26px; height: 26px; }
  .pb-logo span { font-size: 10px; }
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fsoc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(148,163,184,0.45);
  text-decoration: none;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.fsoc-link:hover { transform: translateY(-3px) scale(1.10); }

.fsoc-ig:hover {
  color: #e1306c;
  background: rgba(225,48,108,0.10);
  border-color: rgba(225,48,108,0.30);
}
.fsoc-fb:hover {
  color: #1877f2;
  background: rgba(24,119,242,0.10);
  border-color: rgba(24,119,242,0.30);
}
.fsoc-li:hover {
  color: #0a66c2;
  background: rgba(10,102,194,0.10);
  border-color: rgba(10,102,194,0.30);
}

/* Light mode */
body.light-mode .fsoc-link {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.10);
  color: rgba(71,85,105,0.45);
}

/* ============================================================
   HERO VISUAL — BLOB + NETWORK SCENE
   (Replaces mock-cards grid. REVERT: restore display:grid to
   .hero-visual and uncomment backup mock-cards in index.html.)
============================================================ */

/* Override the grid layout for the blob scene */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.25rem;
  gap: 0;
}
@media (max-width: 1024px) {
  .hero-visual { padding-top: 0; }
}
@media (max-width: 768px) {
  .hero-visual { margin-top: 2rem; padding-top: 0; }
}

/* Scene container */
.hv-scene {
  position: relative;
  width: 520px;
  height: 520px;
  flex-shrink: 0;
  max-width: 100%;
}

/* Pulse rings */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.20);
  top: 50%;
  left: 50%;
  pointer-events: none;
  animation: hv-ring-pulse 3.8s ease-out infinite;
}
.hv-ring-1 { width: 230px; height: 230px; transform: translate(-50%,-50%); animation-delay: 0s; }
.hv-ring-2 { width: 315px; height: 315px; transform: translate(-50%,-50%); animation-delay: 1.4s; }
@keyframes hv-ring-pulse {
  0%   { opacity: 0.55; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;    transform: translate(-50%,-50%) scale(1.35); }
}

/* SVG overlay */
.hv-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* Central morphing blob */
.hv-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 170px;
  height: 170px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(124,58,237,0.92), rgba(14,165,233,0.78));
  animation: hv-blob-morph 9s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow:
    0 0 55px rgba(139,92,246,0.42),
    0 0 110px rgba(56,189,248,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
@keyframes hv-blob-morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  20%  { border-radius: 35% 65% 65% 35% / 55% 45% 55% 45%; }
  40%  { border-radius: 50% 60% 40% 60% / 40% 65% 35% 60%; }
  60%  { border-radius: 65% 35% 55% 45% / 50% 40% 60% 50%; }
  80%  { border-radius: 40% 55% 45% 60% / 60% 50% 40% 55%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hv-blob-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hv-blob-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.hv-blob-live {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hv-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  animation: hv-live-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hv-live-pulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(52,211,153,0.7); }
  50%     { box-shadow: 0 0 0 5px rgba(52,211,153,0);   }
}
.hv-blob-live-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* Floating node wrappers */
.hv-node { position: absolute; z-index: 3; }
.hv-node-top    { top: 4px;      left: 50%;  transform: translateX(-50%); animation: hv-float-a 4.2s ease-in-out infinite; }
.hv-node-tr     { top: 88px;     right: 8px;                               animation: hv-float-b 4.8s ease-in-out infinite 0.4s; }
.hv-node-br     { bottom: 88px;  right: 8px;                               animation: hv-float-c 4.4s ease-in-out infinite 1.1s; }
.hv-node-bottom { bottom: 4px;   left: 50%;  transform: translateX(-50%); animation: hv-float-d 4.6s ease-in-out infinite 0.8s; }
.hv-node-tl     { top: 88px;     left: 8px;                                animation: hv-float-e 4.0s ease-in-out infinite 0.2s; }

@keyframes hv-float-a { 0%,100%{transform:translateX(-50%) translateY(0)}   50%{transform:translateX(-50%) translateY(-9px)} }
@keyframes hv-float-b { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-8px)} }
@keyframes hv-float-c { 0%,100%{transform:translateY(0)}  50%{transform:translateY(8px)}  }
@keyframes hv-float-d { 0%,100%{transform:translateX(-50%) translateY(0)}   50%{transform:translateX(-50%) translateY(9px)} }
@keyframes hv-float-e { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-7px)} }

.hv-node:hover { animation-play-state: paused; }
.hv-node:hover .hv-node-chip {
  transform: scale(1.06);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* Node chips */
.hv-node-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px 7px 9px;
  background: rgba(8,8,22,0.82);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}
.hv-node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hv-node-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(226,232,240,0.88);
}
.hv-node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-dot-done  { background: #34d399; }
.hv-dot-blink { background: #a78bfa; animation: hv-blink 1.3s ease-in-out infinite; }
@keyframes hv-blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* Chip color variants */
.hv-chip-purple .hv-node-icon { background: rgba(139,92,246,0.16);  color: #a78bfa; }
.hv-chip-blue   .hv-node-icon { background: rgba(56,189,248,0.16);  color: #38bdf8; }
.hv-chip-green  .hv-node-icon { background: rgba(37,211,102,0.16);  color: #25d366; }
.hv-chip-teal   .hv-node-icon { background: rgba(52,211,153,0.16);  color: #34d399; }
.hv-chip-amber  .hv-node-icon { background: rgba(245,158,11,0.16);  color: #f59e0b; }
.hv-chip-purple { border-color: rgba(139,92,246,0.24); }
.hv-chip-blue   { border-color: rgba(56,189,248,0.24); }
.hv-chip-green  { border-color: rgba(37,211,102,0.24); }
.hv-chip-teal   { border-color: rgba(52,211,153,0.24); }
.hv-chip-amber  { border-color: rgba(245,158,11,0.24); }

/* Responsive scaling */
@media (max-width: 1100px) {
  .hv-scene { width: 430px; height: 430px; }
  .hv-blob  { width: 148px; height: 148px; }
  .hv-ring-1 { width: 192px; height: 192px; }
  .hv-ring-2 { width: 265px; height: 265px; }
}
@media (max-width: 768px) {
  .hv-scene  { width: min(360px, 92vw); height: min(360px, 92vw); }
  .hv-blob   { width: 124px; height: 124px; }
  .hv-blob-name { font-size: 13px; }
  .hv-ring-1 { width: 160px; height: 160px; }
  .hv-ring-2 { width: 218px; height: 218px; }
  .hv-node-chip { padding: 5px 9px 5px 7px; gap: 5px; border-radius: 10px; }
  .hv-node-icon { width: 24px; height: 24px; border-radius: 6px; }
  .hv-node-label { font-size: 11px; }
  .hv-node-dot { width: 5px; height: 5px; }
  .hv-node-top    { top: 2px; }
  .hv-node-tr     { top: 70px;    right: 2px; }
  .hv-node-br     { bottom: 70px; right: 2px; }
  .hv-node-bottom { bottom: 2px; }
  .hv-node-tl     { top: 70px;    left: 2px; }
}

/* Light mode */
body.light-mode .hv-node-chip {
  background: rgba(255,255,255,0.90);
  border-color: rgba(0,0,0,0.09);
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
body.light-mode .hv-node-label { color: #1e293b; }
body.light-mode .hv-blob {
  box-shadow: 0 0 50px rgba(139,92,246,0.28), 0 0 100px rgba(56,189,248,0.12);
}
body.light-mode .hv-ring { border-color: rgba(139,92,246,0.14); }
