/* ═══════════════════════════════════════════════════════════
   VISITI.IN — Custom Design System
   Built on Bootstrap 5 foundation
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  color-scheme: light;

  /* Brand colors */
  --primary: #6c47ff;
  --primary-soft: rgba(108, 71, 255, 0.12);
  --primary-glow: rgba(108, 71, 255, 0.25);
  --secondary: #00c2ff;
  --accent: #ff4d8d;
  --vendor-color: #6c47ff;
  --customer-color: #10b981;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-secondary: #f7f8ff;
  --panel: rgba(0, 0, 0, 0.04);
  --panel-strong: rgba(0, 0, 0, 0.07);
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);

  /* Text */
  --text: #0f0e1a;
  --text-secondary: #4a4a6a;
  --muted: #8585a8;
  --border: rgba(0, 0, 0, 0.09);

  /* Effects */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.12);
  --shadow-brand: 0 16px 40px rgba(108, 71, 255, 0.25);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-lg: 36px;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #080a12;
  --bg-secondary: #0f1220;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --glass: rgba(15, 18, 32, 0.82);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text: #f0f1ff;
  --text-secondary: #b0b3d8;
  --muted: #7070a0;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.5);
  --primary-soft: rgba(108, 71, 255, 0.18);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
  line-height: 1.6;
}

/* Body background gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(108, 71, 255, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 0%, rgba(255, 77, 141, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 194, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body[data-theme="dark"]::before {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(108, 71, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 0%, rgba(255, 77, 141, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 194, 255, 0.1) 0%, transparent 50%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.page-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ─── Animations ─── */
@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float-y-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes blob-pulse {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  33% {
    transform: scale(1.1) translate(15px, -10px);
  }

  66% {
    transform: scale(0.95) translate(-10px, 12px);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes count-up-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* ─── Fade-up Animation ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.btn-success {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgb(25 135 84 / 20%);
  background: linear-gradient(90deg, #198754, #38b77c);
}

.btn-success:hover,
.btn-success:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgb(25 135 84 / 45%);
  color: #fff;
}

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

body[data-theme="dark"] .site-header {
  background: rgba(8, 10, 18, 0.85);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

body[data-theme="dark"] .site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.brand-logo img {
  height: 38px;
  width: auto;
}

.navbar-toggler {
  border: none;
  background: none;
  padding: 0;
}

.nav-hamburger {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border) !important;
  background: var(--panel) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.nav-hamburger iconify-icon {
  font-size: 1.3rem;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-pill {
  color: var(--text-secondary) !important;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-pill:hover,
.nav-pill.active {
  background: var(--primary-soft);
  color: var(--primary) !important;
}

/* Theme Toggle Button */
.theme-toggle {
  position: relative;
  display: inline-flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: background 0.25s ease;
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--panel-strong);
}

.theme-icon {
  position: absolute;
  font-size: 1.1rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sun-icon {
  color: #f59e0b;
}

.moon-icon {
  color: #818cf8;
}

body[data-theme="light"] .sun-icon {
  opacity: 1;
  transform: scale(1);
}

body[data-theme="light"] .moon-icon {
  opacity: 0;
  transform: scale(0.7);
}

body[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: scale(0.7);
}

body[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: scale(1);
}

/* Nav buttons */
.btn-ghost-nav {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
}

.btn-ghost-nav:hover {
  background: var(--panel);
  color: var(--text);
  border-color: var(--primary);
}

.btn-cta-nav {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.80rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  border: none;
  box-shadow: 0 6px 20px rgba(108, 71, 255, 0.3);
  transition: all 0.25s ease;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(108, 71, 255, 0.4);
  color: #fff;
}

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.hero-section {
  position: relative;
  padding: 6rem 0 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ambient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: blob-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 71, 255, 0.18), transparent 65%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 141, 0.14), transparent 60%);
  top: 0;
  right: -80px;
  animation-delay: 2.5s;
}

.hero-blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.12), transparent 60%);
  bottom: 0;
  left: 30%;
  animation-delay: 5s;
}

body[data-theme="dark"] .hero-blob-1 {
  background: radial-gradient(circle, rgba(108, 71, 255, 0.35), transparent 65%);
}

body[data-theme="dark"] .hero-blob-2 {
  background: radial-gradient(circle, rgba(255, 77, 141, 0.28), transparent 60%);
}

body[data-theme="dark"] .hero-blob-3 {
  background: radial-gradient(circle, rgba(0, 194, 255, 0.22), transparent 60%);
}

