/* ========================================
   PHONE SHOWCASE - Zigzag Layout
   ======================================== */

.phone-showcase {
  padding: 6rem 2rem;
  background: transparent;
}

.phone-showcase .section-heading {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.phone-showcase__grid {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

/* Phone Item - Base Styles */
.phone-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

/* Zigzag Pattern - Left */
.phone-item--left .phone-item__image {
  order: 1;
}

.phone-item--left .phone-item__content {
  order: 2;
}

/* Zigzag Pattern - Right */
.phone-item--right .phone-item__image {
  order: 2;
}

.phone-item--right .phone-item__content {
  order: 1;
}

/* Phone Image Container */
.phone-item__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-item__image img {
  width: 140%;
  max-width: none;
  height: auto;
  display: block;
  transform: scale(1.8);
  transform-origin: center;
}

/* Phone Content */
.phone-item__content {
  padding: 1rem;
}

.phone-item__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(127, 91, 255, 0.15), rgba(25, 242, 140, 0.15));
  border: 1px solid rgba(127, 91, 255, 0.3);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.phone-item__content h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.phone-item__content > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.phone-item__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-item__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  padding-left: 0;
}

.phone-item__features li::before {
  content: none;
}

/* Phone Showcase CTA */
.phone-showcase__cta {
  max-width: 700px;
  margin: 6rem auto 0;
  text-align: center;
  padding: 3rem;
  border-radius: 1.5rem;
  background: transparent;
  border: none;
}

.phone-showcase__cta h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phone-showcase__cta p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.phone-showcase__cta .store-buttons {
  justify-content: center;
  gap: 1.5rem;
}

/* ========================================
   RESPONSIVE - Tablet
   ======================================== */

@media (max-width: 980px) {
  .phone-showcase {
    padding: 4rem 1.5rem;
  }

  .phone-showcase__grid {
    gap: 5rem;
  }

  .phone-item {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .phone-item--left .phone-item__image,
  .phone-item--right .phone-item__image {
    order: 1;
  }

  .phone-item--left .phone-item__content,
  .phone-item--right .phone-item__content {
    order: 2;
  }

  .phone-item__image img {
    width: 130%;
    max-width: none;
    transform: scale(1.5);
    transform-origin: center;
  }

  .phone-item__content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .phone-showcase__cta {
    padding: 2.5rem 2rem;
  }
}

/* ========================================
   RESPONSIVE - Mobile
   ======================================== */

@media (max-width: 640px) {
  .phone-showcase {
    padding: 3rem 1rem;
  }

  .phone-showcase .section-heading {
    margin-bottom: 3rem;
  }

  .phone-showcase__grid {
    gap: 4rem;
  }

  .phone-item {
    gap: 2rem;
  }

  .phone-item__image img {
    max-width: 100%;
    transform: scale(1.1);
  }

  .phone-item__content {
    padding: 0.5rem;
  }

  .phone-item__content h3 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 0.75rem;
  }

  .phone-item__content > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .phone-item__features {
    gap: 0.85rem;
  }

  .phone-item__features li {
    font-size: 0.95rem;
  }

  .phone-showcase__cta {
    padding: 2rem 1.5rem;
    margin-top: 4rem;
  }

  .phone-showcase__cta h3 {
    font-size: clamp(1.25rem, 5vw, 1.65rem);
  }

  .phone-showcase__cta p {
    font-size: 1rem;
  }

  .phone-showcase__cta .store-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .phone-showcase__cta .store-button {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.phone-item {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.phone-item:nth-child(1) { animation-delay: 0.1s; }
.phone-item:nth-child(2) { animation-delay: 0.2s; }
.phone-item:nth-child(3) { animation-delay: 0.3s; }
.phone-item:nth-child(4) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .phone-item {
    animation: none;
  }
}
