:root {
  --primary-color: #ff751a;
  --primary-dark: #ff8f37;
  --secondary-color: #ffb870;
  --background-light: #fff7ed;
  --background-medium: #ffecd4;
  --background-dark: #ffd6a8;
  --text-dark: #333;
  --text-medium: #666;
  --text-light: #999;
  --white: #ffffff;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --gradient-1: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --gradient-2: linear-gradient(
    45deg,
    var(--background-medium) 0%,
    var(--background-dark) 100%
  );
  --gradient-3: linear-gradient(225deg, #ff751a 0%, #ffb870 50%, #ff8f37 100%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes wave {
  0%,
  100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes morphing {
  0%,
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.animate-slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.animate-slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.animate-scale.animate {
  opacity: 1;
  transform: scale(1);
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade.animate {
  opacity: 1;
}

.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 117, 26, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 184, 112, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 143, 55, 0.05) 0%,
      transparent 50%
    );
  animation: morphing 20s ease-in-out infinite;
  z-index: 0;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-shapes::before,
.floating-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 117, 26, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-shapes::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shapes::after {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.header {
  background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.1) 1px,
      rgba(255, 255, 255, 0.1) 2px
    );
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.1) 1px,
      rgba(255, 255, 255, 0.1) 2px
    );
  box-shadow: var(--shadow-md), 0 0 20px rgba(255, 117, 26, 0.3);
  backdrop-filter: blur(10px);
}

.header-hidden {
  transform: translateY(-100%);
}

.header-visible {
  transform: translateY(0);
}

.hero {
  background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 184, 112, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 143, 55, 0.2) 0%,
      transparent 50%
    );
  background-size: 100% 100%, 400% 400%, 300% 300%;
  animation: gradientShift 12s ease infinite;
  color: var(--white);
  padding: 6rem 0 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 300px;
  background-color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  transition: right 0.3s ease;
  z-index: 1001;
}

.nav-menu.active {
  right: 0;
}

@media (max-width: 768px) {
  .header {
    transition: transform 0.25s ease-out;
  }

  .hero {
    padding-top: 5rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 7rem 0 4rem;
    min-height: 90vh;
  }
}

.navbar {
  padding: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo h1 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.logo-subtitle {
  color: var(--background-medium);
  font-size: 0.8rem;
  font-weight: 300;
  display: block;
  margin-top: -5px;
}

#mobile-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 300px;
  background-color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  transition: right 0.3s ease;
  z-index: 1001;
}

.nav-menu.active {
  right: 0;
}

.nav-item {
  margin: 1rem 0;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.865rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--background-medium);
}

.hero {
  background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 184, 112, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 143, 55, 0.2) 0%,
      transparent 50%
    );
  background-size: 100% 100%, 400% 400%, 300% 300%;
  animation: gradientShift 12s ease infinite;
  color: var(--white);
  padding: 6rem 0 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.05)
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-box:nth-child(2) {
  animation-delay: 1s;
}

.stat-box:nth-child(3) {
  animation-delay: 2s;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: rgba(245, 246, 239, 0.95);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(255, 117, 26, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  width: 100%;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.device-mockup {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.05)
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  position: relative;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.device-mockup::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(255, 117, 26, 0.5),
    rgba(255, 184, 112, 0.5),
    rgba(255, 143, 55, 0.5)
  );
  border-radius: var(--border-radius-lg);
  z-index: -1;
  animation: gradientShift 8s ease infinite;
}

.screen-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1rem;
  min-height: 200px;
}

.app-interface {
  height: 100%;
}

.interface-header {
  background-color: var(--primary-color);
  height: 40px;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.interface-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.grid-item {
  background-color: var(--background-medium);
  height: 60px;
  border-radius: var(--border-radius);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 117, 26, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 184, 112, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-highlight {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 117, 26, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.feature-highlight:hover::before {
  left: 100%;
}

.feature-highlight h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-highlight p {
  color: var(--text-medium);
  margin: 0;
}

.services {
  padding: 5rem 0;
  background: linear-gradient(
      135deg,
      var(--background-medium) 0%,
      var(--background-dark) 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(255, 117, 26, 0.03) 100px,
      rgba(255, 117, 26, 0.03) 200px
    );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 150%;
  height: 100%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 117, 26, 0.02) 30deg,
    transparent 60deg
  );
  animation: rotate 60s linear infinite;
  z-index: 0;
  transform-origin: center;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: linear-gradient(
    145deg,
    var(--white) 0%,
    rgba(245, 246, 239, 0.9) 100%
  );
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 117, 26, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 117, 26, 0.3);
}

