/* ==========================================================================
   GYMFORCE LITE — Modern UI Design System
   Tailored for Indian Gym Owners · High Performance · Dark & Light Themes
   ========================================================================== */

:root {
  /* Color Palette - Modern High-Tech Obsidian & Electric Cyan/Emerald */
  --bg-base: #06090e;
  --bg-surface: #0c121d;
  --bg-surface-elevated: #111a2a;
  --bg-card: rgba(16, 25, 40, 0.72);
  --bg-card-hover: rgba(22, 35, 56, 0.85);
  --bg-glass: rgba(12, 18, 29, 0.78);
  --bg-subtle: rgba(255, 255, 255, 0.04);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(15, 106, 106, 0.5);
  --border-glow: rgba(15, 106, 106, 0.2);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #0f6a6a;

  /* Brand Accents - Unified Green Color from Light Mode */
  --brand-cyan: #0f6a6a;
  --brand-green: #0f6a6a;
  --brand-teal: #0d9488;
  --brand-blue: #0f6a6a;
  --brand-emerald: #059669;
  --brand-emerald-glow: rgba(15, 106, 106, 0.25);
  --brand-gradient: linear-gradient(135deg, #0f6a6a 0%, #0d9488 100%);
  --brand-gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --brand-glow: 0 0 25px rgba(15, 106, 106, 0.25);
  
  --danger: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --success: #059669;
  --success-bg: rgba(15, 106, 106, 0.12);

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(15, 106, 106, 0.2);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-subtle);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Overrides */
[data-theme="light"] {
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfdfe;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --bg-subtle: #f1f5f9;

  --border-subtle: rgba(18, 49, 46, 0.12);
  --border-focus: rgba(15, 106, 106, 0.5);
  --border-glow: rgba(15, 106, 106, 0.15);

  --text-primary: #0d2b28;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-accent: #0f6a6a;

  --brand-cyan: #0f6a6a;
  --brand-blue: #0284c7;
  --brand-emerald: #059669;
  --brand-emerald-glow: rgba(5, 150, 105, 0.15);
  --brand-gradient: linear-gradient(135deg, #0f6a6a 0%, #0d9488 100%);
  --brand-glow: 0 0 25px rgba(15, 106, 106, 0.2);

  --shadow-sm: 0 2px 8px rgba(13, 43, 40, 0.05);
  --shadow-md: 0 8px 24px rgba(13, 43, 40, 0.07);
  --shadow-lg: 0 20px 45px rgba(13, 43, 40, 0.1);
  --shadow-glow: 0 0 35px rgba(15, 106, 106, 0.12);
  --shadow-card: 0 6px 24px rgba(13, 43, 40, 0.06), 0 0 0 1px rgba(18, 49, 46, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Radial Glows */
.ambient-glow-top {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: 100vw;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 106, 106, 0.16) 0%, rgba(13, 148, 136, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .ambient-glow-top {
  background: radial-gradient(circle, rgba(15, 106, 106, 0.10) 0%, rgba(13, 148, 136, 0.04) 45%, transparent 70%);
}

.ambient-glow-feature {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Badge / Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--brand-cyan);
  backdrop-filter: blur(10px);
}

.pill-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 10px var(--brand-cyan);
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Gradient Text */
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: #0f6a6a;
  background-image: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(15, 106, 106, 0.35);
}

[data-theme="light"] .btn-primary {
  background: #0f6a6a;
  background-image: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 106, 106, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #083f3f;
  background-image: linear-gradient(135deg, #083f3f 0%, #0b5050 100%);
  box-shadow: 0 8px 26px rgba(15, 106, 106, 0.45);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-focus);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #09172e 0%, #0d2847 50%, #09172e 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
}

[data-theme="light"] .top-announcement {
  background: linear-gradient(90deg, #e0f2fe 0%, #e2e8f0 50%, #e0f2fe 100%);
  color: #0369a1;
}

.top-announcement a {
  color: var(--brand-cyan);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.brand-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 106, 106, 0.35);
  flex-shrink: 0;
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(15, 106, 106, 0.18);
  color: var(--brand-cyan);
  border: 1px solid rgba(15, 106, 106, 0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: -4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-cyan);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Theme Segmented Switcher (Light / Dark) */
.theme-segmented-control {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.theme-segment-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-segment-btn:hover {
  color: var(--text-primary);
}

.theme-segment-btn.active {
  background: var(--bg-card);
  color: var(--brand-cyan);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

[data-theme="light"] .theme-segment-btn.active {
  background: #ffffff;
  color: #0f6a6a;
  box-shadow: 0 2px 8px rgba(13, 43, 40, 0.12);
}

.lang-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-focus);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  margin: 20px 0 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero-subhead {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.trust-badges-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge-item svg {
  color: var(--brand-emerald);
}

.app-stores-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.app-badge-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  color: #ffffff;
  transition: all var(--transition-fast);
}

[data-theme="light"] .app-badge-btn {
  background: #0f172a;
}

.app-badge-btn:hover {
  border-color: var(--brand-cyan);
  transform: translateY(-2px);
}

.app-badge-btn .badge-text {
  text-align: left;
  line-height: 1.15;
}

.app-badge-btn .badge-tag {
  display: block;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.app-badge-btn .badge-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Hero Stats Quad Grid */
.hero-stats-wrapper {
  margin-top: 60px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-stat-card {
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: background var(--transition-fast);
}

.hero-stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.hero-stat-card:hover {
  background: var(--bg-card-hover);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stat-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-stat-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Problem Section - "The Expensive Reality"
   ========================================================================== */
.section {
  padding: 96px 0;
  position: relative;
}

.section-muted {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Problem Cards Grid */
.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.1);
}

.problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--danger-bg);
  color: var(--danger);
  margin-bottom: 20px;
}

.problem-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--danger);
  line-height: 1.1;
  margin-bottom: 12px;
}

.problem-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.problem-card-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Interactive ROI & Lost Dues Calculator
   ========================================================================== */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-slider-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.calc-value-display {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-cyan);
  background: var(--bg-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-surface-elevated);
  outline: none;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 14px var(--brand-cyan);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Results Column */
.calc-results-col {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.result-metric-box {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 18px;
}

.result-metric-box:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.result-metric-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 6px;
}

.result-metric-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.result-metric-number.danger {
  color: var(--danger);
}

.result-metric-number.highlight {
  color: var(--brand-emerald);
  text-shadow: 0 0 20px var(--brand-emerald-glow);
}

.calc-roi-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--brand-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ==========================================================================
   Features Section - "Four Headaches Solved Forever"
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.feature-card-header {
  margin-bottom: 24px;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-bento-card:nth-child(2) .feature-icon-wrapper {
  color: var(--brand-emerald);
}

.feature-bento-card:nth-child(3) .feature-icon-wrapper {
  color: #f59e0b;
}

.feature-bento-card:nth-child(4) .feature-icon-wrapper {
  color: #a855f7;
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-cyan);
  margin-bottom: 8px;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature Interactive Simulated Widgets inside Cards */
.feature-widget-preview {
  margin-top: 28px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.875rem;
}

.upi-simulation-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upi-bubble {
  background: rgba(15, 106, 106, 0.12);
  border: 1px solid rgba(15, 106, 106, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.45;
}

.upi-pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 6px;
}

.upi-apps-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Early Dropout Radar Preview */
.radar-alert-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--warning-bg);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.radar-alert-text {
  color: var(--warning);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Walk-in Enquiry Pipeline Preview */
.lead-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.lead-status-row:last-child {
  border-bottom: none;
}

/* Exclusive Differentiator Banner */
.exclusives-strip {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(15, 106, 106, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
  border: 1px solid rgba(15, 106, 106, 0.25);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.exclusive-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.exclusive-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exclusive-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.exclusive-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Interactive App Simulator / Live Screens Showcase
   ========================================================================== */
.app-simulator-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-top: 48px;
}

/* Simulator Window Top Bar */
.simulator-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-url-bar {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-actions-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--brand-emerald);
  font-weight: 600;
}

/* Interactive Tabs Bar */
.simulator-tabs-bar {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.simulator-tabs-bar::-webkit-scrollbar {
  display: none;
}

.sim-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.sim-tab-btn:hover {
  color: var(--text-primary);
  background: var(--bg-subtle);
}

.sim-tab-btn.active {
  color: var(--brand-cyan);
  background: rgba(15, 106, 106, 0.15);
  border-color: rgba(15, 106, 106, 0.35);
}

/* Simulated Screen Canvas */
.simulator-screen-canvas {
  padding: 32px;
  min-height: 480px;
  background: var(--bg-base);
}

.sim-screen-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.sim-screen-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Simulator Content: Overview Dashboard */
.sim-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.sim-kpi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}

.sim-kpi-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.sim-kpi-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sim-kpi-delta {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
}

.delta-up { color: var(--brand-emerald); }
.delta-warn { color: var(--warning); }

/* Simulator Tables */
.sim-table-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sim-table-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-panel-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

.sim-bank-status {
  background: var(--bg-surface-elevated);
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.member-filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.member-search-input {
  max-width: 280px;
  padding: 8px 14px;
}

.member-filter-pills {
  display: flex;
  gap: 8px;
}

.member-preview-widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sim-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.sim-table th {
  padding: 12px 20px;
  background: var(--bg-surface-elevated);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.sim-table tr:last-child td {
  border-bottom: none;
}

.sim-table tr:hover td {
  background: var(--bg-subtle);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-active {
  background: var(--success-bg);
  color: var(--brand-emerald);
}

.status-due {
  background: var(--danger-bg);
  color: var(--danger);
}

.status-expiring {
  background: var(--warning-bg);
  color: var(--warning);
}

/* Check-in Terminal Simulator */
.qr-terminal-sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.qr-scanner-box {
  background: var(--bg-surface);
  border: 2px dashed rgba(15, 106, 106, 0.45);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.scanner-crosshair {
  width: 140px;
  height: 140px;
  border: 2px solid var(--brand-cyan);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(15, 106, 106, 0.25);
}

.scanner-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-cyan);
  box-shadow: 0 0 10px var(--brand-cyan);
  animation: scanLaser 2s infinite ease-in-out;
}

@keyframes scanLaser {
  0%, 100% { top: 0%; opacity: 0.3; }
  50% { top: 98%; opacity: 1; }
}

.live-feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.feed-member-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #06090e;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.step-number-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(15, 106, 106, 0.35);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Testimonial & Social Proof Quote Section
   ========================================================================== */
.social-proof-banner {
  background: linear-gradient(135deg, #091c1b 0%, #0d2e2b 50%, #061716 100%);
  border: 1px solid rgba(15, 106, 106, 0.3);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .social-proof-banner {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0f766e 100%);
  color: #ffffff;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 36px;
}

.author-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #0d2e3f;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #ffffff;
}

.author-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.stats-callout-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.stats-callout-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.stats-callout-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Pricing Section - Flat, No Caps, No Per-Member Fees
   ========================================================================== */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
}

.toggle-opt-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-opt-btn.active {
  background: var(--brand-cyan);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 106, 106, 0.35);
}

[data-theme="light"] .toggle-opt-btn.active {
  color: #ffffff;
}

.save-pill-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--brand-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 580px;
  margin: 0 auto;
}

.pricing-main-card {
  background: var(--bg-card);
  border: 2px solid var(--brand-cyan);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 0 50px rgba(15, 106, 106, 0.2), var(--shadow-lg);
}

.pricing-hero-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(15, 106, 106, 0.35);
}

[data-theme="light"] .pricing-hero-badge {
  color: #ffffff;
}

.pricing-card-header {
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 28px;
  margin-bottom: 32px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.price-display-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.currency-symbol {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-main-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

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

.price-equivalent-note {
  font-size: 0.875rem;
  color: var(--brand-cyan);
  font-weight: 600;
}

/* Feature Checklists */
.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.pricing-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-cap-text {
  font-weight: 700;
  color: var(--brand-cyan);
}

/* Comparison Table vs Competitors */
.comparison-section {
  margin-top: 80px;
}

.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}

.comparison-table th, .comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: var(--bg-surface-elevated);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.comparison-table th.col-gymforce {
  background: rgba(15, 106, 106, 0.15);
  color: var(--brand-cyan);
}

.comparison-table td.col-gymforce {
  background: rgba(15, 106, 106, 0.05);
  font-weight: 600;
}

.check-green {
  color: var(--brand-emerald);
  font-weight: 700;
}

.cross-red {
  color: var(--danger);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  transition: all var(--transition-fast);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-cyan);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--brand-cyan);
  color: #06090e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
}

.faq-answer p {
  padding-top: 14px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==========================================================================
   Final CTA Banner - "Put the Register Down"
   ========================================================================== */
.final-cta-section {
  padding: 80px 0 100px;
}

.final-cta-card {
  background: linear-gradient(135deg, #061e1c 0%, #0d2e2b 50%, #061716 100%);
  border: 1px solid rgba(15, 106, 106, 0.35);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(15, 106, 106, 0.2);
}

[data-theme="light"] .final-cta-card {
  background: #083f3f;
  border: none;
}

.cta-rupee-emblem {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 106, 106, 0.2);
  border: 1px solid rgba(15, 106, 106, 0.35);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.final-cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.final-cta-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-col p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin-top: 14px;
  line-height: 1.55;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--brand-cyan);
  font-weight: 600;
}

/* ==========================================================================
   Floating Widgets & Mobile Action Bar
   ========================================================================== */
.floating-whatsapp-pill {
  position: fixed;
  bottom: 30px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 22px 12px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
}

.floating-whatsapp-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 18, 29, 0.95);
  backdrop-filter: blur(14px);
  padding: 12px 16px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Interactive Modals
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}