/* Grid lines background */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 71, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 71, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body[data-theme="dark"] .hero-grid-lines {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

/* Hero content relative positioning */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Hero badge pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(108, 71, 255, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.hero-badge-pill iconify-icon {
  font-size: 1rem;
  color: #f59e0b;
}

/* Hero headline */
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.2rem, 4vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--primary), #a855f7, var(--accent));
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-divider {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-cta-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 20px;
  min-width: 240px;
  border: 1.5px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.hero-cta-btn:hover {
  transform: translateY(-4px);
  border-color: transparent;
  color: #fff;
}

.hero-cta-vendor:hover {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.35);
}

.hero-cta-customer:hover {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.35);
}

.hero-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: var(--primary-soft);
  color: var(--primary);
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-cta-customer .hero-cta-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.hero-cta-btn:hover .hero-cta-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-cta-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-label {
  color: #fff;
}

.hero-cta-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
  transition: color 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-desc {
  color: rgba(255, 255, 255, 0.75);
}

.hero-cta-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--muted);
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.hero-cta-btn:hover .hero-cta-arrow {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
}

/* Hero phones display */
.hero-phones-wrapper {
  position: relative;
  padding: 2rem 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.hero-phones-glow {
  position: absolute;
  width: 60%;
  height: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(108, 71, 255, 0.2), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-phones-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  animation: float-y-slow 6s ease-in-out infinite;
}

.hero-phones-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* Floating stat cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border-radius: 18px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

body[data-theme="dark"] .float-card {
  background: rgba(15, 18, 32, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fc-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.fc-purple {
  background: rgba(108, 71, 255, 0.15);
  color: #6c47ff;
}

.fc-orange {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.fc-pink {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

.float-card-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.float-card-lbl {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 3px;
}

.float-card-left-top {
  top: 8%;
  left: 0;
  animation: float-y 5.5s ease-in-out infinite;
}

.float-card-right-top {
  top: 12%;
  right: 0;
  animation: float-y 6.5s ease-in-out infinite reverse;
}

.float-card-left-bottom {
  bottom: 25%;
  left: 0;
  animation: float-y 7s ease-in-out infinite;
}

.float-card-right-bottom {
  bottom: 20%;
  right: 0;
  animation: float-y 5.8s ease-in-out infinite reverse;
}

/* ═══════════════════════════════════
   TICKER / MARQUEE
   ═══════════════════════════════════ */
.ticker-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 0;
  overflow: hidden;
}

.ticker-track {
  overflow: hidden;
  padding: 0;
}

.ticker-content {
  display: flex;
  gap: 0;
  animation: ticker 22s linear infinite;
  width: max-content;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.ticker-content span iconify-icon {
  color: var(--primary);
  font-size: 1rem;
}

/* ═══════════════════════════════════
   COMMON SECTION STYLES
   ═══════════════════════════════════ */
.section-pad {
  padding: 5.5rem 0;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-badge-vendor {
  background: rgba(108, 71, 255, 0.1);
  color: #6c47ff;
}

.section-badge-customer {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.5rem 0 0;
  line-height: 1.1;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin: 0.75rem auto 0;
}

/* ═══════════════════════════════════
   HERO CTA — Vendor Featured
   ═══════════════════════════════════ */
.hero-cta-featured {
  position: relative;
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.08), rgba(168, 85, 247, 0.08));
  border-color: rgba(108, 71, 255, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.12);
}

.hero-cta-featured::before {
  content: 'Vendors — Start Here';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}

.hero-cta-group-vendor-first {
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 640px) {
  .hero-cta-group-vendor-first {
    flex-direction: row;
    align-items: center;
  }
}

/* ═══════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════ */
.how-it-works-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
}

.how-step:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(108, 71, 255, 0.15);
  background: var(--panel-strong);
}

.how-step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.how-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: transform 0.35s ease;
}

.how-step:hover .how-step-icon {
  transform: scale(1.1) rotate(-5deg);
}

.how-step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.how-step-connector {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  margin-top: 90px;
  color: var(--muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Vendor-specific step highlight */
.how-step-vendor {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #6c47ff, #a855f7) 1;
  border-image-slice: 1;
  border-image-width: 3px 0 0 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.how-step-vendor .how-step-icon {
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.12), rgba(168, 85, 247, 0.12));
}

/* Customer journey callout note */
.how-customer-note {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hcn-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.06));
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  flex-wrap: wrap;
}