.service-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: var(--text-medium);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.features {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 117, 26, 0.15) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.feature-card {
  background: linear-gradient(
    145deg,
    var(--background-light) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 117, 26, 0.1);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-dark)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 0 15px rgba(255, 117, 26, 0.2);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-title {
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.feature-description {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.pricing {
  padding: 5rem 0;
  background: linear-gradient(
      135deg,
      var(--background-medium) 0%,
      var(--background-dark) 100%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 117, 26, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 184, 112, 0.1) 0%,
      transparent 50%
    );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255, 117, 26, 0.02) 50px,
    rgba(255, 117, 26, 0.02) 100px
  );
  animation: wave 20s linear infinite;
  z-index: 0;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.pricing-card {
  background: linear-gradient(
    145deg,
    var(--white) 0%,
    rgba(245, 246, 239, 0.95) 100%
  );
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 117, 26, 0.3),
    rgba(255, 184, 112, 0.3),
    rgba(255, 143, 55, 0.3)
  );
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
  animation: pulse 2s ease-in-out infinite;
}

.pricing-card.featured::before {
  opacity: 1;
  animation: gradientShift 3s ease infinite;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header {
  padding: 2rem;
  text-align: center;
  background-color: var(--background-light);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--text-medium);
  vertical-align: text-bottom;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--text-medium);
}

.plan-description {
  color: var(--text-medium);
  margin: 0;
}

.plan-features {
  padding: 2rem;
}

.plan-features ul {
  list-style: none;
}

.feature-included {
  padding: 0.75rem 0;
  color: var(--text-medium);
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid var(--background-light);
}

.feature-included::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.plan-action {
  padding: 0 2rem 2rem;
}

.pricing-footer {
  text-align: center;
}

