@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;700&display=swap');

:root {
  /* Paleta GlowSuite Premium - MODO CLARO (Predeterminado) */
  --glow-primary: #7C3AED;
  --glow-accent: #9B5CFC;
  --deep-bg: #F8FAFC;
  --obsidian: #FFFFFF;
  --card-bg: rgba(15, 23, 42, 0.03);
  --card-border: rgba(15, 23, 42, 0.08);
  --text-color: #0F172A;
  --text-muted: #64748B;
  --white: #FFFFFF; /* Siempre blanco para contrastes oscuros */
  
  --input-bg: rgba(15, 23, 42, 0.03);
  --input-border: rgba(15, 23, 42, 0.08);
  --navbar-scrolled-bg: rgba(248, 250, 252, 0.9);
  
  --faq-icon-bg: rgba(124, 58, 237, 0.08);
  --faq-bg: rgba(15, 23, 42, 0.015);
  
  --pricing-card-bg: linear-gradient(180deg, rgba(124, 58, 237, 0.03) 0%, rgba(124, 58, 237, 0.005) 100%);
  --pricing-card-border: rgba(124, 58, 237, 0.25);
  
  --card-hover-bg: rgba(15, 23, 42, 0.05);
  --blob-opacity: 0.15;
  
  /* Fonts */
  --font-titles: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  --nav-height: 90px;
  --nav-height-scrolled: 72px;
  --logo-height: 68px;
  --logo-height-scrolled: 56px;
  
  --nav-bg: rgba(255, 255, 255, 0.8);
  --nav-border: rgba(15, 23, 42, 0.08);
  --nav-hover-bg: rgba(124, 58, 237, 0.06);
  --nav-active-bg: #FFFFFF;
  --nav-shadow: 0 10px 40px rgba(124, 58, 237, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  --toggle-track-bg: #F1F5F9;
  --toggle-track-border: #E2E8F0;
  
  --toggle-container-bg: #f1f5f9;
  --theme-sun-color: #f59e0b;
  --theme-moon-color: #94a3b8;
  
  --slider-arrow-bg: rgba(255, 255, 255, 0.85);
  --slider-arrow-border: rgba(124, 58, 237, 0.15);
  --slider-arrow-color: var(--glow-primary);
  --slider-arrow-hover-bg: var(--glow-primary);
  --slider-arrow-hover-color: var(--white);
}

html[data-theme="dark"] {
  /* Paleta GlowSuite Premium - MODO OSCURO */
  --glow-primary: #9B5CFC;
  --glow-accent: #B388FF;
  --deep-bg: #0A0A0E;
  --obsidian: #12121A;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.05);
  --text-color: #FFFFFF;
  --text-muted: #A1A1AA;
  
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.1);
  --navbar-scrolled-bg: rgba(10, 10, 14, 0.85);
  
  --faq-icon-bg: rgba(155, 92, 252, 0.1);
  --faq-bg: rgba(255, 255, 255, 0.02);
  
  --pricing-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --pricing-card-border: rgba(155, 92, 252, 0.3);
  
  --card-hover-bg: rgba(255, 255, 255, 0.05);
  --blob-opacity: 0.4;
  
  --nav-bg: rgba(18, 18, 26, 0.8);
  --nav-border: rgba(255, 255, 255, 0.08);
  --nav-hover-bg: rgba(155, 92, 252, 0.1);
  --nav-active-bg: rgba(255, 255, 255, 0.05);
  --nav-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(155, 92, 252, 0.05);
  --toggle-track-bg: #1E1E24;
  --toggle-track-border: rgba(255, 255, 255, 0.08);
  
  --toggle-container-bg: #12121a;
  --theme-sun-color: #4b5563;
  --theme-moon-color: #cbd5e1;
  
  --slider-arrow-bg: rgba(18, 18, 26, 0.8);
  --slider-arrow-border: rgba(155, 92, 252, 0.3);
  --slider-arrow-color: var(--glow-primary);
  --slider-arrow-hover-bg: var(--glow-primary);
  --slider-arrow-hover-color: #FFFFFF;
}

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

@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1400px) {
  html {
    font-size: 14.5px;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13.5px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-bg); 
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}



#main-content {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
}