.hcn-icon {
  font-size: 1.8rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.hcn-text {
  flex: 1;
  min-width: 220px;
}

.hcn-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.hcn-text p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

.hcn-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  white-space: nowrap;
  align-self: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hcn-link:hover {
  background: #10b981;
  color: #fff;
}


/* ═══════════════════════════════════
   VENDOR SECTION
   ═══════════════════════════════════ */
.vendor-section {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.vendor-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(108, 71, 255, 0.1), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

body[data-theme="dark"] .vendor-bg-glow {
  background: radial-gradient(circle, rgba(108, 71, 255, 0.22), transparent 65%);
}

.text-gradient-vendor {
  background: linear-gradient(135deg, #6c47ff, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-customer {
  background: linear-gradient(135deg, #10b981, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Vendor feature list */
.vendor-feature-list {
  display: grid;
  gap: 0.85rem;
}

.vendor-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.vendor-feat-item:hover {
  background: var(--panel-strong);
  border-color: rgba(108, 71, 255, 0.3);
}

.vfi-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.vendor-feat-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.vendor-feat-item p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Vendor Dashboard Card */
.vendor-dashboard-card {
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

body[data-theme="dark"] .vendor-dashboard-card {
  background: rgba(15, 18, 32, 0.9);
}

.vdc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.vdc-header-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.vdc-header-dot.red {
  background: #ef4444;
}

.vdc-header-dot.yellow {
  background: #f59e0b;
}

.vdc-header-dot.green {
  background: #10b981;
}

.vdc-header-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', monospace;
}

.vdc-body {
  padding: 1.5rem;
}

.vdc-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vdc-stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.vdc-stat-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.vdc-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.vdc-stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Bar chart mock */
.vdc-chart-label,
.vdc-activity-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.vdc-bar-group {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  height: 100px;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.vdc-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.vdc-bar-fill {
  width: 100%;
  border-radius: 6px 6px 0 0;
  min-height: 8px;
  transition: height 1s ease;
}

.vdc-bar-item span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}

/* Activity List */
.vdc-activity-label {
  margin-top: 0;
}

.vdc-activity-list {
  display: grid;
  gap: 0.6rem;
}

.vdc-activity-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.vdc-activity-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.vdc-activity-info {
  flex: 1;
  min-width: 0;
}

.vdc-activity-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.vdc-activity-info span {
  font-size: 0.75rem;
  color: var(--muted);
}

.vdc-activity-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.vdc-activity-badge.stamp {
  background: var(--primary-soft);
  color: var(--primary);
}

.vdc-activity-badge.reward {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

/* Buttons */
.btn-vendor-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  border: none;
  box-shadow: 0 10px 30px rgba(108, 71, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-vendor-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.45);
  color: #fff;
}

.btn-customer-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border: none;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.btn-customer-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
  color: #fff;
}

.btn-ghost-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
}

.btn-ghost-outline:hover {
  background: var(--panel);
  border-color: var(--primary);
  color: var(--primary);
}

/* ═══════════════════════════════════
   CUSTOMER SECTION
   ═══════════════════════════════════ */
.customer-section {
  position: relative;
  overflow: hidden;
}

.customer-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -50px;
  left: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

body[data-theme="dark"] .customer-bg-glow {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22), transparent 65%);
}

/* Customer feature grid */
.customer-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cust-feat-card {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.cust-feat-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.1);
}

.cust-feat-card iconify-icon {
  font-size: 1.5rem;
  color: #10b981;
  display: block;
  margin-bottom: 0.6rem;
}

.cust-feat-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cust-feat-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Loyalty cards */
.customer-card-wrap {
  padding: 1rem;
}

.loyalty-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body[data-theme="dark"] .loyalty-card {
  background: rgba(15, 18, 32, 0.85);
}

.loyalty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.lc-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.lc-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.lc-icon-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.lc-business {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.lc-type {
  font-size: 0.78rem;
  color: var(--muted);
}

.lc-member-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(108, 71, 255, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.lc-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.lc-stamp {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px dashed var(--border);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--border);
  transition: all 0.25s ease;
}

.lc-stamp.filled {
  background: var(--primary-soft);
  border: 2px solid rgba(108, 71, 255, 0.3);
  color: var(--stamp-color, var(--primary));
}

.lc-stamp.reward-stamp {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.15));
  border: 2px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
}


.lc-progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(108, 71, 255, 0.1);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.lc-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #a855f7);
  transition: width 1s ease;
}

.lc-progress-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.lc-progress-label strong {
  color: var(--text);
}

