/* FilterGenie Landing Page Styles */
/* CSS Variables are imported from variables.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', 'SF Pro Display', system-ui, sans-serif;
  color: var(--fg-text-white);
  background: linear-gradient(180deg, var(--fg-genie-blue) 0%, var(--fg-genie-deep) 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2rem 2rem;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  transition: all var(--fg-transition-medium);
}

.site-header--collapsed {
  padding: 0.75rem 2rem;
  background: linear-gradient(180deg, rgba(26, 47, 111, 0.98) 0%, rgba(26, 47, 111, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: gap var(--fg-transition-medium);
}

.site-header--collapsed .header-brand {
  gap: 1rem;
}

.header-logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  filter: drop-shadow(0 12px 28px rgba(255, 214, 102, 0.65)) drop-shadow(0 0 32px rgba(255, 248, 198, 0.45));
  flex-shrink: 0;
  transition: all var(--fg-transition-medium);
}

.site-header--collapsed .header-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  filter: drop-shadow(0 4px 12px rgba(255, 184, 77, 0.4));
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: gap var(--fg-transition-medium);
}

.site-header--collapsed .header-text {
  gap: 0.15rem;
}

.header-title {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--fg-text-white);
  transition: font-size var(--fg-transition-medium);
}

.site-header--collapsed .header-title {
  font-size: 1.5rem;
}

.header-title-accent {
  color: var(--fg-genie-gold);
}

.header-subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(255, 222, 166, 0.95);
  transition: all var(--fg-transition-medium);
}

.site-header--collapsed .header-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

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

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--fg-transition-medium);
  white-space: nowrap;
}

.header-btn--primary {
  background: linear-gradient(135deg, var(--fg-genie-gold) 0%, var(--fg-genie-gold-dark) 100%);
  border: 2px solid transparent;
  color: var(--fg-text-dark);
  box-shadow: 0 4px 12px rgba(255, 184, 77, 0.35);
}

.header-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 184, 77, 0.5);
}

.header-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--fg-text-white);
}

.header-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 184, 77, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 0%, rgba(255, 184, 77, 0.2), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.genie-logo-hero {
  width: 180px;
  height: 180px;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(255, 214, 102, 0.65)) drop-shadow(0 0 32px rgba(255, 248, 198, 0.45));
  animation: genie-float 6s ease-in-out infinite;
  border-radius: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg-text-white);
}

.hero h1 .accent {
  color: var(--fg-genie-lime);
  text-shadow: 0 0 16px rgba(255, 211, 112, 0.45);
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--fg-text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 32px;
  text-decoration: none;
  transition: all var(--fg-transition-medium);
  cursor: pointer;
  border: 2px solid;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fg-genie-gold) 0%, var(--fg-genie-gold-dark) 100%);
  border-color: rgba(255, 184, 77, 0.3);
  color: var(--fg-text-dark);
  box-shadow: var(--fg-shadow-button);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffc870 0%, #f0a940 100%);
  border-color: rgba(255, 184, 77, 0.5);
  box-shadow: 0 8px 32px rgba(255, 184, 77, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(43, 74, 159, 0.6) 0%, rgba(26, 47, 111, 0.8) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--fg-text-white);
}

.btn-secondary:hover {
  border-color: rgba(255, 184, 77, 0.4);
  background: linear-gradient(135deg, rgba(43, 74, 159, 0.8) 0%, rgba(26, 47, 111, 1) 100%);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--fg-text-white);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--fg-text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

/* Cards */
.card {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(35, 60, 128, 0.95) 0%, rgba(18, 32, 76, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--fg-shadow-card);
  backdrop-filter: blur(18px);
}

.card--muted {
  background: linear-gradient(155deg, rgba(13, 22, 48, 0.96) 0%, rgba(5, 9, 20, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.05);
}

.card--glow {
  border-color: rgba(255, 184, 77, 0.55);
  box-shadow: var(--fg-shadow-card), 0 0 36px rgba(255, 184, 77, 0.35);
}

/* How It Works */
.how-it-works {
  background: linear-gradient(180deg, var(--fg-genie-deep) 0%, var(--fg-genie-blue) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--fg-genie-gold) 0%, var(--fg-genie-gold-dark) 100%);
  color: var(--fg-text-dark);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--fg-shadow-button);
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg-text-white);
}