h1, h2, h3, h4, .outfit {
  font-family: var(--font-titles);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--glow-primary), #7c3aed);
  color: var(--white);
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(155, 92, 252, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(155, 92, 252, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Custom Cursor Styles */
#cursor-dot, #cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--glow-primary);
}

#cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--glow-primary);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-hover {
  background-color: rgba(155, 92, 252, 0.15);
  width: 60px !important;
  height: 60px !important;
  border-color: transparent !important;
}

.gs-reveal {
  opacity: 0;
}

/* Horizontal Scroll Styles */
.horizontal-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--deep-bg);
  position: relative;
  padding: 120px 0;
}

.horizontal-container {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 2rem;
  padding: 0 10vw;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.horizontal-card {
  flex-shrink: 0;
  width: 80vw;
  max-width: 1000px;
  height: auto;
  min-height: 400px;
  margin-right: 2vw;
  background: var(--obsidian);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.3s ease;
}

.horizontal-card:hover {
  border-color: rgba(155, 92, 252, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-content {
  flex: 1;
  padding: 3rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-family: var(--font-titles);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.card-title {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -1px;
}

.card-subtitle {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--glow-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.card-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 95%;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card-line {
  width: 50px;
  height: 3px;
  background: var(--glow-primary);
}

.card-image {
  flex: 1.8;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem 0.5rem 0;
  position: relative;
}

.horizontal-card img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.8s ease, box-shadow 0.4s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(155, 92, 252, 0.1);
}

.horizontal-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(155, 92, 252, 0.3);
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5vw;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 100;
}

.slider-arrow {
  width: 60px;
  height: 60px;
  background: var(--slider-arrow-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--slider-arrow-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slider-arrow-color);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
  background: var(--slider-arrow-hover-bg);
  color: var(--slider-arrow-hover-color);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(155, 92, 252, 0.3);
}

.text-center { text-align: center; }
.text-white { color: var(--text-color); }
.text-primary { color: var(--glow-primary); }
.text-muted { color: var(--text-muted); }

/* Navbar - Full Width like the previous style */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: transparent !important;
  display: flex;
  align-items: center;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid transparent;
}

/* Scrolled state */
.navbar.scrolled {
  height: var(--nav-height-scrolled);
  background-color: var(--navbar-scrolled-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: var(--logo-height);
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: var(--logo-height-scrolled);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 32px;
  background-color: var(--toggle-track-border);
  margin-left: 0.4rem;
}

.nav-links li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  margin: 0 0.4rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  text-align: center;
  min-width: 90px;
  border: 1px solid transparent;
}

.nav-links li a i {
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.nav-links li a:hover i {
  transform: translateY(-2px);
}

.nav-links li a:hover {
  color: var(--glow-primary);
  background-color: var(--nav-hover-bg);
  border-color: var(--nav-border);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.04);
}

.nav-links li a.active {
  color: var(--glow-primary);
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background-color: var(--glow-primary);
  border-radius: 2px;
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Capsule Divider */
.nav-divider {
  width: 1px;
  height: 32px;
  background-color: var(--toggle-track-border);
  margin: 0 0.5rem;
}

/* Gradient Contract Button matching the new mockup */
.nav-btn-contract {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem 0.5rem 1.5rem;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: var(--white) !important;
  font-family: var(--font-titles);
  font-weight: 400;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  white-space: nowrap;
  gap: 12px;
}

.btn-circle-icon {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nav-btn-contract:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}

.nav-btn-contract:hover .btn-circle-icon {
  transform: translateX(2px);
}

/* Custom Capsule Theme Switch matching the new mockup */
.nav-theme-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--toggle-container-bg);
  border: 1px solid var(--toggle-track-border);
  padding: 6px 12px;
  border-radius: 50px;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, transform 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.nav-theme-container:hover {
  transform: scale(1.05);
}

.theme-switch-capsule {
  position: relative;
  width: 48px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
}

.switch-track {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 100px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.switch-thumb {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #ffdb3b, #f59e0b);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 5px rgba(245, 158, 11, 0.3), 0 0 8px rgba(245, 158, 11, 0.5);
}

/* Checked state */
.theme-checkbox:checked + .switch-track {
  background: linear-gradient(135deg, #1e1b4b, #311042);
}

.theme-checkbox:checked + .switch-track .switch-thumb {
  transform: translateX(24px);
  background: linear-gradient(135deg, #c084fc, #7c3aed);
  box-shadow: 0 2px 5px rgba(124, 58, 237, 0.4), 0 0 8px rgba(155, 92, 252, 0.6);
}

.theme-icon-sun, .theme-icon-moon {
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html:not([data-theme="dark"]) .theme-icon-sun {
  transform: scale(1.2);
  color: #f59e0b;
  filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.5));
}

html:not([data-theme="dark"]) .theme-icon-moon {
  color: #94a3b8;
  opacity: 0.6;
}

html[data-theme="dark"] .theme-icon-sun {
  color: #4b5563;
  opacity: 0.5;
}

html[data-theme="dark"] .theme-icon-moon {
  transform: scale(1.2) rotate(-15deg);
  color: #a855f7;
  filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.6));
}

/* Sections */
section {
  padding: var(--spacing-xl) 0;
}

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

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  font-size: clamp(2rem, 3.8vw, 3.0rem);
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-header p,
.section-header + div p,
.section-header + .gs-reveal p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-color);
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
}

