:root {
  --amarillo-pastel: #F3E495;
  --marron-pollada: #5F2010;
  --negro-quemado: #1B0E0B;
  --amarillo-dorado: #EECB3D;
  --naranja-pollero: #CE8034;
  --blanco: #FEFEFE;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--blanco);
  color: var(--negro-quemado);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px; /* Ajusta según necesites */
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Para logo responsivo */
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--negro-quemado);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--naranja-pollero);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--amarillo-pastel) 0%, var(--amarillo-dorado) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%23CE8034" opacity="0.1"/><circle cx="75" cy="75" r="3" fill="%235F2010" opacity="0.1"/><circle cx="50" cy="10" r="1.5" fill="%23CE8034" opacity="0.1"/></svg>') repeat;
  animation: float 20s ease-in-out infinite;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.tag {
  display: inline-block;
  background: var(--marron-pollada);
  color: var(--blanco);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--negro-quemado);
}

.hero p {
  font-size: 1.2rem;
  color: var(--marron-pollada);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--naranja-pollero), var(--amarillo-dorado));
  color: var(--blanco);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(206, 128, 52, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(206, 128, 52, 0.4);
}

.hero-visual {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.phone-mockup {
  width: 100%;
  max-width: 400px;
  height: 600px;
  background: var(--negro-quemado);
  border-radius: 40px;
  padding: 20px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000, var(--negro-quemado));
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.screen-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Nuevo estilo para el mapa del phone */
.map-header {
  text-align: center;
  margin-bottom: 1rem;
}

.map-header h3 {
  font-size: 1.1rem;
  color: var(--negro-quemado);
  margin-bottom: 0.5rem;
}

.location-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--naranja-pollero);
  font-size: 0.8rem;
}

.map-container {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.map-background {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  position: relative;
}

/* Calles del mapa */
.street {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.street.horizontal {
  height: 3px;
}

.street.vertical {
  width: 3px;
}

/* Marcadores de polladas */
.pollada-marker {
  position: absolute;
  width: 35px;
  height: 35px;
  background: var(--naranja-pollero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(206, 128, 52, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.pollada-marker.active {
  background: var(--amarillo-dorado);
  color: var(--negro-quemado);
  transform: scale(1.2);
  animation: bounce 1s ease-in-out infinite;
}

.pollada-marker:hover {
  transform: scale(1.3);
}

.marker-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blanco);
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 0.65rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.marker-popup span {
  display: block;
  font-weight: 600;
  color: var(--negro-quemado);
}

.marker-popup small {
  color: var(--marron-pollada);
}

.pollada-marker:hover .marker-popup {
  opacity: 1;
}

/* Ubicación del usuario */
.user-location {
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-pulse {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #2196F3;
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
}

.user-location i {
  color: #2196F3;
  font-size: 0.8rem;
  z-index: 2;
}

/* Lista de polladas */
.polladas-list {
  background: var(--blanco);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pollada-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pollada-item.featured {
  background: var(--amarillo-pastel);
}

.pollada-icon {
  font-size: 1.2rem;
}

.pollada-info {
  flex: 1;
}

.pollada-info h4 {
  font-size: 0.9rem;
  color: var(--negro-quemado);
  margin-bottom: 0.2rem;
}

.pollada-info p {
  font-size: 0.7rem;
  color: var(--marron-pollada);
}

.pollada-rating {
  font-size: 0.8rem;
  color: var(--amarillo-dorado);
  font-weight: 600;
}

.distance {
  font-size: 0.7rem;
  color: var(--naranja-pollero);
  background: rgba(206, 128, 52, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  background: var(--blanco);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--negro-quemado);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--naranja-pollero);
  margin-bottom: 1rem;
}

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

.feature-card p {
  color: var(--marron-pollada);
  line-height: 1.6;
}

/* Steps Section */
.steps {
  padding: 6rem 2rem;
  background: var(--blanco);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--negro-quemado);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--blanco);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amarillo-dorado), var(--naranja-pollero));
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--amarillo-pastel), var(--amarillo-dorado));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--marron-pollada);
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--negro-quemado);
}

.step-card p {
  color: var(--marron-pollada);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--amarillo-pastel) 0%, rgba(243, 228, 149, 0.3) 100%);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.benefit-card {
  background: var(--blanco);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--naranja-pollero);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--blanco);
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--negro-quemado);
}

.benefit-card p {
  color: var(--marron-pollada);
  line-height: 1.6;
}

