/* Xtiende Static Styles */
:root {
  --bg: #050214;
  --bg-soft: #0b0730;
  --text: #e9e7ff;
  --muted: #bfbada;
  --primary: #4a19a3;
  --primary-2: #8F19A3;
  --accent: #19a3a3;
  --danger: #ff5d5d;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

@font-face {
  font-family: 'IBRAND';
  src: url('./assets/fonts/ibrand.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-link {
  color: #2d1040;
}

.navbar.scrolled .navbar-link:hover {
  color: #4a19a3;
  background: rgba(74, 25, 163, 0.1);
}

.navbar.scrolled .navbar-link.active {
  color: #4a19a3;
  background: rgba(74, 25, 163, 0.15);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.navbar-logo {
  position: relative;
  width: 150px;
  height: 50px;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

/* Logo con colores visible cuando navbar transparente */
.navbar:not(.scrolled) .logo-white {
  opacity: 1;
}

.navbar:not(.scrolled) .logo-color {
  opacity: 0;
}

/* Logo blanco visible cuando navbar scrolled */
.navbar.scrolled .logo-white {
  opacity: 0;
}

.navbar.scrolled .logo-color {
  opacity: 1;
}

/* Estado inicial - mostrar logo con colores por defecto */
.logo-white {
  opacity: 1;
}

.logo-color {
  opacity: 0;
}

/* Hamburger menu colors - blanco en navbar transparente */
.navbar:not(.scrolled) .navbar-toggle span {
  background: white;
}

/* Hamburger menu colors - oscuro en navbar con scroll */
.navbar.scrolled .navbar-toggle span {
  background: #4a19a3;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  z-index: 10;
}

.navbar-link {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
 
}

.navbar-link:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.navbar-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  margin-left: auto;
  z-index: 20;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-container {
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  
  .navbar-logo {
    width: 120px;
    height: 40px;
  }
  
  .navbar-logo img {
    height: 40px;
  }
  
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(0) translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 1rem 1rem;
  }
  
  .navbar-menu .navbar-link {
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
  }
  
  .navbar-menu .navbar-link:hover {
    background: rgba(74, 25, 163, 0.1);
    color: #4a19a3;
  }
  
  .navbar-menu.active {
    transform: translateX(0) translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-toggle {
    display: flex;
    position: relative;
    z-index: 30;
  }
  
  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(
      1200px 800px at 20% -10%,
      rgba(166, 125, 234, 0.15),
      transparent
    ),
    radial-gradient(
      900px 600px at 85% 0%,
      rgba(25, 163, 163, 0.12),
      transparent
    ),
    var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  margin: 0 0 1.2rem;
  letter-spacing: 0.2px;
}

.features .section-title {
  color: #4a19a3;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.features .section-title::after {
  content: '';
  display: block;
  margin: 0.7rem auto 0 auto;
  width: 70px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #8F19A3 0%, #4a19a3 100%);
  animation: underlineGrow 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
}

@keyframes underlineGrow {
  from { width: 0; opacity: 0; }
  to { width: 70px; opacity: 1; }
}



/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0.06) 100%
  );
  z-index: 2;
}
.hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease-in-out;
  background-position: 50% 50%, 60% center; /* gradient, photo */
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
}
.hero__slide--1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("./assets/img/hero/hero1.png");
}
.hero__slide--2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("./assets/img/hero/hero2.png");
}
.hero__slide--3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("./assets/img/hero/hero3.png");
}
.hero__slide.is-active {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__panel {
  position: relative;
  z-index: 4;
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 28px) clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: min(1000px, 88vw);
}
.hero__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70vw;
  max-width: 1000px;
}
.hero__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 8% 12% 12% 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(79, 70, 229, 0.12) 0%,
    rgba(79, 70, 229, 0) 55%
  );
 
  z-index: 0;
  pointer-events: none;
}
.hero__logo {
  width: auto;
  max-width: clamp(260px, 60vw, 820px);
  height: auto;
  position: relative;
  z-index: 1;

  
}
.hero__text {
  min-width: 0;
  text-align: center;
  margin-top: 2rem;
  color: #0f172a;
}
.hero__title {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #ffffff;
  text-shadow: none;
}
.animated-word {
  display: inline-block;
  margin-left: 8px;
  color: #8F19A3;
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3rem);
  min-width: 220px;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