.hero-subtitle {
  color: var(--glow-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(155, 92, 252, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(155, 92, 252, 0.2);
  font-size: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- New Mockup Hero Design System --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--glow-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  margin-bottom: 1.5rem;
}

.text-primary-gradient {
  background: linear-gradient(135deg, var(--glow-primary), var(--glow-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-btns-new {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: nowrap;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.8rem;
  background: linear-gradient(135deg, #7C3AED, #9B5CFC);
  color: #ffffff !important;
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.45);
}

.btn-secondary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.3rem;
  background: var(--obsidian);
  color: var(--text-color) !important;
  border: 1px solid var(--card-border);
  font-family: var(--font-titles);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.btn-secondary-pill:hover {
  background: rgba(124, 58, 237, 0.05);
  border-color: var(--glow-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--obsidian);
  margin-left: -14px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.avatar-img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Right Section Mockup Layout */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 620px; /* Increased from 550px */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}

.main-hero-img {
  width: 88%; /* Increased from 72% */
  height: auto;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 50px rgba(155, 92, 252, 0.25));
  animation: floatHeroImage 6s ease-in-out infinite;
}

@keyframes floatHeroImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.hero-platform {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) rotateX(60deg);
  width: 70%;
  height: 120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, rgba(124, 58, 237, 0) 70%);
  border-radius: 50%;
  z-index: 2;
  filter: blur(12px);
}

.hero-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--card-border) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 1;
}

.dots-left {
  bottom: 15%;
  left: -2%;
}

.dots-right {
  top: 10%;
  right: -2%;
}

/* Floating Widgets styling */
.hero-widget {
  position: absolute;
  background: var(--obsidian);
  border: 1px solid var(--card-border);
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
}

.hero-widget:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.18);
  z-index: 12;
}

.widget-ventas {
  top: 18%;
  right: -5%; /* Adjusted from -10% */
  animation: floatW1 5.5s ease-in-out infinite;
}

.widget-productos {
  bottom: 38%;
  right: -7%; /* Adjusted from -12% */
  animation: floatW2 7.5s ease-in-out infinite;
}

.widget-pedidos {
  bottom: 12%;
  left: -5%; /* Adjusted from -10% */
  animation: floatW3 6.5s ease-in-out infinite;
}

@keyframes floatW1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

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

@keyframes floatW3 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0px); }
}

.widget-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.bg-success-light { background: rgba(34, 197, 94, 0.08); }
.bg-primary-light { background: rgba(124, 58, 237, 0.08); }
.bg-warning-light { background: rgba(245, 158, 11, 0.08); }

.widget-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.widget-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.widget-value {
  font-family: var(--font-titles);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.2;
}

.widget-trend {
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}

