/* ============================================
   FinSage Website Styles - Shared Hosting Version
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #0a0f1a;
  --bg-secondary: #0d1525;
  --bg-card: rgba(15, 23, 42, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --cyan: #22d3ee;
  --teal: #2dd4bf;
  --violet: #a78bfa;
  --purple: #c084fc;
  --blue: #60a5fa;
  --indigo: #818cf8;
  --emerald: #34d399;
  --amber: #fbbf24;
  --rose: #fb7185;
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-cyan: linear-gradient(135deg, #22d3ee, #2dd4bf, #34d399);
  --gradient-violet: linear-gradient(135deg, #a78bfa, #c084fc);
  --gradient-blue: linear-gradient(135deg, #60a5fa, #818cf8);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #0a0f1a 0%, #0d1525 25%, #0f172a 50%, #0c1222 75%, #0a0e17 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Background Animation */
.bg-animation {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: #22d3ee;
  top: 0;
  left: 25%;
  animation: pulse 8s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: #3b82f6;
  bottom: 0;
  right: 25%;
  animation: pulse 10s ease-in-out infinite 2s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: #14b8a6;
  top: 50%;
  left: 0;
  animation: pulse 12s ease-in-out infinite 4s;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.floating-orb-1 {
  width: 288px;
  height: 288px;
  background: #22d3ee;
  top: 80px;
  right: 80px;
  animation: float 20s ease-in-out infinite;
}

.floating-orb-2 {
  width: 384px;
  height: 384px;
  background: #3b82f6;
  bottom: 160px;
  left: 80px;
  animation: float 25s ease-in-out infinite reverse;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.05); opacity: 0.12; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(100px, -50px); }
  66% { transform: translate(-80px, 60px); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-group:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-group:hover .logo-img {
  transform: scale(1.1);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link:hover {
  color: var(--cyan);
}

.btn-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.btn-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4, #0d9488);
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  text-align: left;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-link:hover {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-violet {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.3);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

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

.gradient-text-amber {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Dashboard Slideshow */
.slideshow-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.slideshow-main {
  position: relative;
  aspect-ratio: 16/10;
}

.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-image.active {
  opacity: 1;
}

.slideshow-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s;
}

.slide-btn:hover {
  color: var(--cyan);
}

.slide-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
}

.play-pause-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.play-pause-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slide-counter {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-labels {
  position: absolute;
  bottom: 4.5rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
}

.slide-label {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: white;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.slide-label.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-section,
.pos-section,
.practitioner-section,
.coming-soon-section,
.cta-section,
.reviews-section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: inherit;
}

.feature-card:hover::before,
.feature-card.expanded::before {
  opacity: 1;
}

.feature-card:nth-child(1)::before { background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(45, 212, 191, 0.05)); }
.feature-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.05)); }
.feature-card:nth-child(3)::before { background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(139, 92, 246, 0.05)); }
.feature-card:nth-child(4)::before { background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(245, 158, 11, 0.05)); }
.feature-card:nth-child(5)::before { background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(236, 72, 153, 0.05)); }
.feature-card:nth-child(6)::before { background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(59, 130, 246, 0.05)); }
.feature-card:nth-child(7)::before { background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), rgba(52, 211, 153, 0.05)); }
.feature-card:nth-child(8)::before { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05)); }
.feature-card:nth-child(9)::before { background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(34, 211, 238, 0.05)); }