/* Hero Word Carousel */
.hero__carousel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 5;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  animation: scroll-infinite 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.carousel-text {
  color: white;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 500;
  padding: 0 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* Separator between items */
.carousel-text + .carousel-text::before {
  content: " 🚀 ";
  color: #ffffff;
  opacity: 0.9;

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero__carousel {
    height: 50px;
  }
  
  .carousel-text {
    padding: 0 2rem;
    font-size: clamp(0.8rem, 2.2vw, 1rem);
  }

  .carousel-text + .carousel-text::before {
    margin-right: 0.75rem;
  }
  
  .carousel-track {
    animation-duration: 20s;
  }
}

@media (max-width: 480px) {
  .hero__carousel {
    height: 45px;
  }
  
  .carousel-text {
    padding: 0 1.5rem;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
  }

  .carousel-text + .carousel-text::before {
    margin-right: 0.5rem;
  }
  
  .carousel-track {
    animation-duration: 18s;
  }
}

@media (max-width: 1024px) {
  .hero__slide {
    background-position: 50% 50%, 55% center;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }
  .hero__slide {
    background-position: 50% 50%, 45% center;
  }
  .hero__logo-wrap {
    width: 85vw;
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .animated-word {
    display: block;
    margin-left: 0;
  }
}

/* INTRO */
.intro {
  position: relative;
  padding: 2rem 0 3rem 0;
  background: linear-gradient(120deg, #fff 80%, #f3e8fd 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro::before,
.intro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.15;
}
.intro::before {
  width: 300px;
  height: 300px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle, #8f19a3 40%, transparent 80%);
}
.intro::after {
  width: 200px;
  height: 200px;
  right: -80px;
  bottom: -60px;
  background: radial-gradient(circle, #4a19a3 50%, transparent 90%);
}
.intro h2 {
  position: relative;
  color: #4a19a3;
  margin-bottom: 2rem;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
.intro h2::after {
  content: "";
  display: block;
  margin: 0.7rem auto 0 auto;
  width: 70px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #8f19a3 0%, #4a19a3 100%);
}
.intro__card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(74, 25, 163, 0.1);
  padding: 2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  max-width: 1200px;
  text-align: left;
}
.intro__card p {
  margin: 0;
  color: #4a19a3;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
  text-align: justify;
}
@media (max-width: 768px) {
  .intro__card {
    padding: 1.2rem 1rem;
  }
  .intro h2 {
    font-size: 2rem;
  }
}

/* PILLARS - Implementación desde cero */
.pillars {
  background: linear-gradient(120deg, #8f19a3 0%, #4a19a3 100%);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.pillars .section-title {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
}

.pillars-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Desktop: 4 cards en fila */
@media (min-width: 769px) {
  .pillars-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
  }
  
  .pillar-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  
  .pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
}

/* Mobile: Carrusel horizontal */
@media (max-width: 768px) {
  .pillars-container {
    padding: 0;
  }
  
  .pillars-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .pillars-grid::-webkit-scrollbar {
    display: none;
  }
  
  .pillar-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    scroll-snap-align: center;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .pillar-card {
    flex: 0 0 260px;
    padding: 1.25rem;
  }
}

/* Estilos de contenido de las cards */
.pillar-icon {
  font-size: 2.5rem;
  margin: 0 auto 1rem auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8f19a3, #4a19a3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-card h3 {
  color: #4a19a3;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pillar-card p {
  color: #2d1065;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* FEATURES */
.features {
  position: relative;
  padding: 4rem  2rem ;
  text-align: center;
  background: linear-gradient(120deg, #f3e8fd 80%, #fff 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .features {
    padding: 1rem ;
  }
}
.switch {
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.switch__track {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 0.25rem;
  width: fit-content;
  border: 1.5px solid #a67dea;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px 0 rgba(74, 25, 163, 0.13),
    0 2px 8px 0 rgba(143, 25, 163, 0.13);
  overflow: hidden;
}
.switch__btn {
  position: relative;
  z-index: 2;
  appearance: none;
  border: 0;
  background: transparent;
  color: #4a19a3;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  min-width: 140px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch__btn.is-active {
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px 0 #8f19a333, 0 2px 8px 0 #fff6;
}
.switch__indicator {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
  width: 0;
  border-radius: 50px;
  background: linear-gradient(95deg, var(--primary), var(--primary-2));
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3),
    0 2px 8px rgba(109, 40, 217, 0.2);
  z-index: 1;
  overflow: hidden;
  transition: transform 0.25s ease, width 0.25s ease;
}
.switch__indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  border-radius: 50px;
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #a67dea66;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(74, 25, 163, 0.18);
  color: #4a19a3;
  display: none;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.carousel__nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 26px rgba(74, 25, 163, 0.28);
}
.carousel__nav--prev {
  left: -10px;
}
.carousel__nav--next {
  right: -10px;
}
.features__list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0.25rem 0.25rem 0.75rem 0.25rem;
  min-height: 320px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.features__list::-webkit-scrollbar {
  display: none;
}
.features__list:focus {
  outline: none;
}
/* Focus outlines for other horizontal carousels */
.pillars__grid:focus,
.how__grid:focus {
  outline: 2px solid var(--primary-2);
  outline-offset: 2px;
}
.feature-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: default;
  outline: none;
}

.feature-card:focus {
  outline: none;
}
.feature-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 2.5rem;
  color: #4a19a3;
  margin: 0 auto 10px auto;
  background: none;
}

/* Iconos animados específicos */
.feature-card__icon.icon-globe::before {
  content: '🌐';
  animation: pulse 2s ease-in-out infinite;
}

.feature-card__icon.icon-star::before {
  content: '⭐';
  animation: twinkle 1.5s ease-in-out infinite;
}

.feature-card__icon.icon-package::before {
  content: '📦';
  animation: bounce 2s ease-in-out infinite;
}

.feature-card__icon.icon-target::before {
  content: '🎯';
  animation: spin 3s linear infinite;
}

.feature-card__icon.icon-shield::before {
  content: '🛡️';
  animation: glow 2.5s ease-in-out infinite;
}

.feature-card__icon.icon-megaphone::before {
  content: '📢';
  animation: shake 2s ease-in-out infinite;
}

.feature-card__icon.icon-handshake::before {
  content: '🤝';
  animation: wave 3s ease-in-out infinite;
}

.feature-card__icon.icon-money::before {
  content: '💰';
  animation: bounce 2s ease-in-out infinite;
}

.feature-card__icon.icon-search::before {
  content: '🔍';
  animation: searchMove 2.5s ease-in-out infinite;
}

.feature-card__icon.icon-robot::before {
  content: '🤖';
  animation: robotMove 3s ease-in-out infinite;
}

.feature-card__icon.icon-check::before {
  content: '✅';
  animation: checkPulse 2s ease-in-out infinite;
}

.feature-card__icon.icon-tag::before {
  content: '🏷️';
  animation: tagSwing 2.5s ease-in-out infinite;
}

/* Animaciones específicas */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3) drop-shadow(0 0 5px #4a19a3); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@keyframes searchMove {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(5px) rotate(15deg); }
}

@keyframes robotMove {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes checkPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.15); filter: brightness(1.2); }
}