.text-success { color: #22c55e; }

.widget-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Grid Layouts */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  transition: all 0.4s ease, background-color 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--glow-primary);
  background: var(--card-hover-bg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--faq-icon-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(155, 92, 252, 0.2);
}
.icon-wrapper i { font-size: 2rem; }

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Pricing Card */
.pricing-card {
  background: var(--pricing-card-bg);
  border: 1px solid var(--pricing-card-border);
  border-radius: 32px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.pricing-card h3 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 0.5rem;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--glow-primary), #7c3aed);
}
.pricing-list {
  text-align: left;
  margin: 2rem 0;
}
.pricing-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}
.pricing-list li i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--card-border);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: var(--font-titles);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--faq-icon-bg);
  border: 1px solid var(--glow-primary);
  color: var(--glow-primary);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
.faq-a {
  padding-top: 1rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.7;
}

/* Inputs */
.form-control {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 1.2rem;
  color: var(--text-color);
  border-radius: 12px;
  font-family: inherit;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--glow-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
  background-color: var(--obsidian);
  color: var(--text-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--card-border);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

footer .footer-title {
  color: var(--text-color) !important;
  transition: color 0.3s ease;
}

footer .text-muted,
footer a.text-muted {
  color: var(--text-muted) !important;
  transition: color 0.3s ease;
}

footer a.text-muted:hover {
  color: var(--glow-primary) !important;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.9rem;
  color: var(--text-muted) !important;
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

/* Video Pills */
.video-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 0.7rem 2.5rem 0.7rem 0.8rem;
  border-radius: 50px;
  color: var(--text-color);
  font-family: var(--font-titles);
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s ease, background-color 0.3s ease;
  height: auto;
}

.heartbeat {
  animation: heartbeat-anim 2.5s infinite;
}

@keyframes heartbeat-anim {
  0% { transform: scale(1); }
  10% { transform: scale(1.05); }
  20% { transform: scale(1); }
  30% { transform: scale(1.05); }
  40% { transform: scale(1); }
  100% { transform: scale(1); }
}

.video-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.video-pill i {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
}

/* Floating Blobs */
.floating-bg {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -1; overflow: hidden; opacity: var(--blob-opacity);
  transition: opacity 0.3s ease;
}

.blob {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: float 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15vw, 20vh) scale(1.2); }
  66% { transform: translate(-10vw, 40vh) scale(0.8); }
  100% { transform: translate(10vw, 10vh) scale(1.1); }
}

