/* ══════════════════════════════════════════
   AUTOCHATIX — Production CSS
   Dark theme · Glassmorphism · Animations
══════════════════════════════════════════ */

:root {
  color-scheme: dark;
  --bg: #050815;
  --surface: rgba(14, 20, 45, 0.95);
  --surface-lift: rgba(19, 29, 71, 0.92);
  --surface-soft: rgba(27, 37, 74, 0.6);
  --text: #eef2ff;
  --muted: #8d98bf;
  --primary: #5f7bff;
  --primary-strong: #2c48ff;
  --accent: #27e2ae;
  --accent-warm: #ffb84d;
  --danger: #ff6b80;
  --brand: #25d366;
  --border: rgba(132, 151, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.07);
  --glow: rgba(95, 123, 255, 0.2);
  --shadow-deep: 0 40px 120px rgba(4, 15, 60, 0.35);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.nav-open,
body.nav-open {
  overflow: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(ellipse at top, rgba(95, 123, 255, 0.18), transparent 30%),
    radial-gradient(ellipse at 20% 20%, rgba(39, 226, 174, 0.1), transparent 25%),
    linear-gradient(180deg, #040b1e 0%, #06091c 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

/* ── Layout ── */
.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-5px); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
@keyframes counter-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes aurora-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  30%       { transform: translate(8%, 15%) scale(1.1); opacity: 0.8; }
  60%       { transform: translate(-4%, 7%) scale(0.95); opacity: 0.5; }
}
@keyframes aurora-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  40%       { transform: translate(-12%, -10%) scale(1.08); opacity: 0.7; }
  70%       { transform: translate(7%, -14%) scale(0.93); opacity: 0.45; }
}
@keyframes border-glow {
  0%, 100% {
    border-color: rgba(95, 123, 255, 0.45);
    box-shadow: 0 0 35px rgba(95, 123, 255, 0.14), 0 40px 100px rgba(3, 8, 30, 0.3);
  }
  50% {
    border-color: rgba(39, 226, 174, 0.45);
    box-shadow: 0 0 35px rgba(39, 226, 174, 0.14), 0 40px 100px rgba(3, 8, 30, 0.3);
  }
}
@keyframes section-glow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes tilt-in {
  from { opacity: 0; transform: perspective(600px) rotateX(10deg) translateY(20px); }
  to   { opacity: 1; transform: perspective(600px) rotateX(0deg) translateY(0); }
}
@keyframes neon-text {
  0%, 100% { text-shadow: 0 0 10px rgba(95,123,255,0.4), 0 0 20px rgba(95,123,255,0.2); }
  50%       { text-shadow: 0 0 20px rgba(39,226,174,0.5), 0 0 40px rgba(39,226,174,0.25); }
}

/* ── Utilities ── */
.grad-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 40%, #a78bfa 65%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s linear infinite;
}
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 0.75rem;
  max-width: 640px;
}
.section-heading {
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fast {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-fast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   HEADER / NAV
══════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background: rgba(4, 11, 37, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { text-decoration: none; }
.logo-img {
  height: 34px;
  width: auto;
  max-width: min(210px, 58vw);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-img:hover { transform: scale(1.05); opacity: 0.9; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--text); }
.btn-login {
  padding: 0.65rem 1.3rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background 180ms ease, border-color 180ms ease !important;
}
.btn-login:hover {
  background: rgba(95, 123, 255, 0.15) !important;
  border-color: rgba(95, 123, 255, 0.4) !important;
  color: var(--text) !important;
}
.menu-toggle {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--text);
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 250ms ease, opacity 250ms ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 48px rgba(95, 123, 255, 0.32);
}
.btn-primary:hover {
  box-shadow: 0 24px 64px rgba(95, 123, 255, 0.45);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-outline:hover {
  background: rgba(95, 123, 255, 0.1);
  border-color: rgba(95, 123, 255, 0.4);
  color: var(--primary);
}
.btn-block { width: 100%; }

/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 123, 255, 0.2), transparent 65%);
  top: -30%;
  right: -10%;
  pointer-events: none;
  animation: aurora-1 22s ease-in-out infinite;
  filter: blur(30px);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 226, 174, 0.14), transparent 65%);
  bottom: -5%;
  left: 5%;
  pointer-events: none;
  animation: aurora-2 28s ease-in-out infinite;
  filter: blur(40px);
  z-index: 0;
}
.hero-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 640px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(39, 226, 174, 0.08);
  border: 1px solid rgba(39, 226, 174, 0.2);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Headline */