@keyframes tagSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}
.feature-card__title {
  margin: 0;
  font-size: 1.2rem;
  color: #1a0d33;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.feature-card__desc {
  margin: 0;
  color: #2d1040;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* Coming Soon Card Styles */
.feature-card--coming-soon {
  position: relative;
  background: linear-gradient(135deg, #1a0d33 0%, #2d1065 50%, #4a19a3 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
}

.feature-card--coming-soon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8f19a3, #4a19a3, #2d1065, #8f19a3, #4a19a3);
  background-size: 400% 400%;
  border-radius: 26px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.feature-card--coming-soon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.coming-soon__icon-container {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon__gear {
  position: absolute;
  font-size: 2rem;
  color: #8f19a3;
  filter: drop-shadow(0 0 10px rgba(143, 25, 163, 0.7));
}

.coming-soon__gear--1 {
  animation: rotateClockwise 4s linear infinite;
  z-index: 2;
}

.coming-soon__gear--2 {
  font-size: 1.5rem;
  top: 15px;
  right: 10px;
  animation: rotateCounterClockwise 3s linear infinite;
  z-index: 1;
  color: #4a19a3;
  filter: drop-shadow(0 0 8px rgba(74, 25, 163, 0.7));
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.coming-soon__title {
  color: white !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem !important;
}

.coming-soon__subtitle {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.coming-soon__desc {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  text-align: center !important;
  font-style: italic;
}


.feature-card--coming-soon:hover .coming-soon__gear--1 {
  animation-duration: 1s;
}

.feature-card--coming-soon:hover .coming-soon__gear--2 {
  animation-duration: 0.8s;
}

.feature-card--coming-soon {
  cursor: default;
  outline: none;
}

.feature-card--coming-soon:focus {
  outline: none;
}
@media (max-width: 1200px) {
  .feature-card {
    flex-basis: 300px;
  }
}
@media (max-width: 992px) {
  .feature-card {
    flex-basis: 300px;
  }
}
/* Features Carousel Navigation */
.features-carousel {
  position: relative;
}

@media (max-width: 768px) {
  .features-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(74, 25, 163, 0.9);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74, 25, 163, 0.3);
  }
  
  .features-nav--prev {
    left: 10px;
  }
  
  .features-nav--next {
    right: 10px;
  }

  .features__list {
    padding: 0 50% 0.75rem 50%;
    gap: 16px;
  }
  .feature-card {
    flex: 0 0 280px;
    min-height: 280px;
    scroll-snap-align: center;
  }
  
  .feature-card__icon {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .pillar-icon {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .benefit-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.features-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #4a19a3;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.features-nav:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 35px rgba(74, 25, 163, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.features-nav--prev {
  left: -25px;
}

.features-nav--next {
  right: -25px;
}

@media (max-width: 768px) {
  .features-nav--prev {
    left: 10px;
  }
  
  .features-nav--next {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .features__list {
    padding: 0 50% 0.75rem 50%;
    gap: 12px;
  }
  .feature-card {
    flex: 0 0 260px;
    min-height: 260px;
    padding: 1.5rem 1.25rem;
    scroll-snap-align: center;
  }
}
@media (max-width: 360px) {
  .feature-card {
    flex: 0 0 240px;
    scroll-snap-align: center;
  }
}

/* HOW IT WORKS */
.how {
  padding: 4rem 1rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.how h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 4rem;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.how__grid::-webkit-scrollbar {
  display: none;
}
.step {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}
.step__icon {
  font-size: 2.5rem;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}
.step__title {
  margin: 0;
  font-weight: 700;
}
.step__desc {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .how .carousel__nav {
    display: grid;
  }
  .how__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 50%;
    padding: 0 50% 0.75rem 50%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .how__grid::-webkit-scrollbar {
    display: none;
  }
  .how__grid .step {
    flex: 0 0 280px;
    scroll-snap-align: center;
    min-height: 320px;
  }
}
@media (max-width: 480px) {
  .how__grid {
    gap: 12px;
    padding: 0 50% 0.75rem 50%;
  }
  .how__grid .step {
    flex: 0 0 260px;
    min-height: 300px;
    scroll-snap-align: center;
  }
}
@media (max-width: 360px) {
  .how__grid .step {
    flex: 0 0 240px;
  }
}

/* FAQ */
.faq {
  padding: 2rem 1rem;
}
.faq .container {
  max-width: 900px;
  margin: 0 auto;
}
.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.faq h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 2px;
}
.faq__list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.faq__item {
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  gap: 1rem;
}
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease;
  color: var(--primary-2);
}
.faq__a {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-top: 8px;
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq__a.is-open {
  padding: 12px 16px;
  opacity: 1;
}
.faq__a p {
  margin: 0;
  color: #d6d2e5;
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* Specific hover colors for each platform */
.social-icon:nth-child(1):hover {
  background: #1877f2;
  color: white;
}

.social-icon:nth-child(2):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-icon:nth-child(3):hover {
  background: #0077b5;
  color: white;
}

.social-icon:nth-child(4):hover {
  background: #000000;
  color: white;
}

.social-icon:nth-child(5):hover {
  background: #ff0000;
  color: white;
}

/* BENEFITS - Implementación desde cero */
.benefits {
  background: linear-gradient(135deg, #4a19a3 0%, #8f19a3 50%, #4a19a3 100%);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.benefits .section-title {
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
}

.benefits-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  text-align: justify;
  margin-bottom: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Desktop: 6 cards en 2 filas de 3 */
@media (min-width: 769px) {
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }
  
  .benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
    text-align: start;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
}

/* Mobile: Carrusel horizontal */
@media (max-width: 768px) {
  .benefits-container {
    padding: 0;
  }
  
  .benefits-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .benefits-grid::-webkit-scrollbar {
    display: none;
  }
  
  .benefit-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .benefit-card {
    flex: 0 0 260px;
    padding: 1.25rem;
  }
}

/* Estilos de contenido de las cards */
.benefit-number {
  display: flex;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a19a3, #8f19a3);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem auto;
}

.benefit-card h4 {
  color: #4a19a3;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-card p {
  color: #2d1065;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.hero {
  background: linear-gradient(135deg, #4a19a3 0%, #8f19a3 50%, #4a19a3 100%);
  color: white;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: 1rem 0;
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.hero__title {
  font-family: 'IBRAND', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0.2em 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
  overflow: visible;
}

.hero__title span:first-child {
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__title .animated-word {
  background: #8F19A3;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  min-width: 4.5em;
  text-align: left;
  font-size: 1em;
}

.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a19a3;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* Development Status Section */
.development-status {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a0d33 0%, #2d1065 50%, #4a19a3 100%);
  position: relative;
  overflow: hidden;
}

.development-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(143, 25, 163, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(74, 25, 163, 0.2) 0%, transparent 40%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
}

.development-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Left Content Section */
.development-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.development-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  display: block;
  color: #4a19a3;
  filter: drop-shadow(0 4px 8px rgba(74, 25, 163, 0.2));
}

.development-title {
  font-family: 'IBRAND', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #4a19a3, #8F19A3, #2d1065);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.development-subtitle {
  font-size: 1.1rem;
  color: #2d1040;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Right Features Section */
.development-features {
  background: linear-gradient(135deg, #4a19a3 0%, #8f19a3 100%);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.dev-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  color: #2d1040;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dev-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.dev-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a19a3, #8f19a3);
  border-radius: 12px;
  color: white;
  box-shadow: 0 4px 15px rgba(74, 25, 163, 0.3);
}

.development-cta {
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 25, 163, 0.2);
}

.cta-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4a19a3;
  margin-bottom: 0.75rem;
}

.cta-subtext {
  font-size: 1rem;
  color: #2d1040;
  line-height: 1.5;
  margin: 0;
}

/* Bottom CTA Section */
.development-cta {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .development-status {
    padding: 4rem 0;
  }
  
  .development-card {
    grid-template-columns: 1fr;
    margin: 0 1rem;
  }
  
  .development-content {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .development-features {
    padding: 3rem 2rem;
  }
  
  .development-cta {
    padding: 2rem;
  }
  
  .dev-feature {
    justify-content: center;
    text-align: center;
  }
}

/* Benefits Summary Styles */
.benefits-summary {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.summary-text {
  flex: 1;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.early-access-cta {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  text-align: center;
}

.cta-highlight {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .benefits-summary {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .summary-text,
  .early-access-cta {
    padding: 1.5rem;
  }
  
  .summary-text {
    font-size: 1.1rem;
  }
  
  .cta-highlight {
    font-size: 1rem;
  }
}

/* Section Subtitle Styles */
.section-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 2rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive title sizes */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.5rem;
    margin: 1.5rem 0;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 1.25rem;
    margin: 1rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

/* Newsletter Form Styles */
.newsletter-form {
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 50px;
  background: white;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: #4a19a3;
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 25, 163, 0.2), 0 2px 10px rgba(0, 0, 0, 0.15);
}

.newsletter-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4a19a3, #8F19A3);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #5a29b3, #9F29B3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 25, 163, 0.4);
}

.newsletter-disclaimer {
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
}

/* Modal Styles */


@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* General section styles */
section {
  padding: 5rem 0;
}

/* Responsive section padding */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }
}

/* VIDEO SECTION */
.video-section {
  padding: 4rem 0;
  background: linear-gradient(120deg, #f8f4ff 0%, #ffffff 100%);
  text-align: center;
}

@media (max-width: 768px) {
  .video-section {
    padding: 1rem 0;
  }
}

.video-section .section-title {
  color: #4a19a3;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(74, 25, 163, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .video-section {
    padding: 1rem 0;
  }
  
  .video-section .section-title {
    margin-bottom: 2rem;
  }
  
  .video-wrapper {
    max-width: 95%;
    border-radius: 12px;
  }
  
  .video-wrapper iframe {
    border-radius: 12px;
  }
}

/* SOCIAL */
.social {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #090616;
}
@media (max-width: 768px) {
  .social {
    padding: 1rem 0;
  }
}

.social h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.social__icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 12px;
}

@media (max-width: 480px) {
  .social__icons {
    gap: 1.5rem;
  }
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* Specific hover colors for each platform */
.social-icon:nth-child(1):hover {
  background: #1877f2;
  color: white;
}

.social-icon:nth-child(2):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-icon:nth-child(3):hover {
  background: #0077b5;
  color: white;
}

.social-icon:nth-child(4):hover {
  background: #000000;
  color: white;
}

@media (max-width: 480px) {
  .social-icon {
    width: 45px;
    height: 45px;
  }
  
  .social-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .hero__text { margin-top: 1.2rem; }
  .hero__title { font-size: clamp(1.4rem, 6vw, 2rem); gap: 0.5rem; }
  .animated-word { min-width: 180px; height: 3rem; line-height: 3rem; font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .intro__card { padding: 1rem 0.75rem; }
  .container { width: min(1120px, 95%); }
  .section-title { margin-bottom: 1.5rem; }
}

@media (max-width: 360px) {
  .animated-word { min-width: 150px; height: 2.6rem; line-height: 2.6rem; font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
  .container { width: min(1120px, 98%); }
}

/* Reduced motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero__slide {
    transition: none !important;
  }
  .switch__indicator::before {
    animation: none !important;
  }
  .bubble {
    animation: none !important;
  }
}

/* Accessibility & helpers */
:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
