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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile: Container más estricto */
@media (max-width: 767px) {
  .container {
    padding: 0 0.75rem;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  margin: 15% auto;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.close {
  color: rgba(255, 255, 255, 0.6);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #fff;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #fff;
}

.modal-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-link {
  color: #67e8f9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.modal-link:hover {
  color: #a855f7;
}

/* QR Modal Styles */
.qr-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.qr-modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.qr-close {
  color: rgba(255, 255, 255, 0.6);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.qr-close:hover,
.qr-close:focus {
  color: #fff;
}

#qrcode {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

#qrcode canvas {
  border-radius: 0.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  flex-shrink: 0;
}

.logo-image {
  width: 210%;
  height: 210%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Mobile: Ajustar header */
@media (max-width: 767px) {
  .brand-name {
    font-size: 1rem;
  }

  .logo-container {
    width: 2rem;
    height: 2rem;
  }
}

/* Desktop Navigation */
.nav-menu {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: #06b6d4;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Desktop Only Elements */
.desktop-only {
  display: none;
}

/* Language Button */
.lang-button {
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.lang-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.globe-icon {
  width: 1rem;
  height: 1rem;
}

/* CTA Button */
.cta-button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #e5e5e5;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hamburger-line {
  width: 1.5rem;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

/* Hamburger animation */
.mobile-menu-button.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.3rem, 0.3rem);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding-top: 6rem;
  display: block;
  overflow-x: hidden;
}

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

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  height: calc(100% - 6rem);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
  word-wrap: break-word;
}

.mobile-nav-link:hover {
  color: #67e8f9;
}

.mobile-nav-actions {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.mobile-lang-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.mobile-lang-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
  background: #fff;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.mobile-cta-button:hover {
  background: #e5e5e5;
}

/* Hero Section - Sin overflow horizontal */
.hero-section {
  padding-top: calc(1rem * 2 + 48px);
  position: relative;
  min-height: 100vh;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 0;
  width: 100%;
  max-width: 100vw;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Mobile: Video sin overflow */
@media (max-width: 767px) {
  .hero-section {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero-background {
    left: 0;
    right: 0;
    margin: 0;
    width: 100vw;
    max-width: 100vw;
  }

  .hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    max-width: 100vw;
  }
}

/* Las estrellas siguen estando encima del video */
.hero-background .star {
  position: absolute;
  z-index: 1;
}

/* Contenido visible encima de todo */
.hero-container,
.hero-content {
  position: relative;
  z-index: 2;
}

/* Animated Stars */
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

.star-1 {
  top: 20%;
  left: 10%;
  width: 2px;
  height: 2px;
  animation-delay: 0s;
}
.star-2 {
  top: 30%;
  left: 20%;
  width: 1px;
  height: 1px;
  animation-delay: 0.5s;
}
.star-3 {
  top: 15%;
  right: 25%;
  width: 3px;
  height: 3px;
  animation-delay: 1s;
}
.star-4 {
  top: 40%;
  right: 15%;
  width: 2px;
  height: 2px;
  animation-delay: 1.5s;
}
.star-5 {
  bottom: 30%;
  left: 15%;
  width: 1px;
  height: 1px;
  animation-delay: 2s;
}
.star-6 {
  bottom: 20%;
  right: 30%;
  width: 2px;
  height: 2px;
  animation-delay: 2.5s;
}
.star-7 {
  top: 60%;
  left: 50%;
  width: 1px;
  height: 1px;
  animation-delay: 3s;
}
.star-8 {
  bottom: 40%;
  right: 50%;
  width: 2px;
  height: 2px;
  animation-delay: 0.8s;
}

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

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

/* Mobile: Hero container sin overflow */
@media (max-width: 767px) {
  .hero-container {
    padding: 0.75rem;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

.hero-content {
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-headline {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  word-wrap: break-word;
  hyphens: auto;
}

/* Mobile: Título más pequeño */
@media (max-width: 767px) {
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.1;
  }
}

.hero-title-main {
  display: block;
  background: linear-gradient(to right, #fff, #67e8f9, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-sub {
  display: block;
  background: linear-gradient(to right, #fff, #67e8f9, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
}

/* Mobile: Descripción más pequeña */
@media (max-width: 767px) {
  .hero-description {
    font-size: 0.9rem;
  }
}

.hero-tagline {
  display: block;
  margin-top: 1rem;
  color: #67e8f9;
  font-size: 1rem;
  font-weight: 600;
  word-wrap: break-word;
}

/* Mobile: Tagline más pequeño */
@media (max-width: 767px) {
  .hero-tagline {
    font-size: 0.9rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 100%;
}

.hero-cta-primary,
.hero-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  max-width: 280px;
  border: none;
  box-sizing: border-box;
  white-space: nowrap;
}

/* Mobile: Botones más pequeños */
@media (max-width: 767px) {
  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    max-width: 250px;
  }
}

.hero-cta-primary {
  background: #fff;
  color: #000;
}

.hero-cta-primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

.hero-cta-secondary {
  background: rgba(0, 0, 0, 0.5);
  color: #67e8f9;
  border: 2px solid #67e8f9;
  backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
  background: #67e8f9;
  color: #000;
}

.upload-icon,
.arrow-icon,
.play-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.step {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.step-icon-ai {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(147, 51, 234, 0.3));
  border-color: rgba(6, 182, 212, 0.3);
}

.step-icon-interactive {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.3));
  border-color: rgba(147, 51, 234, 0.3);
}

.ai-cube {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #67e8f9, #a855f7);
  border-radius: 0.5rem;
}

.interactive-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #fff;
  border-radius: 0.25rem;
  animation: spin 2s linear infinite;
}

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

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
}

.step-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  word-wrap: break-word;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #000, #111827);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .how-it-works-section {
    padding: 3rem 0;
  }
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.how-it-works-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #67e8f9, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  z-index: 10;
}

