<style>
  :root {
  --primary: #1b6ef3;
  --primary-dark: #174ea6;
  --bg: #f8fafc;
  --text: #222;
  --gray: #6b7280;
  --border: #e5e7eb;
  --corners: 16px;
  --card-bg: #fff;
  --stat-bg: #f1f5f9;
  --shadow: 0 4px 24px rgba(27,110,243,0.08);
  --transition: background 0.3s, color 0.3s;
}
[data-theme="light"] {
  --primary: #1b6ef3;
  --primary-dark: #174ea6;
  --bg: #f8fafc;
  --text: #222;
  --gray: #6b7280;
  --border: #e5e7eb;
  --corners: 16px;
  --card-bg: #fff;
  --stat-bg: #f1f5f9;
  --shadow: 0 4px 24px rgba(27,110,243,0.08);
  --transition: background 0.3s, color 0.3s;
}
[data-theme="dark"] {
  --primary: #6ea8ff;
  --primary-dark: #3c6fc8;
  --bg: #181d23;
  --text: #f3f4f6;
  --gray: #a3a3a3;
  --border: #23272f;
  --corners: 16px;
  --card-bg: #23272f;
  --stat-bg: #23272f;
  --shadow: 0 4px 24px rgba(27,110,243,0.18);
  --transition: background 0.3s, color 0.3s;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  transition: var(--transition);
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
header {
  background: rgba(255, 255, 255, 0.75); /* translucent for glass effect */
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px 0 rgba(50, 50, 93, 0.07);
}

[data-theme="dark"] header {
  background: rgba(24, 29, 35, 0.75); /* translucent dark */
  border-bottom: 1px solid rgba(110,168,255,0.08);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.18);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 56px;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  gap: 10px;
}
.logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.toggle-theme {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  margin-left: 0.7rem;
  color: var(--primary);
  transition: color 0.2s;
  vertical-align: middle;
  z-index: 120;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 120;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 900px) {
  .main-nav {
    justify-content: center;
    align-items: center;
    position: relative;
    height: 56px;
  }
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 120;
  }
  .toggle-theme {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    z-index: 120;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 120;
  }
  .nav-links,
  .nav-actions {
    display: none !important;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--card-bg);
  color: var(--text);
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
}
.mobile-menu nav {
  width: 100%;
}
.mobile-menu nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1.3rem;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
}
.mobile-menu nav hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.mobile-menu-actions {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fullwidth {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
  text-align: center;
  font-size: 1.1rem;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}
.btn {
  padding: 0.6em 1.2em;
  border-radius: var(--corners);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--primary);
  color: #fff;
}