/* Nearby pill */
.nearby-pill-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.np-icon {
  font-size: 1.4rem;
  color: #10b981;
  flex-shrink: 0;
}

.np-content {
  flex: 1;
}

.np-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.np-content span {
  font-size: 0.78rem;
  color: var(--muted);
}

.np-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  transition: all 0.25s ease;
}

.np-btn:hover {
  background: #10b981;
  color: #fff;
}

/* ═══════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════ */
.stats-section {
  background: var(--bg-secondary);
}

.stat-card-new {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.stat-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.stat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

/* ═══════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════ */
.cat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: default;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.12);
}

.cat-card-more:hover {
  border-color: #8b5cf6;
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
}

.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}

.cat-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cat-card span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.business-offer-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .business-offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .business-offer-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.business-offer-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.11);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.business-offer-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--primary);
  background: var(--primary-soft);
}

.business-offer-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.business-offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.75rem;
}

.business-offer-card p:before {
  content: 'Example ';
  color: #d435bc;
  font-weight: 600;
  margin-right: 2px;
}

.business-offer-icon.icon-salons {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.business-offer-icon.icon-carwash,
.business-offer-icon.icon-repair {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.business-offer-icon.icon-gyms,
.business-offer-icon.icon-sports {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}

.business-offer-icon.icon-spa,
.business-offer-icon.icon-movie {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

.business-offer-icon.icon-grocery,
.business-offer-icon.icon-laundry {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.business-offer-icon.icon-hotels,
.business-offer-icon.icon-coworking {
  background: rgba(108, 71, 255, 0.12);
  color: var(--primary);
}

.business-offer-icon.icon-pet,
.business-offer-icon.icon-medical {
  background: rgba(108, 71, 255, 0.12);
  color: var(--primary);
}

.business-offer-icon.icon-dessert,
.business-offer-icon.icon-bakery,
.business-offer-icon.icon-drinks,
.business-offer-icon.icon-gaming {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* ═══════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════ */
.testimonial-section {
  background: var(--bg-secondary);
}

.testi-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.35s ease;
}

body[data-theme="dark"] .testi-card {
  background: rgba(15, 18, 32, 0.8);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testi-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(108, 71, 255, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}

.testi-stars .star {
  font-size: 0.9rem;
  color: #f59e0b;
}

.testi-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-profile img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-profile strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testi-profile span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════════════════════
   DUAL CTA SECTION
   ═══════════════════════════════════ */
.dual-cta-section {
  overflow: hidden;
}

.dual-cta-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  height: 100%;
  transition: transform 0.35s ease;
}

.dual-cta-card:hover {
  transform: translateY(-4px);
}

.dual-cta-vendor {
  background: linear-gradient(145deg, rgba(108, 71, 255, 0.06), rgba(168, 85, 247, 0.06));
  border: 1.5px solid rgba(108, 71, 255, 0.2);
}

.dual-cta-customer {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.06));
  border: 1.5px solid rgba(16, 185, 129, 0.2);
}

.dcc-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 25px rgba(108, 71, 255, 0.3);
}

.dual-cta-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.dual-cta-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.dcc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.6rem;
}

.dcc-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.dcc-list li iconify-icon {
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.btn-vendor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  border: none;
  box-shadow: 0 10px 30px rgba(108, 71, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-vendor-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.45);
  color: #fff;
}

.btn-customer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border: none;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.btn-customer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
  color: #fff;
}

/* ═══════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════ */
.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

/* Dark header gradient band behind the heading */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(160deg, #0f0824 0%, #1a0d3d 45%, #0c1a2e 100%);
  z-index: 0;
  border-radius: 0 0 48px 48px;
}