.hero-copy h1 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 1.4rem;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 2rem;
}
.hero-desc strong { color: var(--text); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.stat-item:hover {
  border-color: rgba(95, 123, 255, 0.3);
  background: rgba(95, 123, 255, 0.07);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.stat-suffix { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.stat-item p { color: var(--muted); font-size: 0.8rem; margin: 0; line-height: 1.4; }

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-badges span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.hero-badges span:hover {
  border-color: rgba(95, 123, 255, 0.4);
  color: var(--text);
}

/* ── Hero Phone Demo ── */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrapper {
  position: relative;
  width: 300px;
}
.demo-phone {
  width: 300px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #0a1228 0%, #060a1a 100%);
  box-shadow: 0 40px 100px rgba(2, 8, 30, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, #075e54, #128c7e);
  position: relative;
}
.phone-avatar-wrap { position: relative; flex-shrink: 0; }
.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  background: #4cd964;
  border-radius: 50%;
  border: 1.5px solid #075e54;
}
.phone-name { color: #fff; font-weight: 700; font-size: 0.9rem; }
.phone-status { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.demo-chat {
  padding: 1rem;
  min-height: 340px;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scrollbar-width: none;
}
.demo-chat::-webkit-scrollbar { display: none; }

/* Demo chat message types */
.dc-bot {
  align-self: flex-start;
  background: rgba(32, 46, 90, 0.9);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  border-radius: 4px 18px 18px 18px;
  max-width: 85%;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: floatIn 0.4s ease forwards;
}
.dc-user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(95,123,255,0.7), rgba(44,72,255,0.6));
  color: #fff;
  padding: 0.7rem 0.9rem;
  border-radius: 18px 4px 18px 18px;
  max-width: 75%;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: floatIn 0.4s ease forwards;
}
.dc-buttons {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 90%;
  animation: floatIn 0.4s ease forwards;
}
.dc-btn-pill {
  background: rgba(95,123,255,0.18);
  border: 1px solid rgba(95,123,255,0.3);
  color: var(--primary);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.dc-btn-pill.tapped {
  background: rgba(95,123,255,0.35);
  border-color: var(--primary);
}
.dc-list {
  align-self: flex-start;
  background: rgba(32, 46, 90, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px 18px 18px 18px;
  padding: 0.7rem 0.9rem;
  max-width: 90%;
  font-size: 0.82rem;
  animation: floatIn 0.4s ease forwards;
}
.dc-list strong { color: var(--muted); font-size: 0.75rem; display: block; margin-bottom: 0.5rem; }
.dc-list-opt {
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0.2rem;
  transition: background 0.2s ease;
}
.dc-list-opt.picked { background: rgba(39,226,174,0.15); color: var(--accent); }
.dc-form {
  align-self: flex-start;
  background: rgba(25,38,80,0.95);
  border: 1px solid rgba(95,123,255,0.25);
  border-radius: 4px 18px 18px 18px;
  padding: 0.8rem 0.9rem;
  max-width: 85%;
  font-size: 0.82rem;
  animation: floatIn 0.4s ease forwards;
}
.dc-form-title { font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.dc-form-fields { color: var(--muted); font-size: 0.78rem; }
.dc-payment {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(39,226,174,0.12), rgba(34,153,240,0.1));
  border: 1px solid rgba(39,226,174,0.25);
  border-radius: 4px 18px 18px 18px;
  padding: 0.8rem 0.9rem;
  max-width: 85%;
  font-size: 0.82rem;
  animation: floatIn 0.4s ease forwards;
}
.dc-pay-label { color: var(--muted); font-size: 0.75rem; margin-bottom: 0.2rem; }
.dc-pay-amount { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-bottom: 0.4rem; }
.dc-pay-cta {
  background: var(--accent);
  color: #04140f;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
}
.dc-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 0.7rem 0.9rem;
  background: rgba(32, 46, 90, 0.9);
  border-radius: 4px 18px 18px 18px;
  animation: floatIn 0.3s ease forwards;
}
.dc-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s ease-in-out infinite;
}
.dc-typing span:nth-child(2) { animation-delay: 0.2s; }
.dc-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Phone glow & shadow */
.phone-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50px;
  background: radial-gradient(circle at 50% 30%, rgba(95,123,255,0.28), transparent 55%);
  filter: blur(30px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}
.phone-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: rgba(95,123,255,0.2);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.trust-scroll { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); }
.trust-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.trust-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  transition: color 0.3s ease;
}

/* ══════════════════════════════════
   SECTION BASE
══════════════════════════════════ */
.section { padding: 6rem 0; position: relative; }

/* ══════════════════════════════════
   FEATURES SECTION
══════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: rgba(8,14,38,0.9);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(95,123,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  transition: left 0s linear;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95,123,255,0.28);
  box-shadow: 0 32px 80px rgba(3,8,30,0.25), 0 0 0 1px rgba(95,123,255,0.08);
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover::after {
  left: 160%;
  transition: left 0.65s ease-in-out;
}
.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--icon-color, rgba(95,123,255,0.15));
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.feat-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.6rem; }
.feat-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 0 0 1.25rem; }

/* Feature Previews */
.feat-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1rem;
}
.fp-buttons { display: flex; flex-direction: column; gap: 0.5rem; }
.fp-btn {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(95,123,255,0.25);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.2s ease;
}
.fp-btn.active {
  background: rgba(95,123,255,0.2);
  border-color: rgba(95,123,255,0.5);
  color: var(--primary);
  font-weight: 600;
}
.fp-list { display: flex; flex-direction: column; gap: 0.3rem; }
.fp-list-item {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  transition: background 0.2s ease;
}
.fp-list-item.selected {
  background: rgba(39,226,174,0.12);
  color: var(--accent);
  font-weight: 600;
}
.fp-carousel { display: flex; gap: 0.6rem; overflow: hidden; }
.fp-car-card {
  flex: 0 0 calc(50% - 0.3rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.75rem;
}
.fp-car-img {
  height: 40px;
  background: linear-gradient(135deg, rgba(95,123,255,0.4), rgba(44,72,255,0.3));
}
.fp-car-img.alt { background: linear-gradient(135deg, rgba(39,226,174,0.4), rgba(34,153,240,0.3)); }
.fp-car-title { padding: 0.4rem 0.5rem; color: var(--text); font-weight: 600; }
.fp-car-btn { padding: 0.3rem 0.5rem 0.5rem; color: var(--primary); font-weight: 600; }
.fp-form { display: flex; flex-direction: column; gap: 0.4rem; }
.fp-field { display: flex; align-items: center; gap: 0.5rem; }
.fp-field span { color: var(--muted); font-size: 0.75rem; width: 50px; flex-shrink: 0; }
.fp-input {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.fp-input.short { flex: 0 0 50px; }
.fp-payment {
  text-align: center;
  padding: 0.5rem;
}
.fp-pay-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}
.razorpay-logo-mini .rp-block {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #3395ff, #00baf2);
  clip-path: polygon(0 100%, 40% 0, 60% 50%, 100% 0, 60% 100%);
}
.fp-pay-amount { font-size: 1.4rem; font-weight: 900; color: var(--accent); margin-bottom: 0.2rem; }
.fp-pay-methods { color: var(--muted); font-size: 0.72rem; margin-bottom: 0.5rem; }
.fp-pay-btn {
  background: var(--accent);
  color: #04140f;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  display: inline-block;
}
.fp-agent { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.agent-node {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.agent-node.bot {
  background: rgba(95,123,255,0.15);
  border: 1px solid rgba(95,123,255,0.3);
  color: var(--primary);
}
.agent-node.human {
  background: rgba(39,226,174,0.15);
  border: 1px solid rgba(39,226,174,0.3);
  color: var(--accent);
}
.agent-note { color: var(--muted); font-size: 0.75rem; text-align: center; margin: 0; }
.feat-cta { text-align: center; margin-top: 2.5rem; }

/* ══════════════════════════════════
   WORKFLOW / HOW IT WORKS
══════════════════════════════════ */
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.workflow-steps { display: flex; flex-direction: column; gap: 0; }
.wf-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wf-step:last-child { border-bottom: none; }
.wf-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(95,123,255,0.15);
  border: 1px solid rgba(95,123,255,0.25);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.wf-step:hover .wf-num {
  background: rgba(95,123,255,0.3);
  transform: scale(1.1);
}
.wf-body h3 { font-size: 1rem; font-weight: 700; margin: 0.2rem 0 0.5rem; }
.wf-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Workflow Phone (same as hero but static) */
.workflow-preview {
  position: sticky;
  top: 120px;
}
.phone-frame {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(10,18,50,0.97), rgba(5,8,22,0.98));
  box-shadow: 0 50px 110px rgba(4,10,28,0.45);
  overflow: hidden;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: rgba(5,10,24,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.phone-top span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.phone-title { color: var(--text); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; }
.chat-screen {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.chat-message {
  border-radius: 20px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
}
.chat-message.incoming {
  background: rgba(38,50,95,0.9);
  color: #fff;
  align-self: flex-start;
  border-radius: 4px 20px 20px 20px;
}
.chat-message.outgoing {
  background: linear-gradient(135deg, rgba(95,123,255,0.6), rgba(44,72,255,0.5));
  color: #fff;
  align-self: flex-end;
  border-radius: 20px 4px 20px 20px;
}
.chat-card {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
}
.chat-card.button {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.chat-btns-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chat-btn-pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(95,123,255,0.3);
  color: var(--muted);
  font-size: 0.8rem;
}
.chat-btn-pill.active {
  background: rgba(95,123,255,0.2);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}
.chat-card.list {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.chat-card.list strong { display: block; margin-bottom: 0.6rem; color: var(--muted); font-size: 0.8rem; }
.chat-card.list ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.chat-card.list li { color: var(--text); font-size: 0.83rem; padding: 0.35rem 0.5rem; border-radius: 8px; }
.chat-card.list li.selected-li { background: rgba(39,226,174,0.12); color: var(--accent); font-weight: 600; }
.chat-card.form {
  background: rgba(30,46,100,0.9);
  border: 1px solid rgba(95,123,255,0.2);
}
.chat-card.form strong { display: block; margin-bottom: 0.3rem; }
.chat-card.form p { margin: 0; color: var(--muted); font-size: 0.8rem; }
.chat-card.pay {
  background: linear-gradient(135deg, rgba(39,226,174,0.12), rgba(34,153,240,0.1));
  border: 1px solid rgba(39,226,174,0.22);
}
.chat-card.pay strong { display: block; margin-bottom: 0.5rem; }
.pay-link-pill {
  display: inline-flex;
  background: var(--accent);
  color: #04140f;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 1.0s; }
.delay-4 { animation-delay: 1.4s; }
.delay-5 { animation-delay: 1.8s; }
.delay-6 { animation-delay: 2.2s; }
.delay-7 { animation-delay: 2.6s; }

/* ══════════════════════════════════
   AUTOMATION TYPES
══════════════════════════════════ */
.auto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.auto-card {
  background: rgba(8,14,38,0.9);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.auto-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95,123,255,0.2);
  box-shadow: 0 36px 90px rgba(3,8,30,0.22);
}
.auto-card.featured-auto {
  border-color: rgba(95,123,255,0.3);
  background: linear-gradient(160deg, rgba(10,18,48,0.97), rgba(8,13,34,0.97));
}
.auto-card.featured-auto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.auto-badge {
  display: inline-flex;
  background: rgba(39,226,174,0.12);
  border: 1px solid rgba(39,226,174,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.auto-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.auto-icon { font-size: 2rem; margin-bottom: 1rem; }
.auto-card h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.75rem; }
.auto-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 0 0 1.25rem; }
.auto-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.auto-list li {
  color: var(--muted);
  font-size: 0.88rem;
  padding-left: 1.25rem;
  position: relative;
}
.auto-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ══════════════════════════════════
   INTEGRATIONS
══════════════════════════════════ */
.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.int-card {
  background: rgba(8,14,38,0.9);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 2.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.int-card:hover {
  transform: translateY(-5px);
  border-color: rgba(95,123,255,0.2);
  box-shadow: 0 30px 80px rgba(3,8,30,0.22);
}
.int-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}
.whatsapp-wrap { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); }
.razorpay-wrap { background: rgba(51,149,255,0.1); border: 1px solid rgba(51,149,255,0.2); }
.sheets-wrap { background: rgba(15,157,88,0.1); border: 1px solid rgba(15,157,88,0.2); }
.int-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.6rem; }
.int-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 0 0 1.25rem; }
.int-tag {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.int-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  flex-wrap: wrap;
}
.int-note p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ══════════════════════════════════
   INDUSTRIES
══════════════════════════════════ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ind-card {
  background: rgba(8,14,38,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ind-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95,123,255,0.2);
}
.ind-icon { font-size: 2rem; margin-bottom: 1rem; }
.ind-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; }
.ind-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.6; margin: 0; }
.ind-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  flex-wrap: wrap;
}
.ind-more p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pricing-card {
  background: rgba(8,14,38,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(3,8,30,0.3);
}
.pricing-card.featured {
  border-color: rgba(95,123,255,0.4);
  background: linear-gradient(180deg, rgba(10,18,50,0.97), rgba(8,13,32,0.97));
  animation: border-glow 4s ease-in-out infinite;
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 28px 28px 0 0;
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-header { display: flex; flex-direction: column; gap: 0.4rem; }
.plan-name {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}
.plan-price { font-size: 1.8rem; font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.plan-price small { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.plan-tagline { color: var(--muted); font-size: 0.85rem; margin: 0; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.plan-list li { color: var(--muted); font-size: 0.88rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.ck { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-grid {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q[aria-expanded="true"] { color: var(--primary); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-a {
  padding: 0 1.75rem 1.4rem;
  animation: fadeSlideUp 0.3s ease;
}
.faq-a p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; margin: 0; }

/* ══════════════════════════════════
   CONTACT / CTA
══════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; line-height: 1.1; margin: 0 0 1rem; letter-spacing: -0.02em; }
.contact-info > p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin: 0 0 2rem; }
.contact-perks { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.perk-item { display: flex; align-items: flex-start; gap: 1rem; }
.perk-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.perk-item strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.perk-item p { color: var(--muted); font-size: 0.85rem; margin: 0; }
.contact-email {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-email a { color: var(--primary); text-decoration: none; font-weight: 600; }
.contact-email a:hover { text-decoration: underline; }
.contact-form {
  background: rgba(8,14,38,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(95,123,255,0.5);
  box-shadow: 0 0 0 4px rgba(95,123,255,0.08);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(139,152,192,0.5); }
.form-feedback {
  font-size: 0.87rem;
  min-height: 1.4em;
  margin: 0;
  color: var(--accent);
}
.form-feedback.error { color: var(--danger); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { height: 26px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin: 0 0 1.25rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badges span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col h4 {
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: 0.83rem; margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted); text-decoration: none; font-size: 0.83rem; transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--text); }

/* ══════════════════════════════════
   PAGE PANEL (about/contact pages)
══════════════════════════════════ */
.page-panel {
  background: rgba(8,14,38,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--muted);
}
.page-panel h3 { color: var(--text); font-weight: 700; margin-top: 0; }
.page-panel ul { padding-left: 1.25rem; }
.page-panel li { margin-bottom: 0.4rem; }
.page-panel strong { color: var(--text); }

/* ── Why Grid (about page) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET (980px)
══════════════════════════════════ */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-phone { justify-content: flex-start; }
  .hero-copy { max-width: none; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .auto-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-preview { position: static; max-width: 320px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 1.5rem, 1160px); }
  .nav-wrap { padding: 0.75rem 0; }
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    height: calc(100dvh - 66px);
    min-height: calc(100vh - 66px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 0.75rem 1.5rem;
    gap: 0.35rem;
    background: rgba(4,9,28,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(-110%);
    transition: transform 280ms ease, visibility 280ms ease;
    pointer-events: none;
    visibility: hidden;
    z-index: 90;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    color: var(--text);
    background: rgba(255,255,255,0.025);
    border: 1px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(95,123,255,0.12);
    border-color: rgba(95,123,255,0.22);
    outline: none;
  }
  .nav-links .btn-login {
    justify-content: center;
    margin-top: 0.35rem;
    border-radius: 12px !important;
    background: linear-gradient(135deg, rgba(95,123,255,0.24), rgba(39,226,174,0.12)) !important;
  }
  .menu-toggle { display: flex; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-copy h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .feat-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .int-note { flex-direction: column; align-items: flex-start; }
  .ind-more { flex-direction: column; align-items: flex-start; }
  .faq-q { padding: 1.2rem 1.25rem; font-size: 0.92rem; }
  .faq-a { padding: 0 1.25rem 1.25rem; }
  .section { padding: 4rem 0; }
  .phone-wrapper { width: 280px; }
  .demo-phone { width: 280px; }
}

@media (max-width: 540px) {
  body {
    background:
      radial-gradient(ellipse at top, rgba(95, 123, 255, 0.14), transparent 28%),
      linear-gradient(180deg, #040b1e 0%, #06091c 100%);
  }
  .section-heading { margin-bottom: 2rem; }
  .section-heading h2,
  .contact-info h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    line-height: 1.12;
  }
  .section-desc,
  .hero-desc,
  .contact-info > p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .hero { padding: 2.75rem 0 2.5rem; }
  .hero-badge {
    max-width: 100%;
    border-radius: 14px;
    align-items: flex-start;
    line-height: 1.45;
  }
  .hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 2.75rem);
    letter-spacing: -0.02em;
  }
  .hero-stats { gap: 0.75rem; }
  .stat-item {
    border-radius: 14px;
    padding: 0.9rem 0.7rem;
  }
  .stat-number { font-size: 1.45rem; }
  .stat-item p { font-size: 0.74rem; }
  .hero-badges span { border-radius: 12px; }
  .hero-phone { justify-content: center; }
  .phone-wrapper,
  .demo-phone {
    width: min(100%, 300px);
  }
  .demo-chat {
    min-height: 315px;
    max-height: 315px;
  }
  .feat-card,
  .auto-card,
  .int-card,
  .pricing-card,
  .contact-form,
  .page-panel,
  .priv-section {
    border-radius: 18px;
    padding: 1.35rem;
  }
  .workflow-grid,
  .contact-wrap {
    gap: 2.25rem;
  }
  .wf-step {
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
  }
  .wf-num {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 0.9rem;
  }
}

@media (max-width: 380px) {
  .container { width: min(100% - 1rem, 1160px); }
  .logo-img { max-width: 172px; }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero-actions .btn,
  .pricing-card .btn,
  .contact-form .btn {
    padding-inline: 1rem;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .phone-header { padding: 0.9rem 1rem; }
  .phone-name { font-size: 0.82rem; }
  .phone-status { font-size: 0.66rem; }
  .priv-trust-row { flex-direction: column; }
}

/* ══════════════════════════════════
   CURRENCY SWITCHER (pricing page)
══════════════════════════════════ */
.currency-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.currency-switcher-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 0.25rem;
}
.currency-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.currency-btn:hover {
  border-color: rgba(95, 123, 255, 0.3);
  color: var(--text);
  background: rgba(95, 123, 255, 0.06);
}
.currency-btn.active {
  background: rgba(95, 123, 255, 0.16);
  border-color: rgba(95, 123, 255, 0.45);
  color: var(--primary);
}
.plan-price-contact {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════
   SECTION SEPARATORS / GLOWS
══════════════════════════════════ */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95,123,255,0.15), rgba(39,226,174,0.1), transparent);
  pointer-events: none;
}
.int-card::after, .auto-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  transition: left 0s linear;
}
.int-card:hover::after, .auto-card:hover::after {
  left: 160%;
  transition: left 0.65s ease-in-out;
}
.int-card, .auto-card { overflow: hidden; }

/* ══════════════════════════════════
   PRIVACY POLICY PAGE
══════════════════════════════════ */
/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(95, 123, 255, 0.6);
}

/* Privacy keyframes */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes shield-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes scan-line {
  0% { top: -5%; }
  100% { top: 105%; }
}

/* Privacy hero */
.priv-hero {
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.priv-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 123, 255, 0.18), transparent 70%);
  top: -250px;
  right: -150px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: aurora-1 20s ease-in-out infinite;
}
.priv-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 226, 174, 0.12), transparent 70%);
  bottom: -150px;
  left: -50px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: aurora-2 25s ease-in-out infinite;
}
.priv-hero .container { position: relative; z-index: 1; }
.priv-hero-inner { max-width: 800px; margin: 0 auto; }
.priv-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(95,123,255,0.35) 50%, transparent 100%);
  animation: scan-line 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Animated shield */