.step-content {
  text-align: center;
  padding-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.step-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  word-wrap: break-word;
}

.step-visual {
  width: 100%;
  box-sizing: border-box;
}

.step-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  max-width: 100%;
}

/* Model Viewer Container */
.model-viewer-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #111827);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-model-viewer {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 1rem;
}

/* AR Button Styles */
.ar-button {
  background: linear-gradient(135deg, #67e8f9, #a855f7);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 20px;
  padding: 12px 24px 12px 44px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  height: 44px;
  line-height: 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.ar-button:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 232, 249, 0.4);
}

.ar-button:active {
  transform: translateX(-50%) translateY(0);
}

.ar-button:focus {
  outline: none;
}

.ar-button:focus-visible {
  outline: 2px solid #67e8f9;
}

/* AR Prompt Animation */
@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes elongate {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(-100px);
  }
}

.ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 80px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
  z-index: 99;
}

model-viewer[ar-status="session-started"] .ar-prompt {
  display: block;
}

.ar-prompt img {
  animation: circle 4s linear infinite;
  width: 50px;
  height: 50px;
}

.ar-failure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  display: none;
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  border: none;
  z-index: 99;
}

model-viewer[ar-tracking="not-tracking"] .ar-failure {
  display: block;
}

/* Fullscreen Button */
.fullscreen-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100;
}

.fullscreen-button:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: #67e8f9;
}

.fullscreen-button svg {
  width: 20px;
  height: 20px;
}

/* Mobile: Ajustes para how it works */
@media (max-width: 767px) {
  .how-it-works-grid {
    gap: 3rem;
  }

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

  .step-description {
    font-size: 0.9rem;
  }

  .model-viewer-container {
    height: 300px;
  }

  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* Desktop: Layout horizontal para how it works */
@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .how-it-works-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-content {
    text-align: center;
  }

  .model-viewer-container {
    height: 350px;
  }
}

/* Features Grid Section - Sin overflow */
.features-grid-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #000, #111827);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .features-grid-section {
    padding: 3rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile: Margen reducido */
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  hyphens: auto;
}