.modal-backdrop.open .modal-window {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(15, 106, 106, 0.2);
}

/* Toast Notification Alert */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--brand-emerald);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-50px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Mobile Navigation Drawer & Overlay
   ========================================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.45);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: var(--bg-card-hover);
  color: var(--brand-cyan);
}

.mobile-drawer-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-drawer-link:hover {
  background: var(--bg-surface-elevated);
  color: var(--brand-cyan);
}

.mobile-drawer-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.mobile-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat-card:nth-child(2)::after {
    display: none;
  }
  .problem-cards-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .exclusives-strip {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .qr-terminal-sim-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Container & Spacing */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  /* Header & Navigation */
  .navbar-inner {
    height: 60px;
  }

  .nav-brand {
    font-size: 1.125rem;
    gap: 8px;
  }

  .brand-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .brand-badge {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  #nav-login-btn,
  #nav-start-btn {
    display: none;
  }

  .theme-segmented-control {
    padding: 2px;
  }

  .theme-segment-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  .lang-switch-btn {
    height: 32px;
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    cursor: pointer;
    flex-shrink: 0;
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 0 28px;
  }

  .hero-headline {
    font-size: clamp(2rem, 7.8vw, 2.75rem);
    line-height: 1.12;
    margin: 14px 0 18px;
  }

  .hero-headline br {
    display: none;
  }

  .hero-subhead {
    font-size: 0.9375rem;
    line-height: 1.58;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 14px 20px;
    min-height: 48px;
  }

  .trust-badges-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    font-size: 0.8125rem;
    max-width: 380px;
    margin: 0 auto 24px;
    text-align: left;
  }

  .app-stores-strip {
    width: 100%;
    gap: 10px;
  }

  .app-badge-btn {
    flex: 1 1 130px;
    justify-content: center;
    padding: 8px 12px;
  }

  /* Hero 4-Stat Metric Grid - Clean 2x2 on mobile */
  .hero-stats-wrapper {
    margin-top: 36px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-md);
  }

  .hero-stat-card {
    padding: 18px 12px;
  }

  .hero-stat-card:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: var(--border-subtle);
  }

  .hero-stat-card:nth-child(even)::after {
    display: none;
  }

  .hero-stat-card:nth-child(1),
  .hero-stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-stat-value {
    font-size: 1.625rem;
    margin-bottom: 4px;
  }

  .hero-stat-title {
    font-size: 0.8125rem;
    margin-bottom: 2px;
  }

  .hero-stat-desc {
    font-size: 0.6875rem;
  }

  /* Problem Cards */
  .problem-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  .problem-stat {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .problem-card-title {
    font-size: 1.0625rem;
  }

  /* Calculator */
  .calculator-card {
    padding: 22px 16px;
    margin-top: 28px;
    border-radius: var(--radius-md);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .calc-inputs-col {
    gap: 22px;
  }

  .calc-label-title {
    font-size: 0.875rem;
  }

  .calc-value-display {
    font-size: 1rem;
    padding: 3px 8px;
  }

  .calc-results-col {
    padding: 20px 16px;
    gap: 18px;
  }

  .result-metric-number {
    font-size: 1.85rem;
  }

  /* Feature Bento Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-bento-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 0.875rem;
  }

  .feature-widget-preview {
    margin-top: 20px;
    padding: 14px;
  }

  .exclusives-strip {
    grid-template-columns: 1fr;
    padding: 22px 16px;
    gap: 18px;
    margin-top: 24px;
    border-radius: var(--radius-md);
  }

  /* App Simulator */
  .app-simulator-container {
    margin-top: 28px;
    border-radius: var(--radius-md);
  }

  .simulator-window-bar {
    padding: 10px 14px;
  }

  .window-url-bar {
    max-width: 170px;
    font-size: 0.6875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .window-actions-status span:last-child {
    display: none;
  }

  .simulator-tabs-bar {
    padding: 8px 12px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .sim-tab-btn {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .simulator-screen-canvas {
    padding: 16px 12px;
  }

  .sim-kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .sim-kpi-card {
    padding: 12px 10px;
  }

  .sim-kpi-label {
    font-size: 0.6875rem;
  }

  .sim-kpi-value {
    font-size: 1.25rem;
  }

  .sim-table-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sim-table-header-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px;
  }

  .sim-table-header-bar button {
    width: 100%;
  }

  .sim-panel-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .sim-panel-toolbar button {
    width: 100%;
  }

  .sim-bank-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .member-filter-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .member-search-input {
    max-width: 100% !important;
    width: 100%;
  }

  .member-filter-pills {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .member-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .member-filter-pills .member-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .range-slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }

  /* Prevent iOS Auto-Zoom on form inputs */
  .form-input,
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Bottom sheet modal on mobile */
  .modal-backdrop {
    padding: 12px;
    align-items: flex-end;
  }

  .modal-window {
    padding: 28px 18px 24px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 88vh;
    overflow-y: auto;
    width: 100%;
    transform: translateY(100%);
  }

  .modal-backdrop.open .modal-window {
    transform: translateY(0);
  }

  /* Mobile Nav Drawer safe-area */
  .mobile-nav-drawer {
    width: 310px;
    max-width: 86vw;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* Toast Notification on Mobile */
  .toast-notification {
    top: 16px;
    left: 16px;
    right: 16px;
    transform: translateY(-80px);
    justify-content: center;
    text-align: center;
    font-size: 0.875rem;
  }

  .toast-notification.show {
    transform: translateY(0);
  }

  .sim-table {
    min-width: 500px;
  }

  .qr-terminal-sim-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .qr-scanner-box {
    padding: 24px 14px;
  }

  .scanner-crosshair {
    width: 100px;
    height: 100px;
  }

  /* Steps Section */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .step-number-bubble {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 1.125rem;
  }

  /* Social Proof Banner */
  .social-proof-banner {
    padding: 36px 18px;
    border-radius: var(--radius-md);
  }

  .quote-text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .stats-callout-row {
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }

  /* Pricing Section */
  .pricing-toggle-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-main-card {
    padding: 36px 18px 24px;
    border-radius: var(--radius-md);
  }

  .price-main-amount {
    font-size: 3.25rem;
  }

  .comparison-table-wrapper {
    border-radius: var(--radius-md);
  }

  .comparison-table {
    min-width: 560px;
  }

  /* Final CTA Section */
  .final-cta-section {
    padding: 56px 0 72px;
  }

  .final-cta-card {
    padding: 40px 18px;
    border-radius: var(--radius-md);
  }

  .final-cta-title {
    font-size: 1.85rem;
  }

  .final-cta-sub {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  /* Footer */
  .footer {
    padding: 44px 0 24px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Mobile Sticky Bottom Conversion Bar */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-action-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  }

  .mobile-sticky-action-bar .btn-primary {
    flex: 1;
    min-height: 44px;
    justify-content: center;
    font-size: 0.9375rem;
    padding: 10px 14px;
  }

  .mobile-sticky-action-bar .btn-whatsapp {
    min-height: 44px;
    justify-content: center;
    font-size: 0.9375rem;
    padding: 10px 14px;
  }

  [data-theme="light"] .mobile-sticky-action-bar {
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(18, 49, 46, 0.12);
    box-shadow: 0 -4px 20px rgba(13, 43, 40, 0.08);
  }

  .floating-whatsapp-pill {
    display: none !important;
  }
}

/* Small Mobile screens (< 480px) */
@media (max-width: 480px) {
  .theme-segment-btn span {
    display: none;
  }

  .theme-segment-btn {
    padding: 6px 8px;
  }

  .nav-brand span:not(.gradient-text) {
    font-size: 1.05rem;
  }

  .pricing-toggle-btn {
    width: 100%;
    max-width: 340px;
  }

  .toggle-opt-btn {
    flex: 1;
    padding: 8px 6px;
    font-size: 0.75rem;
  }

  .save-pill-tag {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }

  .member-preview-widget {
    flex-direction: column;
    align-items: flex-start;
  }

  .feed-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .radar-alert-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .radar-alert-box button {
    width: 100%;
  }

  .price-main-amount {
    font-size: 2.85rem;
  }
}

/* Extra small devices (< 380px) */
@media (max-width: 380px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat-card:nth-child(odd)::after {
    display: none;
  }
  .hero-stat-card {
    border-bottom: 1px solid var(--border-subtle);
  }
  .hero-stat-card:last-child {
    border-bottom: none;
  }
  .sim-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Comprehensive Light Mode Theme Enhancements
   Clean GymCRM aesthetic elevated with modern SaaS design
   ========================================================================== */
[data-theme="light"] body {
  background-color: #f8fafc;
  color: #0d2b28;
}

[data-theme="light"] .top-announcement {
  background: #e3f0ee;
  border-bottom: 1px solid rgba(18, 49, 46, 0.12);
  color: #0d2b28;
}

[data-theme="light"] .top-announcement a {
  color: #0f6a6a;
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 49, 46, 0.12);
}

[data-theme="light"] .nav-brand {
  color: #0d2b28;
}

[data-theme="light"] .brand-icon-box {
  background: linear-gradient(135deg, #0f6a6a 0%, #0d9488 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 106, 106, 0.3);
}

[data-theme="light"] .brand-badge {
  background: #e3f0ee;
  color: #0f6a6a;
  border-color: rgba(15, 106, 106, 0.25);
}

[data-theme="light"] .nav-link {
  color: #475569;
}

[data-theme="light"] .nav-link:hover {
  color: #0f6a6a;
}

[data-theme="light"] .btn-primary {
  background: #0f6a6a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 106, 106, 0.25);
}

[data-theme="light"] .btn-primary:hover {
  background: #083f3f;
  box-shadow: 0 8px 24px rgba(15, 106, 106, 0.35);
}

[data-theme="light"] .btn-secondary {
  background: #ffffff;
  color: #0d2b28;
  border: 1.5px solid rgba(18, 49, 46, 0.15);
}

[data-theme="light"] .btn-secondary:hover {
  background: #f2f6f4;
  border-color: #0f6a6a;
}

[data-theme="light"] .pill-badge {
  background: #e3f0ee;
  border-color: rgba(15, 106, 106, 0.25);
  color: #0f6a6a;
}

[data-theme="light"] .pill-badge .pulse-dot {
  background: #0f6a6a;
  box-shadow: 0 0 8px #0f6a6a;
}

[data-theme="light"] .hero-headline {
  color: #0d2b28;
}

[data-theme="light"] .hero-subhead {
  color: #475569;
}

[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, #0f6a6a 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .app-badge-btn {
  background: #0d2b28;
  color: #ffffff;
  border-color: transparent;
}

[data-theme="light"] .hero-stats-grid {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.12);
  box-shadow: 0 8px 30px rgba(13, 43, 40, 0.06);
}

[data-theme="light"] .hero-stat-card:hover {
  background: #f8fafc;
}

[data-theme="light"] .hero-stat-value {
  color: #0d2b28;
}

[data-theme="light"] .hero-stat-title {
  color: #0d2b28;
}

[data-theme="light"] .section-muted {
  background: #f2f6f4;
  border-color: rgba(18, 49, 46, 0.12);
}

[data-theme="light"] .problem-card {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.1);
  box-shadow: 0 4px 16px rgba(13, 43, 40, 0.04);
}

[data-theme="light"] .problem-badge {
  background: #fee2e2;
  color: #dc2626;
}

[data-theme="light"] .problem-stat {
  color: #0f6a6a;
}

[data-theme="light"] .calculator-card {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.12);
  box-shadow: 0 10px 40px rgba(13, 43, 40, 0.08);
}

[data-theme="light"] .calc-value-display {
  background: #e3f0ee;
  color: #0f6a6a;
  border-color: rgba(15, 106, 106, 0.2);
}

[data-theme="light"] .calc-results-col {
  background: #f2f6f4;
  border: 1px solid rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .feature-bento-card {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.1);
  box-shadow: 0 4px 16px rgba(13, 43, 40, 0.04);
}

[data-theme="light"] .feature-widget-preview {
  background: #f2f6f4;
  border-color: rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .upi-bubble {
  background: #e3f0ee;
  border-color: rgba(15, 106, 106, 0.2);
  color: #0d2b28;
}

[data-theme="light"] .upi-pay-pill {
  background: #0f6a6a;
  color: #ffffff;
}

[data-theme="light"] .exclusives-strip {
  background: #e3f0ee;
  border-color: rgba(15, 106, 106, 0.2);
}

[data-theme="light"] .exclusive-icon {
  background: #ffffff;
  border-color: rgba(18, 49, 46, 0.1);
  color: #0f6a6a;
}

[data-theme="light"] .app-simulator-container {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.12);
  box-shadow: 0 12px 40px rgba(13, 43, 40, 0.08);
}

[data-theme="light"] .simulator-window-bar {
  background: #e3f0ee;
  border-bottom: 1px solid rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .window-url-bar {
  background: #ffffff;
  border-color: rgba(18, 49, 46, 0.15);
  color: #475569;
}

[data-theme="light"] .simulator-tabs-bar {
  background: #f2f6f4;
  border-bottom: 1px solid rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .sim-tab-btn.active {
  background: #ffffff;
  color: #0f6a6a;
  border-color: rgba(15, 106, 106, 0.3);
  box-shadow: 0 2px 8px rgba(13, 43, 40, 0.06);
}

[data-theme="light"] .simulator-screen-canvas {
  background: #f8fafc;
}

[data-theme="light"] .sim-kpi-card {
  background: #ffffff;
  border-color: rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .sim-table-card {
  background: #ffffff;
  border-color: rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .sim-table th {
  background: #f2f6f4;
  color: #0d2b28;
}

[data-theme="light"] .feed-item {
  background: #ffffff;
  border-color: rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .qr-scanner-box {
  background: #ffffff;
  border: 2px dashed rgba(15, 106, 106, 0.3);
}

[data-theme="light"] .step-card {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .step-number-bubble {
  background: #e3f0ee;
  color: #0f6a6a;
}

[data-theme="light"] .pricing-main-card {
  background: #ffffff;
  border: 2px solid #0f6a6a;
  box-shadow: 0 20px 50px rgba(13, 43, 40, 0.1);
}

[data-theme="light"] .pricing-hero-badge {
  background: #0f6a6a;
  color: #ffffff;
}

[data-theme="light"] .pricing-toggle-btn {
  background: #e3f0ee;
  border-color: rgba(15, 106, 106, 0.2);
}

[data-theme="light"] .toggle-opt-btn.active {
  background: #0f6a6a;
  color: #ffffff;
}

[data-theme="light"] .comparison-table-wrapper {
  background: #ffffff;
  border-color: rgba(18, 49, 46, 0.12);
}

[data-theme="light"] .comparison-table th {
  background: #f2f6f4;
  color: #0d2b28;
}

[data-theme="light"] .comparison-table th.col-gymforce {
  background: #e3f0ee;
  color: #0f6a6a;
}

[data-theme="light"] .comparison-table td.col-gymforce {
  background: rgba(15, 106, 106, 0.04);
}

[data-theme="light"] .faq-item {
  border-color: rgba(18, 49, 46, 0.12);
}

[data-theme="light"] .faq-question-btn {
  color: #0d2b28;
}

[data-theme="light"] .faq-chevron {
  background: #e3f0ee;
  color: #0f6a6a;
}

[data-theme="light"] .faq-item.active .faq-chevron {
  background: #0f6a6a;
  color: #ffffff;
}

[data-theme="light"] .final-cta-card {
  background: #083f3f;
  border: none;
}

[data-theme="light"] .cta-rupee-emblem {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

[data-theme="light"] .footer {
  background: #ffffff;
  border-top: 1px solid rgba(18, 49, 46, 0.1);
}

[data-theme="light"] .modal-window {
  background: #ffffff;
  border: 1px solid rgba(18, 49, 46, 0.12);
  box-shadow: 0 20px 50px rgba(13, 43, 40, 0.15);
}

[data-theme="light"] .form-input {
  background: #f8fafc;
  border: 1px solid rgba(18, 49, 46, 0.15);
  color: #0d2b28;
}