.priv-shield-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.priv-shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(95, 123, 255, 0.5);
  width: 90px;
  height: 90px;
  animation: pulse-ring 3s ease-out infinite;
}
.priv-shield-ring:nth-child(2) { animation-delay: 1s; border-color: rgba(39, 226, 174, 0.45); }
.priv-shield-ring:nth-child(3) { animation-delay: 2s; }
.priv-shield-icon {
  font-size: 4.2rem;
  position: relative;
  z-index: 2;
  animation: shield-float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(95, 123, 255, 0.7)) drop-shadow(0 0 56px rgba(95, 123, 255, 0.3));
}

/* Badge */
.priv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39, 226, 174, 0.08);
  border: 1px solid rgba(39, 226, 174, 0.2);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.priv-heading { max-width: 700px; margin: 0 auto; }
.priv-heading h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}
.priv-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 580px;
}

/* Trust row */
.priv-trust-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem auto 0;
  flex-wrap: wrap;
  max-width: 720px;
}
.priv-trust-card {
  background: rgba(8, 14, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 130px;
  flex: 1;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
}
.priv-trust-card:hover {
  border-color: rgba(95, 123, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(95, 123, 255, 0.12);
}
.priv-trust-icon { font-size: 1.7rem; margin-bottom: 0.3rem; }
.priv-trust-card strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.priv-trust-card span {
  font-size: 0.73rem;
  color: var(--muted);
  text-align: center;
}

/* Meta chips */
.priv-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.priv-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* Body layout */
.priv-body { padding: 0 0 5rem; }
.priv-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 3rem;
  align-items: start;
}

/* TOC sidebar */
.priv-toc {
  position: sticky;
  top: 100px;
  background: rgba(8,14,38,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}
.priv-toc-title {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 1rem;
  display: block;
}
.priv-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.priv-toc a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.priv-toc a:hover,
.priv-toc a.toc-active {
  color: var(--text);
  background: rgba(95, 123, 255, 0.1);
  border-left-color: var(--primary);
}
.priv-toc a.toc-active { color: var(--primary); font-weight: 600; }

/* Policy section cards */
.priv-content { display: flex; flex-direction: column; gap: 1.5rem; }
.priv-section {
  background: rgba(8, 14, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.priv-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 24px 0 0 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.priv-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  transition: left 0s linear;
}
.priv-section:hover {
  border-color: rgba(95, 123, 255, 0.2);
  box-shadow: 0 8px 40px rgba(95, 123, 255, 0.08);
  transform: translateY(-2px);
}
.priv-section:hover::before { opacity: 1; }
.priv-section:hover::after {
  left: 160%;
  transition: left 0.7s ease-in-out;
}
.priv-section-num {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(95,123,255,0.15), rgba(39,226,174,0.08));
  border: 1px solid rgba(95,123,255,0.2);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
}
.priv-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}
.priv-section p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 0 0 0.75rem;
}
.priv-section p:last-child { margin-bottom: 0; }
.priv-section ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.priv-section li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.priv-section li::marker { color: var(--primary); }
.priv-section strong { color: var(--text); }

