/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0f1219;
  --bg-secondary: #151921;
  --bg-card: #1a1f2e;
  --bg-card-hover: #222838;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7280;
  --accent-primary: #4f6ef7;
  --accent-hover: #6380ff;
  --accent-glow: rgba(79, 110, 247, 0.3);
  --border-color: rgba(255, 255, 255, 0.08);
  --star-color: #fbbf24;
  --gradient-1: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(79, 110, 247, 0.15), transparent);
  --gradient-2: radial-gradient(ellipse 60% 40% at 80% 0%, rgba(79, 110, 247, 0.08), transparent);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Colored Glows */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(139, 92, 246, 0.12), transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 30%, rgba(59, 130, 246, 0.1), transparent 70%),
    radial-gradient(ellipse 600px 400px at 70% 80%, rgba(16, 185, 129, 0.08), transparent 70%),
    radial-gradient(ellipse 400px 300px at 10% 70%, rgba(245, 158, 11, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body.menu-open {
  overflow: hidden;
}

/* Background Gradients (hidden - replaced by grid + glows) */
.bg-gradient {
  display: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 18, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Neon Pink Buttons */
.btn-neon {
  background: linear-gradient(135deg, #ff0080, #ff4da6);
  color: white;
  border: none;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 0 20px rgba(255, 0, 128, 0.5),
    0 0 40px rgba(255, 0, 128, 0.3),
    0 0 60px rgba(255, 0, 128, 0.1);
  animation: neonPulse 2s ease-in-out infinite;
}

.btn-neon:hover {
  background: linear-gradient(135deg, #ff1a8c, #ff66b2);
  box-shadow: 
    0 0 25px rgba(255, 0, 128, 0.6),
    0 0 50px rgba(255, 0, 128, 0.4),
    0 0 75px rgba(255, 0, 128, 0.2);
  transform: translateY(-2px);
}

.btn-neon:active {
  transform: translateY(0);
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(255, 0, 128, 0.5),
      0 0 40px rgba(255, 0, 128, 0.3),
      0 0 60px rgba(255, 0, 128, 0.1);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(255, 0, 128, 0.6),
      0 0 50px rgba(255, 0, 128, 0.4),
      0 0 75px rgba(255, 0, 128, 0.2);
  }
}

/* Subtle Neon Pink (for nav buttons) */
.btn-neon-subtle {
  background: rgba(255, 0, 128, 0.15);
  color: #ff4da6;
  border: 1px solid rgba(255, 0, 128, 0.3);
}

.btn-neon-subtle:hover {
  background: rgba(255, 0, 128, 0.25);
  border-color: rgba(255, 0, 128, 0.5);
  color: #ff66b2;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 2rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links .nav-link {
  font-size: 1.125rem;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 97vh;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.laurel {
  width: 38px;
  height: 54px;
  color: rgba(148, 163, 184, 0.7);
}

.laurel-right {
  transform: scaleX(-1);
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.badge-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-rank {
  font-size: 1.125rem;
  color: #e2e8f0;
  font-weight: 700;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust Section */
.trust-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 18px;
  height: 18px;
  color: var(--star-color);
}

.star-half {
  opacity: 0.5;
}

.trust-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

.users-icon {
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cards-overlay {
  position: relative;
  width: 420px;
  height: 420px;
}

.overlay-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Card sizes and positions - overlapping */
.card-large {
  width: 360px;
  height: 360px;
  top: 30px;
  left: 30px;
  z-index: 1;
  border-radius: 18px;
  border-color: rgba(79, 110, 247, 0.4);
  box-shadow: 0 12px 48px rgba(79, 110, 247, 0.2);
}

.card-small {
  width: 120px;
  height: 120px;
  top: 15px;
  left: 5px;
  z-index: 3;
  border-radius: 12px;
}

/* Make original image look old/faded */
.card-small img,
.card-small video {
  filter: grayscale(30%) contrast(0.7) brightness(0.85) sepia(15%);
}

.card-medium {
  width: 140px;
  height: 140px;
  top: 15px;
  left: 290px;
  z-index: 2;
  border-color: rgba(79, 110, 247, 0.3);
}

/* Floating animations */
.float-1 {
  animation: float1 4s ease-in-out infinite;
}

.float-2 {
  animation: float2 4.5s ease-in-out infinite;
}

.float-3 {
  animation: float3 5s ease-in-out infinite;
}

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

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

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

/* Curved Arrows - Hidden */
.curved-arrow {
  display: none;
}

.arrow-1,
.arrow-2 {
  display: none;
}

.step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-image.restored-image {
  filter: contrast(1.15) saturate(1.1) brightness(1.05);
}

.step-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.video-indicator {
  position: absolute;
  bottom: 40px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.video-indicator svg {
  margin-left: 3px;
}

/* Responsive Design */
@media (min-width: 1025px) {
  .hero-buttons {
    flex-wrap: nowrap;
  }
  
  .hero-buttons .btn {
    width: auto;
  }
  
  .trust-section {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content {
    max-width: 100%;
    order: 0;
  }

  .hero-visual {
    order: 1;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .trust-section {
    justify-content: center;
  }

  .cards-overlay {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .card-large {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .card-small {
    width: 90px;
    height: 90px;
    top: -15px;
    left: -15px;
    z-index: 3;
  }

  .card-medium {
    width: 100px;
    height: 100px;
    top: -15px;
    left: auto;
    right: -30px;
    z-index: 3;
  }

  .overlay-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cards-overlay {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .cards-overlay {
    width: 300px;
    height: 300px;
  }

  .card-large {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .card-small {
    width: 95px;
    height: 95px;
    top: -18px;
    left: -18px;
    z-index: 3;
  }

  .card-medium {
    width: 105px;
    height: 105px;
    top: -18px;
    left: auto;
    right: -35px;
    z-index: 3;
  }

  .overlay-arrow {
    display: none;
  }

  .trust-section {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0.875rem 1rem;
  }

  .hero-container {
    padding: 6rem 1rem 0;
  }

  .hero-title {
    font-size: 2rem;
    max-width: 260px;
  }

  .cards-overlay {
    width: 280px;
    height: 280px;
  }

  .cards-overlay {
    width: 280px;
    height: 280px;
  }

  .card-large {
    width: 280px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .card-small {
    width: 70px;
    height: 70px;
    top: -10px;
    left: -10px;
    z-index: 3;
  }

  .card-medium {
    width: 70px;
    height: 70px;
    top: -10px;
    left: auto;
    right: -10px;
    z-index: 3;
  }

  .card-label {
    font-size: 0.5rem;
    padding: 2px 5px;
  }


  .video-indicator {
    width: 32px;
    height: 32px;
    bottom: 32px;
    right: 8px;
  }

  .video-indicator svg {
    width: 16px;
    height: 16px;
  }
}

/* Community Creations Section */
.community-section {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 5rem;
}

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

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

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.creations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.creation-card {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.creation-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.creation-video {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}

.creation-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creation-content {
  padding: 1.25rem;
}

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

.profile-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.profile-country {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.creation-review {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  color: var(--star-color);
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Responsive - Community Section */
@media (max-width: 1024px) {
  .creations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .creations-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.how-it-works-container {
  max-width: 1280px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Card 1 - Blue/Purple */
.step-card-1 {
  border-color: rgba(99, 102, 241, 0.3);
}
.step-card-1:hover {
  border-color: rgba(99, 102, 241, 0.5);
}
.step-card-1 .step-icon {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
}

/* Card 2 - Amber/Orange */
.step-card-2 {
  border-color: rgba(245, 158, 11, 0.3);
}
.step-card-2:hover {
  border-color: rgba(245, 158, 11, 0.5);
}
.step-card-2 .step-icon {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

/* Card 3 - Emerald/Green */
.step-card-3 {
  border-color: rgba(16, 185, 129, 0.3);
}
.step-card-3:hover {
  border-color: rgba(16, 185, 129, 0.5);
}
.step-card-3 .step-icon {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive - How It Works */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 3rem 1rem;
  }

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

  .step-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* Memories Section */
.memories-section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.memories-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.memories-visual {
  position: relative;
  width: 420px;
  flex-shrink: 0;
}

.memories-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.memories-video {
  width: 100%;
  height: auto;
  display: block;
}

.memories-overlay-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  color: white;
}

/* Hidden - no longer used */
.memories-thumbnail,
.memories-arrow {
  display: none;
}

.memories-content {
}

.memories-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.memories-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.memories-highlight {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.memories-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.memories-keyword {
  color: #a78bfa;
  font-weight: 500;
}

.memories-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.memories-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.memories-feature svg {
  color: var(--primary);
}

@media (max-width: 900px) {
  .memories-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .memories-visual {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

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

  .memories-features {
    justify-content: center;
  }
}

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

  .memories-title {
    font-size: 1.75rem;
  }

  .memories-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .memories-title {
    font-size: 1.5rem;
  }

  .memories-description {
    font-size: 0.9375rem;
  }
  
  .memories-visual {
    max-width: 280px;
  }
}

/* FAQ Section */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 5rem;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 0.75rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0 0 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem 4rem;
  }

  .faq-item {
    padding: 1.25rem 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  color: #a78bfa;
  margin-bottom: 1.5rem;
}

.cta-badge svg {
  color: #fbbf24;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.cta-highlight {
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #9b6ff6 0%, #8b5cf6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}


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

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

  .cta-title br {
    display: none;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-email {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.3s ease;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
  margin-top: auto;
}

.footer-links {
  gap: 1rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-social {
  gap: 1rem;
}

.footer-social-title {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
  opacity: 0.8;
}

.footer-social-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-copyright {
    margin-top: 1rem;
  }
}

/* Pricing Popup */
.pricing-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.pricing-popup.active {
  opacity: 1;
  visibility: visible;
}

.pricing-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 800px 500px at 20% 10%, rgba(139, 92, 246, 0.15), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(59, 130, 246, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 450px at 70% 90%, rgba(16, 185, 129, 0.1), transparent 60%),
    radial-gradient(ellipse 500px 350px at 10% 80%, rgba(245, 158, 11, 0.08), transparent 60%),
    linear-gradient(to bottom, rgba(10, 12, 18, 0.97), rgba(5, 7, 12, 0.99));
  backdrop-filter: blur(8px);
}

.pricing-popup-container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 2rem;
}

/* Stats Bar */
.pricing-stats-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(15, 18, 25, 0.95);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-avatars {
  display: flex;
  align-items: center;
}

.stat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  object-fit: cover;
  margin-left: -10px;
}

.stat-avatar:first-child {
  margin-left: 0;
}

.stat-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.stat-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.trustpilot-star {
  flex-shrink: 0;
}

.external-link {
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.stat-icon {
  flex-shrink: 0;
}

/* Main Content */
.pricing-popup-content {
  position: relative;
  background: #1a1d24;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 3rem 3rem;
  max-width: 1100px;
  width: 95%;
  margin-top: 1.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.pricing-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pricing-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-popup-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.pricing-popup-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

/* Billing Toggle */
.email-input-container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.email-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
}

.email-input::placeholder {
  color: var(--text-secondary);
}

.email-input:focus {
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.discount-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23fbbf24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Pricing Plans */
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pricing-plan {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-plan:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-plan-popular {
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(99, 102, 241, 0.05);
}

.pricing-plan-popular:hover {
  border-color: rgba(99, 102, 241, 0.7);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plan-header {
  margin-bottom: 1.25rem;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

.plan-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 0.25rem;
}

.price-original {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.125rem;
  font-weight: 600;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-per-credit {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.savings-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.feature-item.feature-highlight {
  color: var(--text-primary);
}

.feature-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #6366f1;
}

.feature-info {
  margin-left: auto;
  color: var(--text-muted);
  cursor: help;
  flex-shrink: 0;
  opacity: 0.6;
}

.feature-info:hover {
  opacity: 1;
}

/* Plan Buttons */
.btn-plan {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.btn-plan:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-plan-primary {
  background: #6366f1;
  border-color: #6366f1;
  color: white;
}

.btn-plan-primary:hover {
  background: #5558e8;
  border-color: #5558e8;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-popup-content {
    padding: 2rem 1.5rem;
  }

  .pricing-plan-popular {
    order: -1;
  }
}

@media (max-width: 768px) {
  .pricing-stats-bar {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .pricing-popup-content {
    padding: 2rem 1rem;
    width: 95%;
    margin-top: 1rem;
  }

  .pricing-popup-title {
    font-size: 1.5rem;
  }

  .pricing-popup-subtitle {
    font-size: 0.9375rem;
  }

  .pricing-plans {
    gap: 1rem;
  }

  .pricing-plan {
    padding: 1.25rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .email-input-container {
    max-width: 100%;
  }
}