.feature-card:hover,
.feature-card.expanded {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

.icon-cyan { background: linear-gradient(135deg, #22d3ee, #2dd4bf); }
.icon-emerald { background: linear-gradient(135deg, #34d399, #10b981); }
.icon-violet { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.icon-orange { background: linear-gradient(135deg, #fb923c, #f59e0b); }
.icon-rose { background: linear-gradient(135deg, #fb7185, #ec4899); }
.icon-sky { background: linear-gradient(135deg, #38bdf8, #3b82f6); }
.icon-lime { background: linear-gradient(135deg, #84cc16, #22c55e); }
.icon-indigo { background: linear-gradient(135deg, #818cf8, #6366f1); }
.icon-teal { background: linear-gradient(135deg, #2dd4bf, #14b8a6); }

.feature-badge {
  float: right;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.feature-card:hover .feature-title {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.feature-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.feature-card.expanded .feature-expanded {
  max-height: 400px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.feature-full-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-highlights span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.feature-highlights span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.feature-stat {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.feature-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chevron {
  transition: transform 0.3s;
}

.feature-card.expanded .chevron {
  transform: rotate(180deg);
}

/* POS Section */
.pos-section {
  /* Default styling handled by container */
}

.practitioner-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 2rem;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.practitioner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: #3b82f6;
  filter: blur(128px);
  opacity: 0.1;
  border-radius: 50%;
}

.pos-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.pos-feature-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
  cursor: default;
}

.pos-feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.4);
}

.pos-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.pos-feature-card:hover .pos-feature-icon {
  transform: scale(1.1);
}

.pos-feature-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.pos-feature-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 500;
}

/* POS Gallery */
.pos-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pos-image-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pos-image-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pos-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pos-image-card:hover img {
  transform: scale(1.05);
}

.pos-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.pos-image-card:hover .pos-image-overlay {
  opacity: 1;
}

.pos-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.9);
  color: white;
  border: 1px solid #60a5fa;
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.9);
  color: white;
  border: 1px solid #34d399;
}

.pos-image-overlay h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.pos-image-overlay p {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.zoom-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}

.pos-image-card:hover .zoom-indicator {
  opacity: 1;
  transform: scale(1);
}

/* Practitioner Cards */
.practitioner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.practitioner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.practitioner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.04));
  border-radius: inherit;
}

.practitioner-card:hover::before,
.practitioner-card.expanded::before {
  opacity: 1;
}

.practitioner-card:hover,
.practitioner-card.expanded {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.practitioner-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.practitioner-card:hover .practitioner-icon {
  transform: scale(1.1) rotate(3deg);
}

.icon-blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.icon-amber { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.practitioner-badge {
  float: right;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
}

.practitioner-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.practitioner-card:hover .practitioner-title {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.practitioner-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.practitioner-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.practitioner-card.expanded .practitioner-expanded {
  max-height: 350px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.practitioner-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.practitioner-highlights span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.practitioner-highlights span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  flex-shrink: 0;
}

.practitioner-full-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Practitioner Stats */
.practitioner-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.practitioner-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
}

.stat-icon-blue {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #60a5fa;
}

.practitioner-stat strong {
  display: block;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.25rem;
}

.practitioner-stat span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Coming Soon */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.coming-soon-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.coming-soon-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.icon-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.icon-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

.coming-soon-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.coming-soon-card:hover h4 {
  color: white;
}

.coming-soon-card p {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.soon-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(245, 158, 11, 0.1);
  color: rgba(251, 191, 36, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 9999px;
  font-size: 0.625rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-container {
  max-width: 900px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

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

/* Reviews Section */
.reviews-toggle-btn {
  display: block;
  margin: 0 auto 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  color: #fcd34d;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-toggle-btn:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(245, 158, 11, 0.2));
  transform: translateY(-2px);
}

.reviews-content {
  transition: all 0.5s ease;
}

.reviews-content.hidden {
  display: none;
}

.reviews-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author strong {
  display: block;
  color: white;
  font-size: 0.875rem;
}

.review-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

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

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

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

.footer-social a:hover {
  color: var(--cyan);
}

/* Modals */
.modal-overlay,
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active,
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #0f172a;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.modal-close:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-body h3 {
  font-size: 1.125rem;
  color: var(--cyan);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.modal-body li strong {
  color: white;
}

/* Lightbox */
.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background: #0f172a;
}

.lightbox-caption {
  text-align: center;
  margin-top: 1.5rem;
}

.lightbox-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.lightbox-caption h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.lightbox-caption p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--delay) * 0.1s);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-dashboard {
    order: 1;
  }
  
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pos-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .practitioner-grid {
    grid-template-columns: 1fr;
  }
  
  .practitioner-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coming-soon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .pos-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pos-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .practitioner-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .pos-features-grid {
    grid-template-columns: 1fr;
  }
  
  .practitioner-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}