/* Contact card */
.priv-contact-card {
  background: linear-gradient(135deg, rgba(95,123,255,0.08), rgba(39,226,174,0.04));
  border: 1px solid rgba(95, 123, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.priv-contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.priv-contact-card a:hover { color: var(--accent); text-decoration: underline; }

@media (max-width: 860px) {
  .priv-layout { grid-template-columns: 1fr; }
  .priv-toc { display: none; }
  .priv-trust-row { gap: 0.75rem; }
}
@media (max-width: 500px) {
  .priv-trust-card { min-width: 100px; padding: 0.85rem 0.9rem; }
  .priv-trust-card strong { font-size: 0.9rem; }
}

/* ══════════════════════════════════
   ENHANCED STAT ITEMS
══════════════════════════════════ */
.stat-item:hover .stat-number {
  animation: neon-text 2s ease-in-out infinite;
}

/* ══════════════════════════════════
   SECTION HEADING ACCENT LINE
══════════════════════════════════ */
.section-heading .section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin-top: 0.4rem;
  border-radius: 2px;
}

/* ══════════════════════════════════
   INT-CARD & AUTO-CARD enhanced
══════════════════════════════════ */
.int-card:hover {
  border-color: rgba(95,123,255,0.25);
  box-shadow: 0 30px 80px rgba(3,8,30,0.22), 0 0 0 1px rgba(95,123,255,0.06);
}
.auto-card:hover {
  border-color: rgba(95,123,255,0.22);
  box-shadow: 0 36px 90px rgba(3,8,30,0.22), 0 0 0 1px rgba(95,123,255,0.06);
}

/* ══════════════════════════════════
   PRICING NOTE HIGHLIGHT
══════════════════════════════════ */
.pricing-note {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  margin: 1.5rem auto 0;
}

/* ══════════════════════════════════════════════════
   NEW ANIMATIONS & KEYFRAMES
══════════════════════════════════════════════════ */
@keyframes reveal-left-anim {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes reveal-right-anim {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scale-pop {
  0%   { opacity: 0; transform: scale(0.88); }
  65%  { transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes ping-dot {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes order-slide-in {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}
@keyframes progress-fill {
  from { width: 0%; }
  to   { width: 73%; }
}
@keyframes fop-dot-ping {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}
@keyframes btn-ripple {
  0%   { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}
@keyframes tab-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(95,123,255,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(95,123,255,0.2); }
}

/* ── Reveal Variants ── */
.reveal-left {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.91);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Cursor Glow ── */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,123,255,0.055) 0%, rgba(39,226,174,0.025) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: opacity 0.4s ease;
  will-change: left, top;
  top: 0;
  left: 0;
}

/* ── Enhanced Button Hover ── */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, background 0.2s ease, border-color 0.2s ease !important;
}
.btn:hover  { transform: translateY(-3px) scale(1.015) !important; }
.btn:active { transform: translateY(0px) scale(0.975) !important; transition-duration: 0.1s !important; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* ── Enhanced Card Hovers ── */
.feat-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease !important;
  will-change: transform;
}
.feat-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(95,123,255,0.28) !important;
  box-shadow: 0 28px 72px rgba(3,8,30,0.45), 0 0 0 1px rgba(95,123,255,0.08), 0 0 36px rgba(95,123,255,0.06) !important;
}
.ind-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.ind-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(39,226,174,0.22) !important;
  box-shadow: 0 22px 56px rgba(3,8,30,0.38) !important;
}
.pricing-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.pricing-card:hover {
  transform: translateY(-6px) !important;
}
.auto-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.auto-card:hover {
  transform: translateY(-5px) !important;
}
.int-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.int-card:hover { transform: translateY(-5px) !important; }

/* ── Section BG Glow Rings ── */
.section::before {
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   E-COMMERCE ORDER PANEL SECTION
══════════════════════════════════════════════════ */
.ecom-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.ecom-section::before {
  content: '';
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,50,0.065), transparent 65%);
  top: -20%;
  left: -12%;
  pointer-events: none;
  filter: blur(55px);
  z-index: 0;
}
.ecom-section::after {
  content: '';
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,123,255,0.07), transparent 65%);
  bottom: -10%;
  right: -5%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}