/* Hero Heading */
.hero-heading {
  width: 100%;
  min-height: 520px;
  padding: 3.5rem 0 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
#vanta-bg {
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: relative;
  top: 0; left: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
/* Dashboard placeholder */
.dashboard-placeholder {
  width: 100%;
  max-width: 1150px;
  margin: 2rem auto 2.5rem auto;
  background: linear-gradient(135deg, #e4e8ef 60%, #cfd9e7 100%);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27,110,243,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.dashboard-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  max-width: 1150px;
  max-height: 621px;
}
@media (max-width: 1200px) {
  .dashboard-placeholder {
    max-width: 100%;
  }
  .dashboard-placeholder img {
    max-width: 100%;
    height: auto;
  }
}

/* Two-column section */
.twocol-section {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 3rem auto; /* Remove margin from footer in app page*/
  max-width: 1100px;
  padding: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
}
.twocol-img {
  flex: 0 0 562px;
  max-width: 562px;
  min-width: 300px;
  /*height: 320px;*/
  background: linear-gradient(135deg, #e4e8ef 60%, #cfd9e7 100%);
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(27,110,243,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  margin: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="dark"] .twocol-img {
  background: linear-gradient(135deg, #23272f 60%, #2e3743 100%);
  box-shadow: 0 8px 40px 0 rgba(110,168,255,0.6);
}
.twocol-img-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: none;
  background: transparent;
}
.twocol-text {
  flex: 2 1 380px;
  min-width: 260px;
  max-width: 600px;
  box-sizing: border-box;
}
.twocol-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.twocol-text p {
  color: var(--gray);
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  margin-top: 0;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .twocol-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .twocol-img, .twocol-text {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .twocol-section {
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.twocol-list {
  color: var(--gray);
  font-size: 1.08rem;
  margin: 0 0 0.7rem 0;
  padding-left: 1.2em;
  line-height: 1.1;
  list-style: disc inside;
}
.twocol-list li {
  margin-bottom: 1.5em;
  position: relative;
  padding-left: 0.1em;
}
.twocol-list li::marker {
  color: var(--primary-dark);
  font-size: 1.1em;
  font-weight: bold;
}

/* Cards grid */
.cards-section {
  margin: 3rem auto 2rem auto;
  max-width: 1200px;
}
.cards-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}
.cards-desc {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--card-bg);
  border-radius: var(--corners);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}
.card-desc {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
  transition: color 0.2s;
}
.card-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
@media (max-width: 800px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  width: 100%;
  background: var(--primary);
  color: #fff;
  text-align: center;
  margin: 3rem 0 2.5rem 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  box-sizing: border-box;
  padding: 0;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .cta-content {
    padding: 2rem 5px;
  }
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e9e9e9;
}
.cta-section .btn {
  font-size: 1.2rem;
  padding: 1em 2em;
  border-radius: 40px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  border: none;
  margin-bottom: 0.5rem;
}
.cta-section .btn:hover {
  background: #e9e9e9;
  color: var(--primary-dark);
}
.cta-section, footer {
  width: 100%;
  background: var(--primary); /* Cambia para footer si quieres otro fondo */
  color: #fff;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
  padding: 3rem 0 2.5rem 0;
}

footer {
  background: var(--card-bg);
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1rem 0;
}

.cta-content, .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .cta-content, .footer-content {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Footer */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1rem 0;
  margin-top: 0rem;
  transition: var(--transition);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1rem;
  color: var(--gray);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-brand {
  font-weight: bold;
  color: var(--primary-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
/* AI providers */
.ai-providers-section {
  margin: 2.5rem auto;
  padding: 2rem 1rem;
  background: var(--card-bg);
  border-radius: var(--corners);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 900px;
  transition: var(--transition);
  box-sizing: border-box;
}
.ai-providers-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}
.ai-providers-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}
.ai-provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.98rem;
  color: var(--gray);
}
.ai-provider img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  border: 1px solid var(--border);
  margin-bottom: 0.2rem;
}

@media (max-width: 600px) {
  .ai-providers-section {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    max-width: 100%;
  }
}
/*Stats*/
.stats-section {
  margin: 3rem auto 2.5rem auto;
  padding: 2rem 1rem;
  background: var(--stat-bg);
  border-radius: var(--corners);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 900px;
  transition: var(--transition);
  box-sizing: border-box;
}
.stat {
  text-align: center;
  flex: 1 1 0;
}
.stat-value {
  font-size: 2.3rem;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-section {
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 100%;
  }
  .hide-mobile {
    display: none !important;
  }
}
/* Accesibilidad para enfoque */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Ajustes responsivos adicionales */
@media (max-width: 600px) {
  .dashboard-placeholder {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .cards-section {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .hero-heading {
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .main-content {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    margin: 0;
  }
  /* Si tienes .container dentro de .main-content, añade: */
  .main-content .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Mejoras visuales para scrollbars en desktop */
::-webkit-scrollbar {
  width: 8px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
/* Social Proof*/
.proof-bubble {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.95);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(27,110,243,0.08);
      padding: 12px 18px;
      gap: 14px;
      max-width: 350px;
      font-family: 'Segoe UI', Arial, sans-serif;
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 1000;
      animation: bubble-in 0.5s ease;
    }
    .bubble-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .bubble-text {
      font-size: 1rem;
      color: #222;
    }
    .bubble-text small {
      color: #6b7280;
    }
    @keyframes bubble-in {
      from { opacity: 0; transform: translateY(30px);}
      to { opacity: 1; transform: translateY(0);}
    }
 /*Price Tables*/
 .price-table-section {
  background: var(--card-bg);
  padding: 3rem 0 2.5rem 0;
  margin: 0 auto 0 auto;
  box-shadow: var(--shadow);
  border-radius: var(--corners);
  transition: var(--transition);
}
.price-table-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.price-table-desc {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}
.price-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--corners);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}
.price-card-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(27,110,243,0.12);
}
.price-card-header {
  text-align: center;
  margin-bottom: 1.2rem;
}
.price-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}
.price-card-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
}
.price-card-price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
  margin-left: 2px;
}
.price-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: var(--gray);
  text-align: left;
  font-size: 1.05rem;
  width: 100%;
}
.price-card-features li {
  margin-bottom: 0.7em;
  padding-left: 1.2em;
  position: relative;
}
.price-card-features li:before {
  content: "✔";
  color: var(--primary);
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 0;
}
.price-btn {
  width: 100%;
  margin-top: auto;
  font-size: 1.1rem;
  padding: 0.7em 0;
  text-align: center;
}
.price-table-note {
  text-align: center;
  color: var(--gray);
  margin-top: 2.5rem;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .price-table-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .price-table-section {
    padding: 2rem 0 1.5rem 0;
  }
}
/* AI page */
.ai-feature-cards {
  margin: 2.5rem auto 2rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}
.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.ai-feature-card {
  background: var(--card-bg);
  border-radius: var(--corners);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem 1.2rem;
  transition: box-shadow 0.2s, border 0.2s;
}
.ai-feature-card:hover {
  box-shadow: 0 8px 32px rgba(27,110,243,0.13);
  border-color: var(--primary);
}
.ai-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ai-feature-text {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .ai-feature-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .ai-feature-card {
    padding: 1.2rem 0.9rem;
  }
}

/*One column*/
.twocol-text-full {
  width: 100%;
  max-width: 100%;
  text-align: left;
  margin: 0;
  /* Elimina cualquier max-width heredado */
}
</style>
