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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #f5f5f7;
  --panel-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);
  --accent-color: #00b02f;
  --accent-glow: rgba(0, 176, 47, 0.15);
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --font-sans: 'Inter', sans-serif;
  --font-headline: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* App Logo & Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 8%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(245, 245, 247, 0.8);
  border-bottom: 1px solid var(--border-color);
}
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.logo {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.logo span {
  color: var(--accent-color);
}
.logo-icon {
  width: 26px;
  height: 26px;
  stroke: var(--accent-color);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.cta-button {
  background: var(--text-primary);
  color: #fff;
  padding: 0 20px;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s, transform 0.2s;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  height: 38px;
}
.cta-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cta-button:hover {
  background-color: #000;
  transform: translateY(-1px);
}
.cta-whatsapp {
  background-color: #25d366 !important;
}
.cta-whatsapp:hover {
  background-color: #1ebd56 !important;
}
.cta-app {
  background-color: var(--accent-color) !important;
  color: #fff !important;
}
.cta-app:hover {
  background-color: #008724 !important;
}
.cta-demo {
  background-color: #3b82f6 !important;
  color: #fff !important;
}
.cta-demo:hover {
  background-color: #2563eb !important;
}
.cta-shopping {
  background-color: #111115 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.cta-shopping:hover {
  background-color: #1f1f24 !important;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Container and Sections */
main {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 900px;
  margin-bottom: 50px;
  padding: 0 20px;
}
.hero-tagline {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-desc-container {
  max-width: 800px;
  margin-top: 40px;
  padding: 0 20px;
  z-index: 10;
}
.hero-desc {
  font-size: 20px;
  color: #3a3a3c; /* Darker charcoal for high contrast */
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================================================
   Clean Borderless Images
   ========================================================================== */
.hero-image-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.clean-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}


/* Feature Sections */
.animate-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.animate-section:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #ffffff;
}
.section-info {
  width: 42%;
  z-index: 10;
  transition: background 0.5s ease, border 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease, border-radius 0.5s ease;
}
.section-tag {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}
.section-title span {
  color: var(--accent-color);
}
.section-desc {
  color: #3a3a3c; /* Darker charcoal for high contrast */
  font-size: 19px; /* Increased from 17px to 19px */
  line-height: 1.65;
  margin-bottom: 32px;
}
.section-visual {
  width: 50%;
}

/* Final Showcase */
.final-showcase {
  padding: 120px 8%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

/* Bento Grid Showcase */
.bento-section {
  padding: 120px 8%;
  text-align: center;
  background-color: #ffffff;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 60px;
}
.bento-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 176, 47, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.bento-card-large {
  grid-column: span 2;
}
.bento-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.bento-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

/* Footer styling */
footer {
  padding: 80px 8% 40px;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  position: relative;
  z-index: 10;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent-color);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Extras Section */
.extras-section {
  padding: 120px 8%;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.extra-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.extra-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.extra-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.extra-info {
  padding: 24px;
}
.extra-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.extra-text {
  font-size: 15px;
  color: #515154;
  line-height: 1.5;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  header {
    padding: 12px 4%;
    gap: 10px;
  }
  .header-top-row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .header-actions {
    justify-content: center;
  }
  .nav-links {
    gap: 20px;
  }
  .hero {
    padding-top: 210px;
  }
  .hero-title {
    font-size: 42px;
  }
  .simulator-grid {
    flex-direction: column;
    gap: 40px;
  }
  .simulator-left, .simulator-right {
    width: 100%;
  }
  .animate-section {
    flex-direction: column !important;
    padding: 80px 5%;
    gap: 50px;
  }
  .section-info {
    width: 100%;
    text-align: center;
  }
  .section-visual {
    width: 100%;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-large {
    grid-column: span 1;
  }
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Theme Selector Container */
.theme-selector-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 6px;
  border-radius: 24px;
  
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Individual Theme Option Buttons */
.theme-option-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Order and height transitions for vertical expansion */
  order: 1;
  max-height: 40px;
  box-sizing: border-box;
}

/* Icons styling */
.theme-option-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hover and Active styles in collapsed/expanded states */
.theme-option-btn.active {
  background: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  order: 2; /* Active button goes to the bottom of the column */
}

/* Collapsed State: hide inactive options */
.theme-selector-container.collapsed .theme-option-btn:not(.active) {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  pointer-events: none;
  overflow: hidden;
}
.theme-selector-container.collapsed {
  gap: 0;
}

/* Expanded State */
.theme-selector-container.expanded {
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.theme-selector-container.expanded .theme-option-btn:not(.active) {
  max-height: 40px;
  opacity: 1;
  pointer-events: auto;
}
.theme-selector-container.expanded .theme-option-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .theme-selector-container {
    bottom: 16px;
    left: 16px;
    padding: 4px;
    border-radius: 20px;
  }
  .theme-option-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Vision Pro Theme Styles */
body.theme-vision-pro {
  --bg-color: #0b0b0d;
  --panel-bg: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f5f7;
  --text-secondary: #86868b;
  
  background: radial-gradient(circle at 50% 0%, #1e1d24, #08080a 80%) !important;
  background-attachment: fixed !important;
  color: #f5f5f7 !important;
  transition: background 0.5s ease, color 0.5s ease;
}

body.theme-vision-pro::before {
  content: "";
  position: fixed;
  top: 15%;
  left: 10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 176, 47, 0.12) 0%, rgba(0, 176, 47, 0) 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: floatOrb 20s infinite alternate ease-in-out;
}
body.theme-vision-pro::after {
  content: "";
  position: fixed;
  bottom: 10%;
  right: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(30, 80, 255, 0.08) 0%, rgba(30, 80, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: floatOrb2 25s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5vw, 5vh) scale(1.1); }
}
@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-5vw, -5vh) scale(0.9); }
}

body.theme-vision-pro header {
  background: rgba(15, 15, 20, 0.3) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(30px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(150%) !important;
}

body.theme-vision-pro .nav-links a {
  color: #a1a1a6;
}
body.theme-vision-pro .nav-links a:hover {
  color: #ffffff;
}

body.theme-vision-pro .theme-selector-container {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}
body.theme-vision-pro .theme-option-btn {
  color: #ffffff;
}
body.theme-vision-pro .theme-option-btn.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 6px rgba(0, 0, 0, 0.2);
}
body.theme-vision-pro .theme-selector-container.expanded {
  background: rgba(255, 255, 255, 0.12);
}
body.theme-vision-pro .theme-selector-container.expanded .theme-option-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
}

body.theme-vision-pro .animate-section {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
body.theme-vision-pro .animate-section:nth-child(even) {
  background-color: transparent !important;
}

body.theme-vision-pro .section-desc {
  color: #d2d2d7;
}

body.theme-vision-pro .hero-desc {
  color: #d2d2d7;
}

body.theme-vision-pro .clean-image {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

body.theme-vision-pro .extras-section {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.theme-vision-pro .extra-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
body.theme-vision-pro .extra-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
body.theme-vision-pro .extra-image-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
body.theme-vision-pro .extra-title {
  color: #ffffff;
}
body.theme-vision-pro .extra-text {
  color: #b0b0b5;
}

body.theme-vision-pro .final-showcase {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.theme-vision-pro .bento-section {
  background-color: transparent !important;
}
body.theme-vision-pro .bento-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
body.theme-vision-pro .bento-card:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
body.theme-vision-pro .bento-title {
  color: #ffffff;
}
body.theme-vision-pro .bento-desc {
  color: #b0b0b5;
}

body.theme-vision-pro footer {
  background: rgba(8, 8, 10, 0.5) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
body.theme-vision-pro .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Dark Spatial Section Info Cards & Images */
body.theme-vision-pro .section-info {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(25px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(120%) !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease, border-color 0.5s ease !important;
}
body.theme-vision-pro .section-info:hover {
  transform: translateY(-6px) scale(1.01) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.55), 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}
body.theme-vision-pro .clean-image {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
body.theme-vision-pro .clean-image:hover {
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.55), 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Vision Pro Light Theme (Espacial Claro) */
body.theme-vision-pro-light {
  --bg-color: #f5f5f7;
  --panel-bg: rgba(255, 255, 255, 0.12);
  --border-color: rgba(255, 255, 255, 0.45);
  --text-primary: #1d1d1f;
  --text-secondary: #515154;
  
  background: radial-gradient(circle at 10% 20%, #e0f2fe 0%, #fdf4ff 35%, #ecfdf5 70%, #fff7ed 100%) !important;
  background-attachment: fixed !important;
  color: var(--text-primary) !important;
  transition: background 0.5s ease, color 0.5s ease;
}

body.theme-vision-pro-light::before {
  content: "";
  position: fixed;
  top: 10%;
  left: 5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(0, 176, 47, 0.14) 0%, rgba(0, 176, 47, 0) 70%);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: floatOrb 25s infinite alternate ease-in-out;
}
body.theme-vision-pro-light::after {
  content: "";
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(130px);
  z-index: -1;
  pointer-events: none;
  animation: floatOrb2 30s infinite alternate ease-in-out;
}

body.theme-vision-pro-light header {
  background: rgba(255, 255, 255, 0.12) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

body.theme-vision-pro-light .nav-links a {
  color: #515154;
}
body.theme-vision-pro-light .nav-links a:hover {
  color: #000000;
}

body.theme-vision-pro-light .theme-selector-container {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 16px 48px rgba(0, 0, 0, 0.06) !important;
}
body.theme-vision-pro-light .theme-option-btn {
  color: #1d1d1f;
}
body.theme-vision-pro-light .theme-option-btn.active {
  background: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
body.theme-vision-pro-light .theme-selector-container.expanded {
  background: rgba(255, 255, 255, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 24px 64px rgba(0, 0, 0, 0.12) !important;
}
body.theme-vision-pro-light .theme-selector-container.expanded .theme-option-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.25);
}

body.theme-vision-pro-light .animate-section {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
body.theme-vision-pro-light .animate-section:nth-child(even) {
  background-color: transparent !important;
}

body.theme-vision-pro-light .section-info {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(35px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(180%) !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(0, 0, 0, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease, border-color 0.5s ease !important;
}
body.theme-vision-pro-light .section-info:hover {
  transform: translateY(-6px) scale(1.01) !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.09), 0 15px 35px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

body.theme-vision-pro-light .section-title {
  color: #1d1d1f !important;
}

body.theme-vision-pro-light .section-desc {
  color: #515154;
}

body.theme-vision-pro-light .hero-desc {
  color: #515154;
}

body.theme-vision-pro-light .clean-image {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.07), 0 12px 30px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
body.theme-vision-pro-light .clean-image:hover {
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.14), 0 20px 45px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

body.theme-vision-pro-light .extras-section {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.theme-vision-pro-light .extra-card {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease, border-color 0.5s ease !important;
}
body.theme-vision-pro-light .extra-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.24) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
body.theme-vision-pro-light .extra-image-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
body.theme-vision-pro-light .extra-title {
  color: #1d1d1f;
}
body.theme-vision-pro-light .extra-text {
  color: #515154;
}

body.theme-vision-pro-light .final-showcase {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.theme-vision-pro-light .bento-section {
  background-color: transparent !important;
}
body.theme-vision-pro-light .bento-card {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease, border-color 0.5s ease !important;
}
body.theme-vision-pro-light .bento-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

body.theme-vision-pro-light footer {
  background: rgba(240, 240, 243, 0.3) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}
body.theme-vision-pro-light .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Responsive Padding for Floating Glass Cards and Header clearance */
@media (max-width: 768px) {
  body.theme-vision-pro .section-info,
  body.theme-vision-pro-light .section-info {
    padding: 24px !important;
    border-radius: 16px !important;
  }
  .hero {
    padding-top: 220px;
  }
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  z-index: 9999;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

/* Vision Pro Dark Theme Overrides for Back to Top */
body.theme-vision-pro .back-to-top-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}
body.theme-vision-pro .back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Vision Pro Light Theme Overrides for Back to Top */
body.theme-vision-pro-light .back-to-top-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #1d1d1f !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 32px rgba(0, 0, 0, 0.04);
}
body.theme-vision-pro-light .back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* Header actions alignment */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Share button styling */
.cta-share {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cta-share:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

/* Vision Pro Dark Theme Overrides for Share Button */
body.theme-vision-pro .cta-share {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
body.theme-vision-pro .cta-share:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Vision Pro Light Theme Overrides for Share Button */
body.theme-vision-pro-light .cta-share {
  background-color: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #1d1d1f !important;
}
body.theme-vision-pro-light .cta-share:hover {
  background-color: rgba(255, 255, 255, 0.35) !important;
}

/* Share Modal Styling */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.share-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.share-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.share-modal-content {
  position: relative;
  width: 90%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 28px;
  padding: 30px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
  z-index: 10001;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.share-modal.active .share-modal-content {
  transform: scale(1) translateY(0);
}
.share-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.2s;
}
.share-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.share-modal-close svg {
  width: 14px;
  height: 14px;
}
.share-modal-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.share-modal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}
.share-qr-container {
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.share-qr-container img {
  width: 150px;
  height: 150px;
  display: block;
}
.share-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.share-action-btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}
.share-action-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.share-action-btn svg {
  width: 16px;
  height: 16px;
}
.share-action-btn.primary {
  background: var(--text-primary);
  color: #ffffff;
  border: none;
}
.share-action-btn.primary:hover {
  background: #000;
}

/* Dark theme style overrides for the modal */
body.theme-vision-pro .share-modal-content {
  background: rgba(20, 20, 25, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
body.theme-vision-pro .share-modal-close {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}
body.theme-vision-pro .share-modal-close:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}
body.theme-vision-pro .share-action-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}
body.theme-vision-pro .share-action-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}
body.theme-vision-pro .share-action-btn.primary {
  background: #ffffff !important;
  color: #0b0b0d !important;
}
body.theme-vision-pro .share-action-btn.primary:hover {
  background: #f5f5f7 !important;
}

/* Light vision-pro theme style overrides for the modal */
body.theme-vision-pro-light .share-modal-content {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 1300px) {
  header {
    padding: 15px 5%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin: 10px 0 5px 0;
    gap: 32px;
  }
  
  .header-actions {
    order: 2;
    justify-content: flex-end;
    flex-grow: 1;
    max-width: none;
  }
}

@media (max-width: 900px) {
  header {
    padding: 15px 4%;
  }
  
  .logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .nav-links {
    order: 2;
    margin: 10px 0;
  }
  
  .header-actions {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    font-size: 13px;
  }
  
  .header-actions {
    gap: 6px;
  }
  
  .cta-button {
    padding: 0 12px;
    font-size: 13px;
    height: 34px;
    gap: 4px;
  }
  
  .cta-button svg {
    width: 15px;
    height: 15px;
  }
}

/* Spatial hover glow effects */
body.theme-vision-pro .cta-app {
  box-shadow: 0 0 15px rgba(0, 176, 47, 0.4);
}
body.theme-vision-pro .cta-demo {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}
body.theme-vision-pro .cta-shopping {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}
body.theme-vision-pro-light .cta-app {
  box-shadow: 0 0 10px rgba(0, 176, 47, 0.2);
}
body.theme-vision-pro-light .cta-demo {
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}
body.theme-vision-pro-light .cta-shopping {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 80px 24px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

.ecosystem-card {
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.4);
}

.ecosystem-card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 32px;
  opacity: 0.08;
  font-size: 120px;
  line-height: 1;
  color: #ffffff;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecosystem-card:hover .ecosystem-card-bg-icon {
  transform: scale(1.1) rotate(12deg);
}

.ecosystem-card-body {
  padding: 32px 32px 24px 32px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}

.ecosystem-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.ecosystem-card-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.ecosystem-card-desc {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.ecosystem-card-image-section {
  margin-top: auto;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  overflow: hidden;
}

.ecosystem-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ecosystem-card-img-grad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  opacity: 0.5;
  background: linear-gradient(to bottom, currentColor, transparent);
}

.ecosystem-card-btn-container {
  position: relative;
  z-index: 10;
  padding: 32px;
  margin-top: auto;
}

.ecosystem-card-btn {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: none;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.ecosystem-card-btn:active {
  transform: scale(0.97);
}

/* Modal details */
.ecosystem-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.ecosystem-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ecosystem-modal-content {
  position: relative;
  z-index: 1010;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: #14141a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ecosystem-modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.ecosystem-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.ecosystem-modal-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 60px;
}

.ecosystem-modal-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.ecosystem-modal-desc {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

.ecosystem-modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ecosystem-modal-section-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #4dff00;
  letter-spacing: 1px;
}

.ecosystem-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .ecosystem-features-list {
    grid-template-columns: 1fr;
  }
}

.ecosystem-feature-item {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 20px;
  align-items: flex-start;
}

.ecosystem-feature-icon {
  color: #4dff00;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.ecosystem-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.ecosystem-feature-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}

.ecosystem-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

@media (max-width: 600px) {
  .ecosystem-modal-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

.ecosystem-modal-price-container {
  display: flex;
  flex-direction: column;
}

.ecosystem-modal-price-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.ecosystem-modal-price-value {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}

.ecosystem-modal-action-btn {
  background: #4dff00;
  color: #000000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(77, 255, 0, 0.2);
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

.ecosystem-modal-action-btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Light theme overrides for modal */
body.theme-vision-pro-light .ecosystem-modal-overlay {
  background: rgba(245, 245, 247, 0.85);
}

body.theme-vision-pro-light .ecosystem-modal-content {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 45px 95px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.theme-vision-pro-light .ecosystem-modal-title,
body.theme-vision-pro-light .ecosystem-feature-title,
body.theme-vision-pro-light .ecosystem-modal-price-value {
  color: #1d1d1f;
}

body.theme-vision-pro-light .ecosystem-modal-desc,
body.theme-vision-pro-light .ecosystem-feature-desc {
  color: #515154;
}

body.theme-vision-pro-light .ecosystem-feature-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

body.theme-vision-pro-light .ecosystem-modal-close {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
}

body.theme-vision-pro-light .ecosystem-modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.theme-vision-pro-light .ecosystem-modal-footer {
  border-top-color: rgba(0, 0, 0, 0.08);
}