body[data-theme="dark"] .pricing-section::before {
  background: linear-gradient(160deg, #070412 0%, #110828 45%, #070f1c 100%);
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

/* Override section-badge / heading colour inside dark band */
.pricing-section .section-badge {
  background: rgba(108, 71, 255, 0.3);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.pricing-section .section-heading {
  color: #fff;
}

.pricing-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

/* Billing toggle */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.ptw-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

.ptw-label-active {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ptw-save-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.pricing-toggle-btn {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.ptb-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.pricing-toggle-btn.is-monthly .ptb-knob {
  transform: translateX(0);
}

.pricing-toggle-btn.is-annual .ptb-knob {
  transform: translateX(20px);
}

/* ─── Pricing Grid ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-top: 1rem;
}

/* ─── Pricing Card ─── */
.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body[data-theme="dark"] .pricing-card {
  background: #0f1220;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Featured / Most Popular card */
.pricing-card.pc-featured {
  background: #fff;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 2px #6c47ff, 0 30px 80px rgba(108, 71, 255, 0.2);
  transform: translateY(-12px);
  z-index: 2;
}

body[data-theme="dark"] .pricing-card.pc-featured {
  background: #130f24;
  box-shadow: 0 0 0 2px #7c3aed, 0 30px 80px rgba(108, 71, 255, 0.3);
}

.pricing-card.pc-featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 0 0 2px #6c47ff, 0 40px 100px rgba(108, 71, 255, 0.3);
}

/* Popular badge */
.pc-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(108, 71, 255, 0.4);
}

.pc-popular-badge iconify-icon {
  font-size: 0.9rem;
}

/* Plan name */
.pc-plan-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.75rem;
}

/* Price */
.pc-price-wrap {
  text-align: center;
  margin-bottom: 0.75rem;
}

.pc-original {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.pc-original span {
  font-size: 0.75rem;
}

.pc-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}

.pc-currency {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.pc-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.pricing-card.pc-featured .pc-amount {
  color: #6c47ff;
}

.pc-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  margin-left: 2px;
}

/* Location tag */
.pc-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin: 0 auto 1.5rem;
  text-align: center;
  width: fit-content;
}

.pc-location-tag iconify-icon {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Features list */
.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pc-feat-yes {
  color: var(--text);
}

.pc-feat-yes iconify-icon {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.pc-feat-no {
  color: var(--muted);
  opacity: 0.55;
}

.pc-feat-no iconify-icon {
  color: var(--muted);
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA Buttons */
.pc-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pc-cta-outline {
  color: var(--text);
  border: 1.5px solid var(--border);
  background: transparent;
}

.pc-cta-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.pc-cta-primary {
  color: #fff;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  box-shadow: 0 10px 28px rgba(108, 71, 255, 0.35);
}

.pc-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(108, 71, 255, 0.5);
  color: #fff;
}

/* ─── Enterprise Bar ─── */
.enterprise-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
}

body[data-theme="dark"] .enterprise-bar {
  background: rgba(15, 18, 32, 0.85);
}

.ent-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.12), rgba(168, 85, 247, 0.12));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.ent-text {
  flex: 1;
  min-width: 200px;
}

.ent-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.ent-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.ent-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ent-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ent-btn-whatsapp {
  padding: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.ent-btn-outline {
  color: var(--text);
  border: 1.5px solid var(--border);
  background: transparent;
}

.ent-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.ent-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #6c47ff, #a855f7);
  border: none;
  box-shadow: 0 6px 18px rgba(108, 71, 255, 0.3);
}

.ent-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(108, 71, 255, 0.45);
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card.pc-featured {
    transform: none;
  }

  .pricing-card.pc-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 576px) {
  .pricing-section::before {
    height: 380px;
    border-radius: 0 0 32px 32px;
  }

  .enterprise-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .ent-actions {
    width: 100%;
  }

  .ent-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  background: var(--panel-strong);
  border-color: rgba(108, 71, 255, 0.2);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
}

.faq-trigger iconify-icon {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-content.open {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem;
}

.faq-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  padding-top: 0.25rem;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-brand-link img {
  height: 40px;
  width: auto;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--primary-soft);
  border-color: rgba(108, 71, 255, 0.3);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.footer-links-list a:hover {
  color: var(--primary);
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 992px) {
  .hero-section {
    padding: 5rem 0 2rem;
    min-height: auto;
  }

  .hero-phones-img-wrap {
    max-width: 700px;
  }

  .float-card {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-btn {
    min-width: unset;
  }

  .hero-cta-divider {
    text-align: center;
  }

  .how-it-works-flow {
    gap: 1rem;
  }

  .how-step-connector {
    display: none;
  }

  .how-step {
    max-width: 100%;
  }

  .customer-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .section-pad {
    padding: 4rem 0;
  }

  .float-card {
    display: none;
  }

  .how-it-works-flow {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    gap: 0.75rem;
  }

  .lc-stamps {
    gap: 0.35rem;
  }

  .lc-stamp {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .vdc-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 4rem 0 1rem;
  }

  .hero-badge-pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-cta-btn {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .dual-cta-card {
    padding: 1.75rem 1.25rem;
  }

  .vdc-stats-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }

  .vdc-stat-val {
    font-size: 1.2rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}