.blob-1 { top: -10%; left: 0%; animation-delay: 0s; }
.blob-2 { top: 50%; right: -10%; animation-delay: -5s; background: radial-gradient(circle, #7c3aed 0%, transparent 70%); }
.blob-3 { bottom: -20%; left: 20%; animation-delay: -10s; background: radial-gradient(circle, var(--glow-accent) 0%, transparent 70%); }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 30px; height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100vh;
  background: var(--nav-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
  padding: 80px 0 40px 0;
}

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

.mobile-nav-links { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
}

.mobile-nav-links li {
  list-style: none;
}

.mobile-nav-links a { 
  font-family: var(--font-titles); 
  font-size: 1.1rem; 
  font-weight: 400; 
  color: var(--text-color) !important; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.2rem 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
  height: 100%;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: var(--nav-hover-bg);
  border-color: var(--glow-primary);
  transform: scale(0.96);
}

.mobile-nav-links a i {
  font-size: 1.8rem;
}

.mobile-nav-links li.full-width {
  grid-column: span 2;
}

.mobile-nav-links li.full-width a {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: var(--white) !important;
  border: none;
  flex-direction: row;
  padding: 1.1rem;
  gap: 12px;
}

.mobile-nav-links li.full-width a i {
  color: var(--white) !important;
  font-size: 1.5rem;
}

.mobile-nav-links li.theme-li {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 1.5rem;
  padding: 0.5rem;
}

/* Mobile header socials and mobile hero image - hidden on desktop */
.mobile-header-socials,
.hero-image-mobile {
  display: none !important;
}

@media (max-width: 1400px) {
  :root {
    --nav-height: 84px;
    --nav-height-scrolled: 68px;
    --logo-height: 62px;
    --logo-height-scrolled: 48px;
  }
  
  .nav-links li a {
    font-size: 0.7rem;
    padding: 0.5rem 0.6rem;
    margin: 0 0.2rem;
    min-width: 75px;
    gap: 4px;
  }
  
  .nav-links li a i {
    font-size: 1.3rem;
  }
  
  .nav-links li:not(:last-child)::after {
    height: 24px;
    margin-left: 0.2rem;
  }
  
  .nav-action {
    gap: 0.6rem;
  }
  
  .nav-divider {
    margin: 0 0.2rem;
    height: 24px;
  }
  
  .nav-btn-contract {
    padding: 0.4rem 0.5rem 0.4rem 1.1rem;
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .btn-circle-icon {
    width: 24px;
    height: 24px;
  }
  
  /* Hide desktop social icons when space is tight */
  .nav-action > div:last-child {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  /* Navbar & Navigation Mobile Transition */
  .navbar .container { 
    justify-content: space-between; 
    gap: 1rem; 
  }
  
  .nav-links, .nav-action { 
    display: none !important; 
  }
  
  .mobile-header-socials {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
    margin-right: 1.2rem;
  }
  
  .hamburger { 
    display: flex !important; 
  }
  
  .logo-img {
    height: 64px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  
  .navbar.scrolled .logo-img {
    height: 56px !important;
    width: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 1024px) {
  /* Section Header Spacing and Indents */
  .section-header h2 {
    line-height: 1.15 !important;
    padding: 0 16px !important;
  }
  
  .section-header p {
    line-height: 1.4 !important;
    padding: 0 20px !important;
    margin-top: 0.8rem !important;
  }

  /* General Grid Layouts */
  .grid-2, .grid-3, .grid-4 { 
    grid-template-columns: 1fr !important; 
    gap: 2rem !important;
  }
  
  /* Section Padding */
  .section-padding { 
    padding: 60px 0; 
  }
  
  /* Disable desktop-only effects */
  #cursor-outline, #cursor-dot, .floating-bg { 
    display: none !important; 
  }
  
  .hide-mobile { 
    display: none !important; 
  }
  
  /* Hero Section Center-Aligned */
  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: auto !important;
    text-align: center;
  }
  
  .hero-content {
    text-align: center !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-btns-new {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1.5rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
  }

  .avatar-group {
    justify-content: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 1.5rem auto !important;
  }
  
  .hero h1 { 
    font-size: clamp(2.2rem, 8vw, 3rem) !important; 
    line-height: 1.15 !important;
    text-align: center;
    padding: 0 16px !important;
  }
  
  .hero-content p {
    margin: 1.2rem auto !important;
    text-align: center;
    max-width: 500px;
    padding: 0 24px !important;
    line-height: 1.4 !important;
  }
  
  .hero-btns { 
    flex-direction: column !important; 
    width: 100% !important; 
    align-items: center !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
  }
  
  .hero-btns .video-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  /* About App image on mobile */
  .grid-2 .gs-reveal img[src*="about-app.png"] {
    max-width: 85% !important;
  }
  
  /* Feature Cards Center-Aligned */
  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem !important;
  }
  
  .icon-wrapper {
    margin: 0 auto 1.5rem auto !important;
  }
  
  .feature-card h3 {
    text-align: center !important;
    line-height: 1.15 !important;
    padding: 0 10px !important;
  }
  
  .feature-card p {
    text-align: center !important;
    line-height: 1.4 !important;
    padding: 0 12px !important;
  }
  
  /* Contact Demo Form Container Padding */
  #contacto .feature-card {
    padding: 2.5rem 1.5rem !important;
  }
  
  /* Horizontal Cards / Interface Showcase */
  .horizontal-container {
    padding: 0 6vw !important;
    gap: 1.5rem !important;
  }
  
  .horizontal-card { 
    width: 88vw !important; 
    height: auto; 
    min-height: auto; 
    margin-right: 0; 
    flex-direction: column !important; 
    padding: 1rem 0;
  }
  
  .card-content { 
    padding: 2rem 1.5rem !important; 
    text-align: center !important;
    align-items: center !important;
  }
  
  .card-number { 
    font-size: 2.5rem; 
    top: 1rem; 
    right: 1.5rem; 
  }
  
  .card-title, .card-subtitle { 
    font-size: 1.8rem; 
    text-align: center;
    line-height: 1.15 !important;
  }
  
  .card-desc {
    text-align: center;
    margin: 1rem auto 1.5rem auto !important;
    line-height: 1.4 !important;
    padding: 0 12px !important;
  }
  
  .card-line {
    margin: 0 auto !important;
  }
  
  .card-image { 
    padding: 1rem 1.5rem 2rem 1.5rem !important; 
    width: 100%;
  }

  .horizontal-card img {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-image-mobile {
    display: block !important;
    width: 100%;
    margin: 1.5rem auto !important;
  }

  .horizontal-wrap {
    padding: 60px 0 !important;
  }

  /* FAQ Overrides for Mobile */
  .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border) !important;
    border-radius: 16px;
    padding: 1.2rem 16px !important;
    margin-bottom: 1rem;
  }
  
  .faq-q {
    font-size: 1.05rem !important;
    gap: 12px;
  }
  
  .faq-a {
    font-size: 0.95rem !important;
    padding-top: 0.8rem !important;
    line-height: 1.6;
  }
  
  .faq-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 1rem !important;
  }

  /* Contact Form Overrides for Mobile */
  #contacto .feature-card {
    padding: 2.5rem 1.5rem !important;
  }
  
  #contacto h2 {
    font-size: 2rem !important;
  }
  
  #contacto .grid-2 {
    gap: 1rem !important;
  }

  .pricing-list li i {
    font-size: 1.2rem !important;
  }
}