.ecom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ecom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,50,0.09);
  border: 1px solid rgba(255,180,50,0.22);
  color: var(--accent-warm);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ecom-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.ecom-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.ecom-copy > p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.82;
  margin: 0 0 30px;
}
.ecom-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}
.ecom-feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.ecom-feat:hover {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.06);
}
.ecom-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.ecom-feat:hover .ecom-feat-icon {
  background: rgba(255,180,50,0.1);
  border-color: rgba(255,180,50,0.22);
}
.ecom-feat-body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}
.ecom-feat-body span {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Order Panel Visual Mockup ── */
.ecom-visual {
  position: relative;
}
.order-panel {
  background: rgba(10, 15, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 48px 120px rgba(3, 8, 30, 0.55), 0 0 0 1px rgba(255,255,255,0.04), 0 0 60px rgba(255,180,50,0.06);
  animation: card-float 9s ease-in-out infinite;
}
.op-header {
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.op-dots { display: flex; gap: 5px; }
.op-dots span { width: 10px; height: 10px; border-radius: 50%; }
.op-dots span:nth-child(1) { background: #ff5f57; }
.op-dots span:nth-child(2) { background: #febc2e; }
.op-dots span:nth-child(3) { background: #28c840; }
.op-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}
.op-body { padding: 16px; }
.op-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.op-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 10px;
  text-align: center;
}
.op-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}
.op-stat small {
  font-size: 0.66rem;
  color: var(--muted);
}
.op-orders-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 7px;
}
.op-orders { display: flex; flex-direction: column; gap: 5px; }
.op-order {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 7px 10px;
  opacity: 0;
  animation: order-slide-in 0.4s ease forwards;
  transition: background 0.2s ease;
}
.op-order:hover { background: rgba(255,255,255,0.04); }
.op-order:nth-child(1) { animation-delay: 0.15s; }
.op-order:nth-child(2) { animation-delay: 0.28s; }
.op-order:nth-child(3) { animation-delay: 0.41s; }
.op-order:nth-child(4) { animation-delay: 0.54s; }
.op-order-id {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 36px;
}
.op-order-name {
  font-size: 0.76rem;
  color: var(--text);
  flex: 1;
}
.op-order-amount {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text);
  min-width: 50px;
  text-align: right;
}
.op-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  min-width: 62px;
  text-align: center;
}
.op-badge.delivered  { background: rgba(39,226,174,0.12);  color: #27e2ae; border: 1px solid rgba(39,226,174,0.2); }
.op-badge.shipped    { background: rgba(95,123,255,0.12);  color: var(--primary); border: 1px solid rgba(95,123,255,0.2); }
.op-badge.pending    { background: rgba(255,180,50,0.12);  color: var(--accent-warm); border: 1px solid rgba(255,180,50,0.2); }
.op-badge.processing { background: rgba(255,107,128,0.12); color: var(--danger); border: 1px solid rgba(255,107,128,0.2); }
.op-footer {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.op-notif {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--muted);
}
.op-notif-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.op-notif-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #27e2ae;
}
.op-notif-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(39,226,174,0.45);
  animation: ping-dot 1.6s ease-in-out infinite;
}
.op-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
}
.op-progress-label {
  font-size: 0.68rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.op-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.op-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}