/* Mobile: Título más pequeño */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.title-gradient {
  background: linear-gradient(to right, #fff, #67e8f9, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin: 0 auto;
  word-wrap: break-word;
}

/* Mobile: Subtítulo más pequeño */
@media (max-width: 767px) {
  .section-subtitle {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Feature Card Colors */
.feature-card-1 {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.05));
  border-color: rgba(139, 69, 19, 0.2);
}

.feature-card-2 {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.05));
  border-color: rgba(255, 20, 147, 0.2);
}

.feature-card-3 {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
  border-color: rgba(0, 191, 255, 0.2);
}

.feature-card-4 {
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), rgba(34, 139, 34, 0.05));
  border-color: rgba(50, 205, 50, 0.2);
}

.feature-card-5 {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
  border-color: rgba(255, 165, 0, 0.2);
}

.feature-card-6 {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.05));
  border-color: rgba(138, 43, 226, 0.2);
}

.feature-card-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.feature-card-icon-container svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
}

.feature-card-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.875rem;
  word-wrap: break-word;
}

/* Detailed Features Section - Sin overflow */
.detailed-features-container {
  background: #000;
  width: 100%;
  overflow-x: hidden;
}

.feature-detail-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #000 0%, rgba(17, 24, 39, 0.5) 50%, #000 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .feature-detail-section {
    padding: 2rem 0;
  }
}

.feature-detail-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feature-detail-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: 50%;
  filter: blur(100px);
  top: 50%;
  transform: translateY(-50%);
}

.blob-right {
  right: -150px;
}

.blob-left {
  left: -150px;
}

.feature-detail-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.05), rgba(168, 85, 247, 0.05));
  border-radius: 50%;
  filter: blur(50px);
  top: 20%;
}

.accent-right {
  right: 10%;
}

.accent-left {
  left: 10%;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
}

.feature-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.feature-detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-detail-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.feature-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  word-wrap: break-word;
  hyphens: auto;
}

/* Mobile: Título más pequeño */
@media (max-width: 767px) {
  .feature-detail-title {
    font-size: 1.25rem;
  }
}

.feature-detail-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
}

/* Mobile: Descripción más pequeña */
@media (max-width: 767px) {
  .feature-detail-description {
    font-size: 0.9rem;
  }
}

.feature-detail-details {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.feature-detail-benefits {
  list-style: none;
  padding: 0;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.benefit-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #67e8f9;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  word-wrap: break-word;
  flex: 1;
}

.feature-detail-mockup {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1f2937, #111827);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Imágenes sin overflow */
.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-width: 100%;
}

.feature-image video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-width: 100%;
}

/* Mobile: Imágenes ocupan más espacio sin overflow */
@media (max-width: 767px) {
  .feature-detail-mockup {
    min-height: 250px;
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
  }

  .feature-image,
  .feature-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    max-width: 100%;
  }
}

/* Analytics Section - Sin overflow */
.analytics-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #000, #111827);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .analytics-section {
    padding: 3rem 0;
  }
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.analytics-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.analytics-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.analytics-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin: 0 auto 1rem;
}

.analytics-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.analytics-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
}

.analytics-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.875rem;
  word-wrap: break-word;
}

/* Platforms Section - Sin overflow */
.platforms-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #000, #111827);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .platforms-section {
    padding: 3rem 0;
  }
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.platform-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .platform-item {
    padding: 1rem;
  }
}

.platform-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.platform-logo {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
  transition: filter 0.3s ease;
}

/* Mobile: Logo más pequeño */
@media (max-width: 767px) {
  .platform-logo {
    max-width: 80px;
    max-height: 40px;
  }
}

.platform-item:hover .platform-logo {
  filter: brightness(1) contrast(1);
}

/* Pricing Section - Sin overflow */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .pricing-section {
    padding: 3rem 0;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-popular {
  border: 2px solid rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
  margin-top: 2.5rem;
}

.pricing-badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #67e8f9, #a855f7);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(103, 232, 249, 0.3);
}

.star-icon {
  width: 1rem;
  height: 1rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
}

.pricing-plan-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  word-wrap: break-word;
}

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.pricing-period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  width: 100%;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  width: 100%;
  box-sizing: border-box;
}