/* Contenedor del interruptor deslizable */
.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
  user-select: none;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.15);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 34px;
}

.slider::before {
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  bottom: 3px;
  content: "☀️";
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  left: 3px;
  position: absolute;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 26px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .slider {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

input:checked + .slider::before {
  transform: translateX(28px);
  content: "🌙";
  background-color: #1E1B4B;
  border-color: rgba(255, 255, 255, 0.15);
}

#faq {
  background: var(--faq-bg) !important;
  transition: background-color 0.3s ease;
}

/* Modal Overlay with Glassmorphism */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Content Container */
.modal-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

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

/* Premium Close Button */
.modal-close-btn {
  position: absolute;
  top: -10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.8rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2010;
}

.modal-close-btn:hover {
  background: var(--glow-primary);
  border-color: var(--glow-accent);
  transform: rotate(90deg);
}

/* Phone Frame Mockup (Premium App Style) */
.phone-frame {
  width: 290px;
  height: 600px;
  background: #000000;
  border: 12px solid #1c1c1e;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(155, 92, 252, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic Island / Speaker notch */
.phone-speaker {
  width: 110px;
  height: 25px;
  background: #000000;
  border-radius: 15px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Phone Screen */
.phone-screen {
  flex: 1;
  width: 100%;
  height: 100%;
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* Video inside screen */
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* Phone Home indicator bar */
.phone-home-bar {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

/* Small mobile optimization for modal */
@media (max-width: 480px) {
  .phone-frame {
    width: 260px;
    height: 530px;
    border-width: 10px;
  }
  .modal-close-btn {
    top: -20px;
    right: 20px;
  }
}

/* Laptop Modal Content styling to allow a wider aspect ratio */
.laptop-modal-content {
  max-width: 900px;
  width: 95%;
}

/* Laptop Frame Container */
.laptop-frame {
  width: 100%;
  max-width: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Laptop Screen (Lid) */
.laptop-screen {
  width: 100%;
  aspect-ratio: 190 / 87;
  background: #000000;
  border: 12px solid #1e1e1e;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 189, 248, 0.2);
  position: relative;
  overflow: hidden;
}

/* Webcam dot */
.laptop-webcam {
  width: 6px;
  height: 6px;
  background: #0d0d0d;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}

/* Video inside screen */
.laptop-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000000;
}

/* Laptop Base */
.laptop-base {
  width: 114%;
  height: 16px;
  background: #e5e7eb;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #ffffff;
  border-bottom: 4px solid #9ca3af;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Opening notch in the base */
.laptop-notch {
  width: 80px;
  height: 6px;
  background: #9ca3af;
  border-radius: 0 0 6px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive adjustment for laptop modal */
@media (max-width: 768px) {
  .laptop-frame {
    max-width: 90%;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  animation: whatsapp-pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

/* Responsive adjustment for WhatsApp float */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