.op-progress-fill.animated { width: 73%; }
.ecom-float-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: linear-gradient(135deg, var(--accent-warm), #ff9000);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255,180,50,0.38);
  animation: float 4.5s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 920px) {
  .ecom-grid { grid-template-columns: 1fr; gap: 44px; }
  .ecom-copy h2 { font-size: 1.7rem; }
}
@media (max-width: 540px) {
  .ecom-float-badge { display: none; }
  .op-order-amount { display: none; }
}

/* ══════════════════════════════════════════════════
   13TH FEATURE CARD — E-COMMERCE WIDE CARD
══════════════════════════════════════════════════ */
.feat-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feat-card-wide {
  grid-column: 1 / -1;
  padding: 28px 32px !important;
  background: linear-gradient(135deg,
    rgba(255,180,50,0.05) 0%,
    rgba(14,20,45,0.95) 50%,
    rgba(95,123,255,0.05) 100%) !important;
  border-color: rgba(255,180,50,0.14) !important;
  position: relative;
  overflow: hidden;
}
.feat-card-wide::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,50,0.08), transparent 70%);
  pointer-events: none;
}
.feat-card-wide:hover {
  border-color: rgba(255,180,50,0.28) !important;
  box-shadow: 0 28px 72px rgba(3,8,30,0.45), 0 0 40px rgba(255,180,50,0.06) !important;
}
.feat-card-wide-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.feat-card-wide-left { display: flex; flex-direction: column; gap: 0; }
.feat-card-wide-left h3 {
  font-size: 1.25rem !important;
  margin: 8px 0 10px !important;
}
.feat-card-wide-left p {
  margin: 0 0 16px !important;
  max-width: 580px;
}
.feat-new-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,180,50,0.18), rgba(255,180,50,0.06));
  border: 1px solid rgba(255,180,50,0.3);
  color: var(--accent-warm);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  width: fit-content;
}
.feat-wide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.feat-wide-tags span {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.feat-wide-tags span:hover {
  background: rgba(255,180,50,0.08);
  border-color: rgba(255,180,50,0.2);
  color: var(--accent-warm);
}
/* Mini order preview inside about.html feat card */
.feat-order-preview {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fop-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
}
.fop-id {
  color: var(--muted);
  font-weight: 700;
  min-width: 36px;
}
.fop-name {
  color: var(--text);
  flex: 1;
}
.fop-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}
.fop-shipped    { background: rgba(95,123,255,0.12);  color: var(--primary); }
.fop-pending    { background: rgba(255,180,50,0.12);  color: var(--accent-warm); }
.fop-delivered  { background: rgba(39,226,174,0.12);  color: #27e2ae; }
.fop-processing { background: rgba(255,107,128,0.12); color: var(--danger); }
.fop-notif {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: var(--muted);
  padding-top: 7px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 3px;
}
.fop-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}
.fop-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #27e2ae;
}
.fop-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(39,226,174,0.45);
  animation: fop-dot-ping 1.6s ease-in-out infinite;
}
@media (max-width: 760px) {
  .feat-card-wide-inner { grid-template-columns: 1fr; }
  .feat-order-preview { display: none; }
  .feat-card-wide { padding: 22px !important; }
}