.step p {
  color: var(--fg-text-muted);
  font-size: 1rem;
}

/* Marketplaces */
.marketplaces {
  background: linear-gradient(180deg, var(--fg-genie-blue) 0%, var(--fg-genie-deep) 100%);
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.marketplace-item {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--fg-transition-medium);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-text-white);
  cursor: pointer;
  min-height: 120px;
}

.marketplace-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 184, 77, 0.4);
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.marketplace-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg-text-white);
  margin: 0;
}

/* Video Section */
.video-section {
  background: linear-gradient(180deg, var(--fg-genie-deep) 0%, var(--fg-genie-blue) 100%);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--fg-surface-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--fg-shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fg-text-muted);
  font-size: 1.25rem;
  gap: 16px;
}

.video-placeholder-icon {
  font-size: 4rem;
  opacity: 0.5;
}


/* Pricing Section */
.pricing {
  background: linear-gradient(180deg, var(--fg-genie-deep) 0%, var(--fg-genie-blue) 100%);
  padding-bottom: 120px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px; /* Reduced from 80px */
}

.pricing-toggle-container {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px; /* Reduced from 32px */
}

.pricing-toggle-label {
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-text-muted);
  cursor: pointer;
  transition: all var(--fg-transition-fast);
}

.pricing-toggle-label.active {
  background: var(--fg-genie-gold);
  color: var(--fg-text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Global CTA (Install Button) */
.pricing-global-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pricing-cta-large {
  max-width: 320px;
  width: 100%;
  font-size: 1.1rem;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.25);
  display: inline-block; /* ensure it renders like button */
  background: var(--fg-genie-gold);
  color: var(--fg-text-dark);
}

.pricing-cta-large:hover {
  background: #ffc870;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 184, 77, 0.35);
}

.pricing-cta-sub {
  color: var(--fg-text-muted);
  font-size: 0.9rem;
}

/* Subscriptions Grid (3 Cards) */
.pricing-grid-subscriptions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* Ensure equal height */
}

/* Base Pricing Card */
.pricing-card {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(35, 60, 128, 0.45) 0%, rgba(18, 32, 76, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: all var(--fg-transition-medium);
  flex: 1; /* Grow to fill space */
  min-width: 300px;
  max-width: 380px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(35, 60, 128, 0.6) 0%, rgba(18, 32, 76, 0.8) 100%);
}

/* "Popular" / Starter Card Highlight */
.pricing-card.is-popular {
  background: linear-gradient(160deg, rgba(45, 75, 160, 0.7) 0%, rgba(26, 47, 111, 0.9) 100%);
  border: 2px solid var(--fg-genie-gold);
  box-shadow: 0 0 40px rgba(255, 184, 77, 0.15);
  transform: scale(1.05); /* Make it pop */
  z-index: 2;
  margin-top: -16px; /* Offset to center relative to others if needed, but scale helps */
}

@media (max-width: 900px) {
  .pricing-card.is-popular {
    margin-top: 0;
    transform: scale(1);
    order: -1; /* Move to top on mobile or keep flow */
  }
}

.pricing-card.is-popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 60px rgba(255, 184, 77, 0.25);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fg-genie-gold);
  color: var(--fg-text-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg-text-white);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg-text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-text-muted);
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--fg-text-muted);
  margin-bottom: 32px;
  min-height: 40px;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--fg-transition-fast);
  border: none;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.pricing-cta-placeholder {
  min-height: 52px; /* Placeholder for alignment match with buttons */
}

.pricing-cta.btn-primary {
  background: var(--fg-genie-gold);
  color: var(--fg-text-dark);
}

.pricing-cta.btn-primary:hover {
  background: #ffc870;
  transform: translateY(-2px);
}

.pricing-cta.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--fg-text-white);
}

.pricing-cta.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Feature List */
.pricing-features {
  list-style: none;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--fg-genie-gold);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Packages / Add-ons */
.pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0 48px;
}

.pricing-divider::before,
.pricing-divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  width: 200px;
}

.pricing-divider span {
  padding: 0 24px;
  color: var(--fg-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-addons-section {
  text-align: center;
}

.addons-subtitle {
  color: var(--fg-text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.pricing-grid-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

/* Compact Addon Card */
.pricing-card.is-addon {
  padding: 24px;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  flex: initial;
}

.pricing-card.is-addon:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--fg-genie-gold);
}

.pricing-card.is-addon .pricing-price {
  font-size: 2.25rem;
  color: var(--fg-genie-gold);
  margin-bottom: 4px;
}

.pricing-card.is-addon .pricing-period {
  font-size: 0.9rem;
  color: var(--fg-text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

/* Features Section */
.features {
  background: linear-gradient(180deg, var(--fg-genie-blue) 0%, var(--fg-genie-deep) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.feature-item {
  text-align: center;
  padding: 32px;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg-text-white);
}

.feature-item p {
  color: var(--fg-text-muted);
}

/* Footer */
.footer {
  background: var(--fg-surface-darker);
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  max-width: 1200px;
  margin: 0 auto 16px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--fg-text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--fg-transition-fast);
}

.footer-links a:hover {
  color: var(--fg-genie-gold);
}


.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--fg-text-muted);
  font-size: 0.875rem;
}

/* Responsive */

@media (max-width: 768px) {
  .site-header {
    padding: 1.5rem 1.5rem;
    gap: 1.5rem;
  }

  .site-header--collapsed {
    padding: 0.75rem 1.5rem;
  }

  .header-brand {
    gap: 1.25rem;
  }

  .site-header--collapsed .header-brand {
    gap: 0.75rem;
  }

  .header-logo {
    width: 96px;
    height: 96px;
  }

  .site-header--collapsed .header-logo {
    width: 44px;
    height: 44px;
  }

  .header-title {
    font-size: 2.25rem;
  }

  .site-header--collapsed .header-title {
    font-size: 1.25rem;
  }

  .header-subtitle {
    font-size: 0.875rem;
  }

  .site-header--collapsed .header-subtitle {
    font-size: 0.7rem;
  }

  .header-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

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

  .hero p {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 60px 24px;
  }

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

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

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

  .marketplace-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .pricing-table__header,
  .pricing-table__row {
    min-width: 640px;
  }

  .pricing-grid {
    overflow-x: auto;
  }



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


  .video-container {
    border-radius: 16px;
  }

  .card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
    align-items: stretch;
  }

  .site-header--collapsed {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1rem;
  }

  .header-brand {
    justify-content: center;
    gap: 1rem;
  }

  .site-header--collapsed .header-brand {
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .header-logo {
    width: 80px;
    height: 80px;
  }

  .site-header--collapsed .header-logo {
    width: 40px;
    height: 40px;
  }

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

  .site-header--collapsed .header-title {
    font-size: 1.15rem;
  }

  .header-subtitle {
    font-size: 0.8rem;
  }

  .site-header--collapsed .header-subtitle {
    font-size: 0.65rem;
  }

  .header-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-header--collapsed .header-actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .header-btn {
    width: 100%;
    padding: 0.625rem 1rem;
  }

  .site-header--collapsed .header-btn {
    width: auto;
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 90px 16px 40px;
  }

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

  .section {
    padding: 40px 16px;
  }

  .container {
    padding: 0 16px;
  }

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

  .marketplace-item {
    padding: 24px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

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

  .feature-icon {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Skeleton Loading */
.skeleton {
  background: rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.05) 8%,
    rgba(255, 255, 255, 0.1) 18%,
    rgba(255, 255, 255, 0.05) 33%
  );
  border-radius: 8px;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

.skeleton-text {
  height: 1em;
  width: 100%;
  margin-bottom: 0.5rem;
}

.skeleton-text.w-50 { width: 50%; }
.skeleton-text.w-75 { width: 75%; }

.marketplace-item.skeleton-card {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pricing-card.skeleton-card {
  min-height: 400px;
}

.save-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