.check-icon {
  width: 1rem;
  height: 1rem;
  color: #67e8f9;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-feature span {
  word-wrap: break-word;
  flex: 1;
}

.pricing-button {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-sizing: border-box;
}

.pricing-button-primary {
  background: linear-gradient(135deg, #67e8f9, #a855f7);
  color: #fff;
}

.pricing-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(103, 232, 249, 0.3);
}

.pricing-button-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-button-secondary:hover {
  border-color: #67e8f9;
  color: #67e8f9;
}

/* Addons Section - Sin overflow */
.addons-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #111827, #000);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .addons-section {
    padding: 3rem 0;
  }
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.addon-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.addon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.addon-card-popular {
  border: 2px solid rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
  margin-top: 2.5rem;
}

.addon-badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #67e8f9, #a855f7);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(103, 232, 249, 0.3);
}

.addon-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  margin-top: 1rem;
  word-wrap: break-word;
}

.addon-price {
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.addon-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
}

.addon-period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 0.25rem;
}

.addon-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  word-wrap: break-word;
}

.addon-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.addon-button:hover {
  border-color: #67e8f9;
  color: #67e8f9;
}

/* Transform Section - Sin overflow */
.transform-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #000, #111827);
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .transform-section {
    padding: 3rem 0;
  }
}

.transform-content {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.transform-icon {
  margin-bottom: 1.5rem;
}

.lightning-icon {
  width: 3rem;
  height: 3rem;
  color: #fff;
}

.transform-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  hyphens: auto;
}

/* Mobile: Título más pequeño */
@media (max-width: 767px) {
  .transform-title {
    font-size: 1.5rem;
  }
}

.transform-title-main {
  color: #fff;
}

.transform-title-gradient {
  background: linear-gradient(to right, #67e8f9, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.transform-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
  word-wrap: break-word;
}

/* Mobile: Descripción más pequeña */
@media (max-width: 767px) {
  .transform-description {
    font-size: 0.9rem;
  }
}

.transform-highlight {
  color: #67e8f9;
}

.transform-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.transform-button-primary,
.transform-button-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
  border: none;
  box-sizing: border-box;
  white-space: nowrap;
}

/* Mobile: Botones más pequeños */
@media (max-width: 767px) {
  .transform-button-primary,
  .transform-button-secondary {
    padding: 0.875rem 1.5rem;
    max-width: 250px;
  }
}

.transform-button-primary {
  background: linear-gradient(135deg, #67e8f9, #ec4899);
  color: #fff;
}

.transform-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(103, 232, 249, 0.3);
}

.transform-button-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.transform-button-secondary:hover {
  border-color: #67e8f9;
  color: #67e8f9;
}

/* Footer - Sin overflow */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* Mobile: Padding reducido */
@media (max-width: 767px) {
  .footer {
    padding: 2rem 0 1rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-container {
  width: 2rem;
  height: 2rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 0.875rem;
  word-wrap: break-word;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.footer-links {
  list-style: none;
  padding: 0;
  width: 100%;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
  word-wrap: break-word;
}

.footer-links a:hover {
  color: #06b6d4;
}

/* Responsive Styles */
@media (min-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .desktop-only {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: auto;
    max-width: none;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-reversed .feature-detail-content {
    order: 2;
  }

  .feature-reversed .feature-detail-visual {
    order: 1;
  }

  .analytics-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    margin-top: 2rem;
  }

  .pricing-card-popular {
    margin-top: 2.5rem;
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addon-card {
    margin-top: 2rem;
  }

  .addon-card-popular {
    margin-top: 2.5rem;
  }

  .transform-buttons {
    flex-direction: row;
  }

  .transform-button-primary,
  .transform-button-secondary {
    width: auto;
    max-width: none;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card {
    margin-top: 1.5rem;
  }

  .pricing-card-popular {
    margin-top: 2rem;
  }

  .addons-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .addon-card {
    margin-top: 1.5rem;
  }

  .addon-card-popular {
    margin-top: 2rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }
}