.payment-methods {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.link-secondary {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.link-secondary:hover {
  text-decoration: underline;
}

.installation {
  padding: 5rem 0;
  background-color: var(--white);
  overflow: hidden;
  width: 100%;
}

.platform-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-button {
  background-color: var(--background-light);
  color: var(--primary-dark);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.tab-button.active::before,
.tab-button:hover::before {
  left: 0;
}

.tab-button.active {
  color: var(--primary-color);
}

.tab-button:hover {
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.installation-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.card-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.difficulty-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.difficulty-badge.easy {
  background-color: #4caf50;
}

.difficulty-badge.medium {
  background-color: #ff9800;
}

.difficulty-badge.hard {
  background-color: #f44336;
}

.requirements,
.installation-steps {
  padding: 2rem;
  border-bottom: 1px solid var(--background-medium);
}

.requirements h4,
.installation-steps h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.requirements ul,
.installation-steps ol {
  margin-left: 1.5rem;
}

.requirements li,
.installation-steps li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.installation-steps li {
  margin-bottom: 1rem;
}

.installation-steps strong {
  color: var(--primary-dark);
}

.installation-options {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.option-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--background-medium);
  transition: var(--transition);
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.option-card h5 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.download-section {
  padding: 2rem;
  text-align: center;
  background-color: var(--white);
}

.download-btn {
  margin-bottom: 1rem;
  width: 100%;
}

.download-info {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
}

.faq {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--background-medium) 0%,
    var(--background-dark) 100%
  );
  position: relative;
  overflow: hidden;
  width: 100%;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0px,
    rgba(255, 117, 26, 0.03) 50px,
    transparent 100px
  );
  animation: pulse 10s ease-in-out infinite;
  z-index: 0;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.category-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--primary-dark);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.support {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.support .container {
  position: relative;
  z-index: 1;
}

.support-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.support-card {
  background: linear-gradient(
    145deg,
    var(--background-light) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 117, 26, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.6s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.support-card:hover::before {
  width: 200%;
  height: 200%;
}

.support-card > * {
  position: relative;
  z-index: 1;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.support-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.support-content h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.support-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
  display: block;
}

.contact-info span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.support-features {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--background-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.feature-item .feature-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-item span {
  color: var(--text-medium);
  font-weight: 500;
}

.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #ff9900 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(156, 167, 116, 0.1) 2px,
      rgba(156, 167, 116, 0.1) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(156, 167, 116, 0.1) 2px,
      rgba(156, 167, 116, 0.1) 4px
    );
  background-size: 100% 100%, 20px 20px, 20px 20px;
  color: var(--white);
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(127, 140, 86, 0.1) 50%,
    transparent 100%
  );
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--background-medium);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.brand-tagline {
  color: var(--background-dark);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.brand-description {
  color: var(--background-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--background-dark);
  transition: var(--transition);
  padding: 0.5rem;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-section h4 {
  color: var(--background-medium);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--background-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-disclaimer {
  background-color: var(--primary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.disclaimer-content h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-content p {
  color: var(--background-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid var(--primary-color);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--background-medium);
  text-align: center;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.security-badge,
.uptime-badge {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  #mobile-menu {
    display: none;
  }

  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    flex-direction: row;
    gap: 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .floating-shapes::before {
    width: 150px;
    height: 150px;
  }

  .floating-shapes::after {
    width: 200px;
    height: 200px;
  }

  .about-content {
    grid-template-columns: 2fr 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .installation-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 7rem 0 4rem;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

.nav-menu.active ~ #mobile-menu .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-menu.active ~ #mobile-menu .bar:nth-child(2) {
  opacity: 0;
}

.nav-menu.active ~ #mobile-menu .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale,
  .animate-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}

/* ===== SISTEMA DE NOTIFICACIONES ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 320px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transform: translateX(120%);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 117, 26, 0.2);
  backdrop-filter: blur(20px);
}

.notification-info {
  background: linear-gradient(
    145deg,
    var(--background-light) 0%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
}
.notification.success {
  background: linear-gradient(
    145deg,
    #e8f5e9 0%,
    rgba(245, 246, 239, 0.9) 100%
  );
}

.notification.show {
  transform: translateX(0);
}

.notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-dark)
  );
  animation: gradientShift 3s ease infinite;
}

.notification-content {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.notification-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--primary-color);
  box-shadow: 0 4px 12px rgba(156, 167, 116, 0.3);
}

.notification-icon.success {
  background: linear-gradient(135deg, #4caf50, #45a049);
}

.notification-icon.error {
  background: linear-gradient(135deg, #f44336, #d32f2f);
}

.notification-icon.warning {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.notification-icon.info {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.notification-body {
  flex: 1;
}

.notification-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.notification-message {
  font-size: 0.9rem;
  color: var(--primary-color);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.notification-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.notification-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.notification-btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.notification-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.notification-btn-secondary {
  background: var(--background-light);
  color: var(--text-medium);
  border: 1px solid var(--background-medium);
}

.notification-btn-secondary:hover {
  background: var(--background-medium);
  color: var(--text-dark);
}

.notification-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-medium);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.notification-close:hover {
  background: var(--background-light);
  color: var(--text-dark);
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary-color);
  animation: notificationProgress 5s linear;
  opacity: 0.7;
}

@keyframes notificationProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

.notification.success::before {
  background: linear-gradient(90deg, #4caf50, #45a049, #4caf50);
}

.notification.error::before {
  background: linear-gradient(90deg, #f44336, #d32f2f, #f44336);
}

.notification.warning::before {
  background: linear-gradient(90deg, #ff9800, #f57c00, #ff9800);
}

.notification.info::before {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-dark)
  );
}

@media (max-width: 480px) {
  .notification {
    left: 10px;
    right: 10px;
    top: 10px;
    min-width: auto;
    max-width: none;
    transform: translateY(-120%);
  }

  .notification.show {
    transform: translateY(0);
  }

  .notification-content {
    padding: 1rem;
  }

  .notification-actions {
    flex-direction: column;
  }

  .notification-btn {
    width: 100%;
    justify-content: center;
  }
}

.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.notification-container .notification {
  position: relative;
  top: auto;
  right: auto;
  pointer-events: all;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.device-showcase {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.device-frame {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.device-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.app-screenshot {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.device-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.9);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.quality-badge {
  background: rgba(255, 117, 26, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.app-gallery {
  position: relative;
  max-width: 350px;
  width: 100%;
}

.screenshot-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.screenshot {
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 0.5s ease;
}

.screenshot.active {
  display: block;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.multi-device-showcase {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}

.device {
  position: relative;
  transition: transform 0.3s ease;
}

.device:hover {
  transform: translateY(-10px);
}

.device.mobile {
  width: 120px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.device.tablet {
  width: 180px;
  background: #1a1a1a;
  border-radius: 15px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.device.tv {
  width: 220px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.device.tv::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #333;
  border-radius: 0 0 10px 10px;
}

.device-screen {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.device-showcase {
  animation: deviceFloat 4s ease-in-out infinite;
}

.app-gallery {
  animation: deviceFloat 6s ease-in-out infinite;
}

.multi-device-showcase .device:nth-child(1) {
  animation: deviceFloat 3s ease-in-out infinite;
}

.multi-device-showcase .device:nth-child(2) {
  animation: deviceFloat 4s ease-in-out infinite 0.5s;
}

.multi-device-showcase .device:nth-child(3) {
  animation: deviceFloat 5s ease-in-out infinite 1s;
}

@media (max-width: 768px) {
  .multi-device-showcase {
    flex-direction: column;
    gap: 15px;
  }

  .device.mobile {
    width: 100px;
  }
  .device.tablet {
    width: 150px;
  }
  .device.tv {
    width: 180px;
  }

  .device-showcase {
    max-width: 300px;
  }

  .app-gallery {
    max-width: 280px;
  }
}