/* Problem Solution Section */
.problem-solution {
  padding: 4rem 2rem;
  background: var(--marron-pollada);
  color: var(--blanco);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.problem-item {
  background: rgba(254, 254, 254, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
  background: rgba(254, 254, 254, 0.15);
}

.problem-item.solution {
  background: var(--amarillo-dorado);
  color: var(--negro-quemado);
}

.problem-item.solution:hover {
  background: var(--amarillo-pastel);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.problem-item.solution p {
  opacity: 1;
  font-weight: 500;
}

/* Plans Section */
.plans {
  padding: 6rem 2rem;
  background: var(--blanco);
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.plan-card {
  background: var(--blanco);
  border: 2px solid var(--amarillo-pastel);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card.premium {
  border-color: var(--naranja-pollero);
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(206, 128, 52, 0.2);
}

.plan-card.premium::before {
  content: '🏆 Más Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--naranja-pollero);
  color: var(--blanco);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--negro-quemado);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--naranja-pollero);
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  color: var(--marron-pollada);
}

/* Carrusel Styles */

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.carousel-slide.active {
  opacity: 1;
}

.screenshot-item {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 100%;
}

.celular-mockup {
  flex-shrink: 0;
  width: 240px;
  height: 450px;
  background: #333;
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.celular-mockup img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.slide-content {
  flex: 1;
  padding-left: 20px;
}

.slide-content h3 {
  font-size: 2rem;
  color: var(--marron-pollada);
  margin-bottom: 20px;
  font-weight: 700;
}

.slide-content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/*Galeria */
.tabs-gallery {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.tabs-header {
  display: flex;
  background: linear-gradient(135deg, #5F2010 0%, #CE8034 100%);
  overflow-x: auto;
}

.tab-button {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  min-width: 200px;
}

.tab-button.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.tabs-content {
  padding: 40px;
  min-height: 500px;
}

.tab-panel {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  max-width: 250px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.05) rotateY(5deg);
}

.feature-info {
  flex: 1;
}

.feature-info h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-info p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, #CE8034, #5F2010);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .feature-image img {
    max-width: 200px;
  }

  .tabs-content {
    padding: 30px 20px;
  }

  .tab-button {
    padding: 15px;
    font-size: 0.9rem;
    min-width: 150px;
  }

  .feature-info h3 {
    font-size: 1.6rem;
    justify-content: center;
  }
}

/* Indicador de progreso */
.progress-bar {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: white;
  width: 33.33%;
  transition: transform 0.3s ease;
  transform: translateX(0);
}

  .progress-fill.tab-1 { transform: translateX(0); }
  .progress-fill.tab-2 { transform: translateX(100%); }
  .progress-fill.tab-3 { transform: translateX(200%); }

video {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: block;
  margin: 0 auto;
}

/* Mission Section */
.mission {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--amarillo-pastel) 0%, rgba(243, 228, 149, 0.3) 100%);
}

.mission-card {
  max-width: 900px;
  margin: 4rem auto 0;
  position: relative;
}

.mission-content {
  background: var(--blanco);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mission-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: var(--amarillo-dorado);
  font-family: Georgia, serif;
}

.mission-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--marron-pollada);
}

.mission-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--negro-quemado);
}

/* FAQ Section */
.faq {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--amarillo-pastel) 0%, rgba(243, 228, 149, 0.3) 100%);
}

.faq-grid {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--blanco);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blanco);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--naranja-pollero);
}

.faq-question h4 {
  color: var(--negro-quemado);
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--negro-quemado);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--marron-pollada);
  line-height: 1.6;
}

/* CTA Final */
.cta-final {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--marron-pollada) 0%, var(--negro-quemado) 100%);
  color: var(--blanco);
  text-align: center;
}

.cta-final h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--negro-quemado);
  color: var(--blanco);
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-button:hover {
  background: var(--amarillo-dorado);
  color: var(--negro-quemado);
}

/* Footer */
.footer {
  background: var(--negro-quemado);
  color: var(--negro-quemado);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--amarillo-dorado);
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: rgba(254, 254, 254, 0.8);
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--amarillo-dorado);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(254, 254, 254, 0.2);
  color: rgba(254, 254, 254, 0.6);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(206, 128, 52, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(206, 128, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(206, 128, 52, 0); }
}

@keyframes slideInDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-10px); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .phone-mockup {
    max-width: 300px;
    height: 500px;
  }

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

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-item.reverse {
    direction: ltr;
  }

  .plan-card.premium {
    transform: none;
  }

  .steps-grid, .benefit-cards {
    grid-template-columns: 1fr;
  }
}