/* Modern Design System - Siddho CRM */
:root {
  --bg-dark: #07090e;
  --bg-card: rgba(18, 24, 38, 0.7);
  --bg-card-hover: rgba(26, 35, 56, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(0, 242, 254, 0.3);
  
  --primary: #00f2fe;
  --primary-glow: rgba(0, 242, 254, 0.4);
  --accent-purple: #7928ca;
  --accent-violet: #4f46e5;
  --accent-green: #10b981;
  --accent-gold: #fbbf24;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  
  --gradient-main: linear-gradient(135deg, #00f2fe 0%, #4f46e5 50%, #7928ca 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --shadow-glow: 0 10px 30px -10px rgba(0, 242, 254, 0.3);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan { color: #00f2fe; }
.text-purple { color: #a855f7; }
.text-green { color: #10b981; }
.text-gold { color: #fbbf24; }
.text-primary { color: var(--primary); }
.text-accent { color: #c084fc; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.sub-title {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(0, 242, 254, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 242, 254, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(0, 242, 254, 0.5);
}

.btn-glow {
  background: linear-gradient(135deg, #00f2fe, #4f46e5);
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.7);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-glass-bright);
}

.btn-outline:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-green {
  background: #25d366;
  color: #07090e;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-green i {
  color: #07090e;
}

.btn-green:hover {
  background: #1eb956;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-green:hover i {
  color: #000000;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #4f46e5, #7928ca);
  color: #fff;
  padding: 8px 0;
  font-size: 0.9rem;
  width: 100%;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  overflow: hidden;
}

.announcement-content span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.announcement-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
  transition: all 0.3s ease;
  width: 100%;
  overflow: visible;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.header-logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary);
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.highlight-link {
  color: #fbbf24;
  font-weight: 700;
  background: rgba(251, 191, 36, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.highlight-link:hover {
  color: #fff;
  background: rgba(251, 191, 36, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  white-space: nowrap;
}

.phone-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px 0;
  overflow: hidden;
}

/* ---- Particle Canvas ---- */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(121, 40, 202, 0.1) 40%, rgba(7, 9, 14, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Typewriter line ---- */
.hero-typewriter {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.typewriter-word {
  color: var(--primary);
  font-weight: 700;
  min-width: 2px;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--primary);
  font-weight: 300;
  animation: blink-cursor 0.75s step-end infinite;
  margin-left: 1px;
  line-height: 1;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Light theme adjustments */
body.light-theme .hero-typewriter { color: #4b5563; }
body.light-theme .typewriter-word { color: #1d4ed8; }
body.light-theme .typewriter-cursor { color: #1d4ed8; }

/* ---- Animated Stats Counter Section ---- */
.stats-counter-section {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.04) 0%, rgba(79, 70, 229, 0.06) 50%, rgba(121, 40, 202, 0.04) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-counter-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-counter-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}

.stat-counter-item:hover { transform: translateY(-6px); border-color: var(--border-glass-bright); box-shadow: var(--shadow-card); }
.stat-counter-item:hover::before { transform: scaleX(1); }

.stat-counter-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.stat-counter-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Light theme overrides */
body.light-theme .stats-counter-section {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.04) 0%, rgba(79, 70, 229, 0.06) 100%);
  border-color: rgba(0,0,0,0.07);
}

body.light-theme .stat-counter-item {
  background: rgba(255,255,255,0.88);
  border-color: rgba(0,0,0,0.08);
}

body.light-theme .stat-counter-label { color: #4b5563; }

@media (max-width: 768px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-counter-number { font-size: 2.2rem; }
  .stat-counter-item { padding: 20px 12px; }
}

@media (max-width: 480px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(121, 40, 202, 0.2);
  border: 1px solid rgba(121, 40, 202, 0.4);
  color: #c084fc;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Pricing Tagline Box */
.hero-pricing-box {
  background: rgba(18, 24, 38, 0.8);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pricing-badge-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.price-onboarding {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00f2fe;
}

.price-onboarding span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-separator {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.price-monthly {
  font-size: 2.2rem;
  font-weight: 800;
  color: #10b981;
}

.price-monthly span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trust-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill-item i {
  color: var(--primary);
}

/* Hero Visual & Floating Badges */
.hero-visual-content {
  position: relative;
}

.hero-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--border-glass-bright);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  background: var(--bg-card);
}

.hero-dashboard-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.floating-stat {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass-bright);
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

.stat-1 { top: -20px; left: -20px; }
.stat-2 { bottom: -20px; left: -10px; animation-delay: 1.5s; }
.stat-3 { top: 40%; right: -25px; animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.bg-cyan { background: linear-gradient(135deg, #00f2fe, #00c6ff); }
.bg-purple { background: linear-gradient(135deg, #7928ca, #4f46e5); }
.bg-green { background: linear-gradient(135deg, #10b981, #059669); }

.floating-stat small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-stat strong {
  font-size: 0.95rem;
  color: #fff;
}

/* Perks Banner */
.perks-bar {
  background: rgba(18, 24, 38, 0.5);
  border-y: 1px solid var(--border-glass);
  padding: 40px 0;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.perk-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  transition: transform 0.3s ease;
}

.perk-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.perk-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.perk-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.perk-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-bright);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-checklist {
  list-style: none;

}

.service-checklist li {
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-checklist i {
  color: var(--accent-green);
  font-size: 0.8rem;
}

/* =========================================================
   Demo Softwares Section
   ========================================================= */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border-color: var(--border-glass-bright);
}

/* Top bar with icon + live badge */
.demo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px 24px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-glass);
}

.demo-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.demo-color-orange { background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.demo-color-purple { background: linear-gradient(135deg, #7928ca, #4f46e5); box-shadow: 0 8px 20px rgba(121,40,202,0.35); }
.demo-color-cyan   { background: linear-gradient(135deg, #00f2fe, #0891b2); box-shadow: 0 8px 20px rgba(0,242,254,0.3); }

.demo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 5px 12px;
  border-radius: 50px;
}

.demo-live-dot {
  font-size: 0.45rem;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

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

.demo-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-glass);
}

.demo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.demo-card:hover .demo-card-img img {
  transform: scale(1.08);
}

/* Card body */
.demo-card-body {
  flex: 1;
  padding: 24px;
}

.demo-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #fff;
}

.demo-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.demo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-features li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-features li i {
  color: var(--accent-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Card footer with button */
.demo-card-footer {
  padding: 20px 24px 24px 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-demo {
  background: var(--gradient-main);
  color: #fff;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,242,254,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,242,254,0.45);
  color: #fff;
}

.demo-coming-soon {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Bottom CTA note */
.demo-cta-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,242,254,0.05);
  border: 1px solid rgba(0,242,254,0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.demo-cta-note i {
  font-size: 1.4rem;
  color: #fbbf24;
  flex-shrink: 0;
}

.demo-cta-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* Light theme */
body.light-theme .demo-card { background: rgba(255,255,255,0.88); border-color: rgba(0,0,0,0.08); }
body.light-theme .demo-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
body.light-theme .demo-card-top { background: rgba(0,0,0,0.02); border-bottom-color: rgba(0,0,0,0.07); }
body.light-theme .demo-card-body h3 { color: #0f172a; }
body.light-theme .demo-card-body p { color: #4b5563; }
body.light-theme .demo-features li { color: #0f172a; }
body.light-theme .demo-card-footer { border-top-color: rgba(0,0,0,0.07); }
body.light-theme .demo-cta-note { background: rgba(29,78,216,0.05); border-color: rgba(29,78,216,0.15); }
body.light-theme .demo-cta-note a { color: #1d4ed8; }

/* Responsive */
@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .demo-grid { grid-template-columns: 1fr; }
  .demo-card-body h3 { text-align: left; }
}

/* Accounting Spotlight */

.spotlight-card {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.15) 0%, rgba(18, 24, 38, 0.9) 100%);
  border: 1px solid rgba(121, 40, 202, 0.4);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.spotlight-badge {
  position: absolute;
  top: -16px;
  left: 48px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.spotlight-info h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.spotlight-info .price-tag {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  padding: 2px 10px;
  border-radius: 8px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-item i {
  font-size: 1.25rem;
  margin-top: 4px;
}

.bullet-item strong {
  display: block;
  color: #fff;
}

.bullet-item small {
  color: var(--text-muted);
}

.spotlight-box .box-inner {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 20px;
}

.box-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-green { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.badge-cyan { background: rgba(0, 242, 254, 0.2); color: #00f2fe; }
.badge-purple { background: rgba(121, 40, 202, 0.2); color: #c084fc; }

.stat-row.highlight {
  padding-top: 14px;
  border-top: 1px dashed var(--border-glass);
}

.total-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
}

/* Calculator Section */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-card);
}

.calc-inputs h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.range-display {
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 6px;
  font-weight: 600;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.toggle-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.toggle-status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.toggle-status-badge.badge-on {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.toggle-status-badge.badge-off {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-glass-bright);
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(25px);
}

.calc-breakdown {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

.breakdown-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.calc-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.result-box {
  background: rgba(15, 23, 42, 0.8);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  border: 1px solid var(--border-glass);
}

.result-box span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-amount {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 4px;
}

.highlight-text {
  color: var(--primary);
}

.savings-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.savings-banner i {
  font-size: 2.2rem;
  color: #10b981;
}

.savings-banner strong {
  display: block;
  font-size: 1.8rem;
  color: #10b981;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.08) 0%, rgba(18, 24, 38, 0.95) 100%);
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--gradient-main);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 28px;
}

.onboarding-fee {
  display: inline-block;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-val {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-val span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-subtext {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 4px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-card-graphic {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.graphic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.about-card-graphic h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.about-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.highlight-box i {
  font-size: 1.5rem;
  margin-top: 4px;
}

.lead-p {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
}

.contact-quick-info {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.q-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
}

.q-item i {
  font-size: 1.3rem;
}

.q-item a {
  color: #fff;
  text-decoration: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
}

.author-info small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--border-glass-bright);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.icon-toggle {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .icon-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
  transition: max-height 0.4s ease-in-out;
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.contact-cards {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.c-card:hover {
  transform: translateX(6px);
  border-color: var(--primary);
}

.c-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.checkbox-grid label {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.brand-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0;
}

.address-text {
  font-size: 0.85rem;
  color: var(--primary) !important;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Quick Action WhatsApp Button Text Color Fix */
.footer-col a.btn-green,
.footer-col a.btn-green i,
.footer-col a.btn-green * {
  color: #07090e !important;
  font-weight: 700 !important;
}

.footer-col a.btn-green {
  margin-top: 20px;
  display: inline-block;
}

.footer-col a.btn-green:hover,
.footer-col a.btn-green:hover i,
.footer-col a.btn-green:hover * {
  color: #000000 !important;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp .tooltip {
  position: absolute;
  right: 70px;
  background: #111827;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid var(--border-glass);
}

.floating-whatsapp:hover .tooltip {
  opacity: 1;
}

/* Responsive Layout & Mobile Centralization */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .calculator-card, .contact-grid, .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* === MOBILE CONTAINMENT === */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
  }

  /* Announcement Bar Mobile */
  .announcement-bar {
    padding: 6px 0;
    font-size: 0.78rem;
  }

  .announcement-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
    padding: 0;
  }

  .announcement-content span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }

  .announcement-link {
    font-size: 0.78rem;
    margin-left: 6px;
    flex-shrink: 0;
  }

  /* Navbar Mobile */
  .navbar {
    padding: 12px 0;
  }

  .nav-container {
    gap: 8px;
  }

  .brand-logo {
    gap: 8px;
  }

  .header-logo-img {
    height: 36px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px 32px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
    z-index: 999;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-glass);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .phone-btn span {
    display: none;
  }

  .phone-btn {
    padding: 7px 10px;
    font-size: 0.85rem;
  }

  /* Hero Section Centralization */
  .hero-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    margin: 0 auto 20px auto;
  }

  .hero-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-pricing-box {
    margin: 0 auto 28px auto;
    width: 100%;
    max-width: 380px;
  }

  .pricing-badge-main {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .trust-pills {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pill-item {
    justify-content: center;
  }

  /* Perks & Services Center */
  .perks-grid, .services-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .perk-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card-icon {
    margin: 0 auto 16px auto;
  }

  .service-checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Spotlight & Accounting Center */
  .spotlight-card {
    padding: 32px 20px;
  }

  .spotlight-badge {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .spotlight-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bullet-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Calculator Section Center */
  .calculator-card {
    padding: 24px 18px;
    text-align: center;
  }

  .calc-inputs h3 {
    justify-content: center;
  }

  .toggle-switch {
    margin: 8px auto 0 auto;
  }

  .calc-results {
    align-items: center;
  }

  .result-box {
    width: 100%;
    text-align: center;
  }

  .savings-banner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Pricing Cards Mobile Center */
  .pricing-card {
    padding: 32px 20px;
    text-align: center;
  }

  .popular-badge {
    right: 50%;
    transform: translateX(50%);
  }

  .plan-features li {
    justify-content: center;
  }

  /* About Us Section Center */
  .about-card-graphic {
    padding: 24px 18px;
    text-align: center;
  }

  .graphic-badge {
    margin: 0 auto 16px auto;
  }

  .highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-quick-info {
    justify-content: center;
    width: 100%;
  }

  .q-item {
    width: 100%;
    justify-content: center;
  }

  /* Testimonials & FAQ Mobile Center */
  .testimonial-card {
    text-align: center;
  }

  .stars {
    display: flex;
    justify-content: center;
  }

  .author-info {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }

  /* Contact Section & Form Center */
  .contact-info-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-cards {
    width: 100%;
  }

  .c-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .form-wrapper {
    padding: 28px 18px;
    text-align: center;
  }

  .form-wrapper h3 {
    justify-content: center;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* Footer Centralization */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .brand-col .brand-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand-col .footer-logo-img {
    display: block;
    margin: 0 auto;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }
}

/* =========================================================
   LIGHT THEME OVERRIDES
   ========================================================= */
body.light-theme {
  /* Color token overrides */
  --primary: #1d4ed8;               /* navy replaces cyan */
  --primary-glow: rgba(29, 78, 216, 0.35);
  --bg-dark: #f0f4f8;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --border-glass: rgba(0, 0, 0, 0.09);
  --border-glass-bright: rgba(29, 78, 216, 0.3);
  --text-main: #0f172a;
  --text-muted: #4b5563;
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: #f0f4f8;
  color: #0f172a;
}

/* ---------- White text → dark in light mode ---------- */
/* Headings */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 { color: #0f172a; }

/* Cyan text utilities → navy */
body.light-theme .text-cyan  { color: #1d4ed8; }
body.light-theme .text-accent { color: #6d28d9; }

/* Badge-cyan text */
body.light-theme .badge-cyan { color: #1d4ed8; background: rgba(29, 78, 216, 0.12); }

/* price colours */
body.light-theme .price-onboarding { color: #1d4ed8; }

/* Announcement bar stays coloured — skip */

/* Buttons: outline gets dark text */
body.light-theme .btn-outline { color: #0f172a; border-color: rgba(29,78,216,0.4); }
body.light-theme .btn-outline:hover { color: #0f172a; background: rgba(29,78,216,0.1); }

/* highlight-link */
body.light-theme .highlight-link { color: #92400e; }
body.light-theme .highlight-link:hover { color: #1c1917; }

/* Nav links */
body.light-theme .nav-link.active,
body.light-theme .nav-link:hover { color: #1d4ed8; }

/* Phone button */
body.light-theme .phone-btn:hover { color: #1d4ed8; border-color: #1d4ed8; }

/* Logo CRM span */
body.light-theme .logo-text span { color: #1d4ed8; }

/* Hero badge */
body.light-theme .hero-badge { color: #6d28d9; border-color: rgba(109,40,217,0.35); background: rgba(109,40,217,0.08); }

/* floating stat text */
body.light-theme .floating-stat small { color: #4b5563; }

/* Pill items */
body.light-theme .pill-item { color: #374151; }
body.light-theme .pill-item i { color: #1d4ed8; }

/* Perk icons */
body.light-theme .perk-icon { color: #1d4ed8; }
body.light-theme .perk-card h3 { color: #0f172a; }

/* Service card icon */
body.light-theme .card-icon { color: #1d4ed8; background: rgba(29,78,216,0.08); border-color: rgba(29,78,216,0.2); }
body.light-theme .service-card h3 { color: #0f172a; }

/* spotlight info */
body.light-theme .spotlight-info h2 { color: #0f172a; }
body.light-theme .bullet-item strong { color: #0f172a; }

/* Accounting box stats */
body.light-theme .stat-row { color: #0f172a; }
body.light-theme .box-header { color: #0f172a; }
body.light-theme .total-price { color: #b45309; }

/* Sub-title chips */
body.light-theme .sub-title {
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.2);
}

/* Range display */
body.light-theme .range-display { color: #1d4ed8; }

/* Result highlight */
body.light-theme .highlight-text { color: #1d4ed8; }

/* Savings banner text */
body.light-theme .savings-banner strong { color: #065f46; }
body.light-theme .savings-banner i     { color: #065f46; }

/* Pricing */
body.light-theme .price-val { color: #0f172a; }
body.light-theme .price-subtext { color: #1d4ed8; }
body.light-theme .onboarding-fee { color: #374151; background: rgba(0,0,0,0.06); }
body.light-theme .popular-badge { color: #fff; } /* gradient bg — keep white */

/* Graphic badge */
body.light-theme .graphic-badge { color: #1d4ed8; background: rgba(29,78,216,0.08); }

/* FAQ */
body.light-theme .icon-toggle { color: #1d4ed8; }

/* Contact section heading */
body.light-theme .contact-info-col h2 { color: #0f172a; }
body.light-theme .contact-info-col p  { color: #374151; }

/* Form wrapper heading */
body.light-theme .form-wrapper h3 { color: #0f172a; }
body.light-theme .form-wrapper h3 i { color: #1d4ed8; }

/* Footer headings */
body.light-theme .footer-col h4 { color: #0f172a; }
body.light-theme .brand-col p { color: #4b5563; }
body.light-theme .address-text { color: #1d4ed8 !important; }

/* Footer hover */
body.light-theme .footer-col a:hover { color: #1d4ed8; }

/* Announcement link */
body.light-theme .announcement-link { color: #fff; } /* white on coloured bar — keep */

/* WhatsApp tooltip */
body.light-theme .floating-whatsapp .tooltip { background: #0f172a; color: #fff; border-color: rgba(0,0,0,0.15); }

/* c-card text */
body.light-theme .c-card strong { color: #0f172a; }
body.light-theme .c-card small  { color: #4b5563; }
body.light-theme .c-card:hover  { border-color: #1d4ed8; }

body.light-theme .navbar {
  background: rgba(240, 244, 248, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .nav-link { color: #374151; }
body.light-theme .nav-link:hover,
body.light-theme .nav-link.active { color: var(--primary); }

body.light-theme .phone-btn {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
}

body.light-theme .mobile-toggle { color: #0f172a; }
body.light-theme .nav-menu { background: rgba(240, 244, 248, 0.98); }

body.light-theme .hero-bg-glow {
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, rgba(79, 70, 229, 0.1) 40%, rgba(240, 244, 248, 0) 70%);
}

body.light-theme .hero-pricing-box {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .perks-bar {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.07);
}

body.light-theme .perk-card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.07);
}

body.light-theme .service-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}
body.light-theme .service-card:hover { background: rgba(255, 255, 255, 0.98); }
body.light-theme .service-card p,
body.light-theme .perk-card p,
body.light-theme .about-card-graphic p { color: #4b5563; }
body.light-theme .service-checklist li { color: #0f172a; }

body.light-theme .spotlight-card {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.07) 0%, rgba(255,255,255,0.9) 100%);
  border-color: rgba(121, 40, 202, 0.25);
}
body.light-theme .spotlight-box .box-inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 120, 210, 0.2);
}
body.light-theme .box-header { border-bottom-color: rgba(0,0,0,0.08); }

body.light-theme .calculator-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 120, 210, 0.2);
}
body.light-theme .toggle-group {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}
body.light-theme .toggle-label { color: #0f172a; }
body.light-theme .calc-breakdown {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
body.light-theme .result-box {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .pricing-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
}
body.light-theme .pricing-card.featured {
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.1) 0%, rgba(255,255,255,0.95) 100%);
  border-color: var(--primary);
}
body.light-theme .plan-header p { color: #4b5563; }

body.light-theme .about-card-graphic { background: rgba(255, 255, 255, 0.88); }
body.light-theme .highlight-box {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.07);
}
body.light-theme .about-text-col p { color: #4b5563; }
body.light-theme .lead-p { color: #1e293b; }

body.light-theme .q-item {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.07);
}
body.light-theme .quote { color: #374151; }

body.light-theme .faq-item {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}
body.light-theme .faq-question { color: #0f172a; }
body.light-theme .faq-answer { color: #4b5563; }

body.light-theme .form-wrapper { background: rgba(255, 255, 255, 0.9); }
body.light-theme .form-group input[type="text"],
body.light-theme .form-group input[type="tel"] {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
  color: #0f172a;
}
body.light-theme .checkbox-grid label { color: #1e293b; }

body.light-theme .c-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  color: #0f172a;
}

body.light-theme .footer {
  background: #e2e8f0;
  border-top-color: rgba(0, 0, 0, 0.08);
}
body.light-theme .footer-col a { color: #4b5563; }
body.light-theme .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: #6b7280;
}

body.light-theme .floating-stat {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 120, 210, 0.2);
}
body.light-theme .floating-stat strong { color: #0f172a; }
body.light-theme .logo-text { color: #0f172a; }

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */
.theme-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle-track {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.2), inset 0 1px 3px rgba(0,0,0,0.3);
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #4f46e5, #00f2fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.theme-icon-dark,
.theme-icon-light {
  position: absolute;
  font-size: 0.65rem;
  color: #fff;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-dark { opacity: 1; transform: scale(1); }
.theme-icon-light { opacity: 0; transform: scale(0.5) rotate(-45deg); }

/* Toggle in light mode */
body.light-theme .theme-toggle-track {
  background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2), inset 0 1px 3px rgba(0,0,0,0.08);
}

body.light-theme .theme-toggle-thumb {
  transform: translateX(30px);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

body.light-theme .theme-icon-dark { opacity: 0; transform: scale(0.5) rotate(45deg); }
body.light-theme .theme-icon-light { opacity: 1; transform: scale(1) rotate(0); }

/* =========================================================
   SCROLL TO TOP BUTTON
   ========================================================= */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;          /* matches WhatsApp float */
  height: 60px;
  background: linear-gradient(135deg, #00f2fe, #4f46e5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0, 242, 254, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              box-shadow 0.35s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.8);
  overflow: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 16px 36px rgba(0, 242, 254, 0.6);
}

.scroll-to-top:active { transform: scale(0.94); }

.stt-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.scroll-to-top:hover .stt-ripple {
  animation: stt-pulse 1.4s ease-out infinite;
}

@keyframes stt-pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 84px;
    right: 20px;
    width: 54px;          /* matches mobile WhatsApp float (54px) */
    height: 54px;
    font-size: 1.2rem;
  }
}