/* ══════════════════════════════════════════════════
   ENHANCED SECTION BACKGROUNDS
══════════════════════════════════════════════════ */
.automations {
  position: relative;
}
.automations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(95,123,255,0.06), transparent);
  pointer-events: none;
}
.industries {
  position: relative;
}
.industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(39,226,174,0.05), transparent);
  pointer-events: none;
}

/* ── Nav link active underline ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ── Section label line extended ── */
.section-label {
  position: relative;
}

/* ── Stat items shimmer on hover ── */
.stat-item {
  overflow: hidden;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  transform: skewX(-15deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.stat-item:hover::after { left: 125%; }

/* ── Pricing card featured glow ── */
.pricing-card.featured {
  animation: tab-glow 4s ease-in-out infinite;
}

/* ── Better reading progress bar (all pages) ── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-warm));
  z-index: 9999;
  border-radius: 0 999px 999px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(95,123,255,0.5);
}

/* ══════════════════════════════════════════════════
   MOBILE IMPROVEMENTS
══════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .hero-copy h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats   { grid-template-columns: repeat(2, 1fr); }
  .feat-grid    { grid-template-columns: 1fr; }
  .auto-grid    { grid-template-columns: 1fr; }
  .int-grid     { grid-template-columns: 1fr; }
  .ind-grid     { grid-template-columns: 1fr; }
  .ecom-grid    { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .order-panel  { margin: 0 4px; }
}
@media (max-width: 540px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges  { gap: 0.4rem; }
  .op-stats     { gap: 6px; }
  .op-stat strong { font-size: 0.95rem; }
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOWS SECTION
══════════════════════════════════════════════════ */
.wa-flows-section {
  position: relative;
  overflow: hidden;
}
.wa-flows-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(37,211,102,0.06), transparent 60%),
              radial-gradient(ellipse at 20% 50%, rgba(95,123,255,0.07), transparent 50%);
  pointer-events: none;
}
.waf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
/* Steps */
.waf-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.waf-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  transition: all 0.4s ease;
  opacity: 0.55;
}
.waf-step.active {
  opacity: 1;
  border-color: rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.06);
  box-shadow: 0 0 24px rgba(37,211,102,0.1);
}
.waf-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.waf-step.active .waf-step-num {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.waf-step-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.waf-step-body span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
/* Phone mockup */
.waf-phone-wrap {
  position: relative;
}
.waf-phone {
  background: var(--surface);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(4,15,60,0.4), 0 0 0 1px var(--border-soft);
  max-width: 320px;
  margin: 0 auto;
}
.waf-phone-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(37,211,102,0.08);
  border-bottom: 1px solid rgba(37,211,102,0.15);
}
.waf-avatar {
  width: 36px;
  height: 36px;
  background: rgba(37,211,102,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.waf-phone-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.waf-phone-status { font-size: 0.72rem; color: #25d366; }
.waf-chat {
  padding: 1rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.waf-msg-bot {
  background: var(--surface-lift);
  border-radius: 12px 12px 12px 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: var(--text);
  max-width: 85%;
  line-height: 1.5;
}
.waf-flow-card {
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.waf-flow-card:hover { background: rgba(37,211,102,0.12); }
.waf-flow-icon { font-size: 1.3rem; }
.waf-flow-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); }
.waf-flow-text span { font-size: 0.75rem; color: var(--muted); }
.waf-flow-btn {
  margin-top: 0.5rem;
  background: #25d366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-align: center;
  width: fit-content;
  transition: background 0.2s ease;
}
.waf-flow-card:hover .waf-flow-btn { background: #128c7e; }
.waf-form-screen {
  background: var(--surface-lift);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: fadeSlideUp 0.4s ease;
}
.waf-form-header {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.2rem;
}
.waf-form-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.waf-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  color: var(--text);
}
.waf-submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 0.25rem;
  cursor: pointer;
}
.waf-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37,211,102,0.18), transparent 70%);
  border-radius: 50%;
  bottom: -80px;
  right: -60px;
  pointer-events: none;
  filter: blur(30px);
  animation: glow-pulse 4s ease infinite;
}
/* Plan availability chips */
.waf-plan-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}
.waf-chip {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid;
}
.waf-chip-starter  { border-color: rgba(141,152,191,0.35); color: var(--muted); }
.waf-chip-growth   { border-color: rgba(37,211,102,0.4); color: #25d366; background: rgba(37,211,102,0.07); }
.waf-chip-pro      { border-color: rgba(95,123,255,0.4); color: var(--primary); background: rgba(95,123,255,0.08); }
.waf-chip-custom   { border-color: rgba(255,184,77,0.4); color: var(--accent-warm); background: rgba(255,184,77,0.07); }
/* Responsive */
@media (max-width: 900px) {
  .waf-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .waf-phone-wrap { order: -1; }
}

/* ══════════════════════════════════════════════════
   WALLET / BILLING BOX (pricing page)
══════════════════════════════════════════════════ */
.wallet-billing-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--surface-lift);
  border: 1px solid rgba(95,123,255,0.2);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0 1.5rem;
}
.wb-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 0.15rem; }
.wb-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.wb-content > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.7;
}
.wb-items { display: flex; flex-direction: column; gap: 1rem; }
.wb-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.wb-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
}
.wb-dot-blue   { background: var(--primary); box-shadow: 0 0 8px var(--primary); }
.wb-dot-purple { background: #a78bfa; box-shadow: 0 0 8px rgba(167,139,250,0.6); }
.wb-dot-green  { background: #25d366; box-shadow: 0 0 8px rgba(37,211,102,0.6); }
.wb-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.wb-item span { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 720px) {
  .wallet-billing-box { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════
   WHATSAPP DEMO BUTTON (hero)
══════════════════════════════════════════════════ */
.btn-whatsapp-demo {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(37,211,102,0.3);
}
.btn-whatsapp-demo:hover {
  box-shadow: 0 18px 48px rgba(37,211,102,0.45);
}

/* ══════════════════════════════════════════════════
   BILLING PERIOD SWITCHER
══════════════════════════════════════════════════ */
.period-switcher {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
}
.period-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.period-btns {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}
.period-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.period-btn:hover { color: var(--text); }
.period-btn.active {
  background: var(--surface-lift);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.period-save {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(39,226,174,0.15);
  color: var(--accent);
  border: 1px solid rgba(39,226,174,0.25);
  letter-spacing: 0.02em;
}
.period-save.best {
  background: rgba(95,123,255,0.15);
  color: var(--primary);
  border-color: rgba(95,123,255,0.3);
}
@media (max-width: 540px) {
  .period-switcher { flex-direction: column; gap: 0.5rem; }
  .period-btns     { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL
══════════════════════════════════════════════════ */
.testimonials-section { overflow: hidden; }
.testi-viewport {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(4,15,60,0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  border-color: rgba(95,123,255,0.3);
  box-shadow: 0 16px 48px rgba(95,123,255,0.12);
}
.testi-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-text::before { content: '"'; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--av-bg, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--text); }
.testi-author span   { font-size: 0.78rem; color: var(--muted); }
/* Navigation dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 600px) {
  .testi-card { flex: 0 0 calc(100% - 0); }
}

/* ══════════════════════════════════════════════════
   PLAN COMPARISON TABLE
══════════════════════════════════════════════════ */
.compare-section { padding-top: 0; }
.compare-wrap { margin-top: 2.5rem; }
.compare-table-scroll { overflow-x: auto; border-radius: 18px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 600px;
}
.compare-table thead th {
  padding: 1.1rem 1.25rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.compare-table thead th.compare-feature-col {
  text-align: left;
  color: var(--muted);
  font-weight: 600;
}
.compare-table thead th.compare-highlight {
  background: rgba(95,123,255,0.1);
  color: var(--primary);
  border-bottom-color: rgba(95,123,255,0.4);
}
.compare-table tbody td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 0.85rem;
}
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.compare-table tbody td.compare-highlight {
  background: rgba(95,123,255,0.05);
}
.compare-group-row td {
  background: rgba(255,255,255,0.03) !important;
  color: var(--accent) !important;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.6rem 1.25rem !important;
}
.cmp-yes { color: var(--accent); font-size: 1.05rem; font-weight: 800; }
.cmp-no  { color: rgba(141,152,191,0.35); font-size: 1.1rem; }
.compare-table tfoot td {
  padding: 1.1rem 1.25rem;
  text-align: center;
  border-top: 2px solid var(--border);
  background: var(--surface);
}
.compare-table tfoot td.compare-highlight {
  background: rgba(95,123,255,0.06);
}
.btn-sm {
  padding: 0.5rem 1.1rem !important;
  font-size: 0.82rem !important;
}
.compare-table:hover .compare-highlight { background: rgba(95,123,255,0.09); }

/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════ */
.float-wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-appear 0.5s 1.5s both ease;
}
.float-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.6);
}
.float-wa-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.5);
  animation: wa-ping 2.5s ease infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes wa-appear {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
/* Tooltip */
.float-wa-btn::after {
  content: 'Try Live Demo';
  position: absolute;
  right: 70px;
  background: rgba(10,20,50,0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(37,211,102,0.3);
}
.float-wa-btn:hover::after { opacity: 1; }

/* ══════════════════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  z-index: 998;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-lift);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ══════════════════════════════════════════════════
   LIVE ACTIVITY TOASTS
══════════════════════════════════════════════════ */
.activity-toast-container {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 997;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.6rem;
  pointer-events: none;
}
.activity-toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 8px 32px rgba(4,15,60,0.3);
  font-size: 0.8rem;
  color: var(--text);
  max-width: 280px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.activity-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.activity-toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.at-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.at-text { line-height: 1.35; }
.activity-toast strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 0.1rem; }
.activity-toast span   { color: var(--muted); font-size: 0.74rem; }
@media (max-width: 540px) {
  .activity-toast-container { left: 1rem; right: 4.5rem; }
  .activity-toast { max-width: 100%; }
  .float-wa-btn  { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
  .back-to-top   { bottom: 4.8rem; right: 1.2rem; }
}

/* ══════════════════════════════════════════════════
   SCROLL PROGRESS BAR (all pages)
══════════════════════════════════════════════════ */
.page-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(95,123,255,0.5);
}
