/* SEO Landing Page Styles - Modern, Vibrant, PWA-Optimized */

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

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

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
}

.SEOLanding-page {
  background: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

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

/* Loading & Error States */
.SEOLanding-loading,
.SEOLanding-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  padding: 24px;
}

.SEOLanding-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #2a2a2c;
  border-top-color: #17d2c2;
  border-radius: 50%;
  animation: SEOLanding-spin 0.8s linear infinite;
}

@keyframes SEOLanding-spin {
  to { transform: rotate(360deg); }
}

.SEOLanding-error h1 {
  font-size: 32px;
  margin: 0;
}

.SEOLanding-error p {
  color: #8e8e93;
  margin: 8px 0 24px;
}

/* Hero Section */
.SEOLanding-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.SEOLanding-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(247, 148, 29, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.SEOLanding-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.SEOLanding-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.SEOLanding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(247, 148, 29, 0.15);
  border: 1px solid rgba(247, 148, 29, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #f7941d;
  width: fit-content;
}

.SEOLanding-badge-success {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.SEOLanding-h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #c7c7cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.SEOLanding-hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: #c7c7cc;
  margin: 0;
}

.SEOLanding-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #2a2a2c;
  border-bottom: 1px solid #2a2a2c;
}

.SEOLanding-stat {
  text-align: center;
}

.SEOLanding-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #17d2c2;
  margin-bottom: 4px;
}

.SEOLanding-stat-label {
  font-size: 13px;
  color: #8e8e93;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.SEOLanding-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.SEOLanding-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.SEOLanding-cta-primary {
  background: linear-gradient(135deg, #12b7ab 0%, #17d2c2 50%, #47e0d2 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(23, 210, 194, 0.3);
}

.SEOLanding-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(23, 210, 194, 0.4);
}

.SEOLanding-cta-primary:active {
  transform: translateY(0);
}

.SEOLanding-cta-secondary {
  background: #1c1c1e;
  color: #ffffff;
  border: 1px solid #2a2a2c;
}

.SEOLanding-cta-secondary:hover {
  background: #2a2a2c;
  border-color: #17d2c2;
}

.SEOLanding-cta-large {
  padding: 20px 40px;
  font-size: 18px;
}

.SEOLanding-trust-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #8e8e93;
}

.SEOLanding-trust-badges svg {
  color: #22c55e;
}

.SEOLanding-separator {
  color: #2a2a2c;
}

.SEOLanding-hero-image {
  position: relative;
}

.SEOLanding-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Sections */
.SEOLanding-section {
  padding: 80px 0;
  position: relative;
}

.SEOLanding-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.SEOLanding-section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}

.SEOLanding-section-header p {
  font-size: 18px;
  color: #8e8e93;
  margin: 0;
}

/* Why Section - Comparison */
.SEOLanding-why-section {
  background: #0f0f0f;
}

.SEOLanding-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.SEOLanding-comparison-card {
  background: #1c1c1e;
  border: 1px solid #2a2a2c;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.SEOLanding-card-winner {
  background: linear-gradient(135deg, rgba(23, 210, 194, 0.1) 0%, rgba(18, 183, 171, 0.05) 100%);
  border-color: rgba(23, 210, 194, 0.3);
  transform: scale(1.02);
}

.SEOLanding-comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2c;
}

.SEOLanding-comparison-header h3 {
  font-size: 24px;
  margin: 0;
  color: #ffffff;
}

.SEOLanding-comparison-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.SEOLanding-comparison-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.SEOLanding-check-icon {
  flex-shrink: 0;
  color: #22c55e;
  margin-top: 2px;
}

.SEOLanding-feature-negative {
  opacity: 0.6;
}

/* Features Grid */
.SEOLanding-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.SEOLanding-feature-card {
  background: #1c1c1e;
  border: 1px solid #2a2a2c;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.SEOLanding-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 210, 194, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.SEOLanding-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.SEOLanding-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #ffffff;
}

.SEOLanding-feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #8e8e93;
  margin: 0;
}

/* How It Works */
.SEOLanding-how-section {
  background: #0f0f0f;
}

.SEOLanding-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.SEOLanding-step {
  text-align: center;
  padding: 32px 24px;
}

.SEOLanding-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.SEOLanding-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #ffffff;
}

.SEOLanding-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #8e8e93;
  margin: 0;
}

.SEOLanding-cta-center {
  text-align: center;
}

/* Testimonials */
.SEOLanding-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.SEOLanding-testimonial-card {
  background: #1c1c1e;
  border: 1px solid #2a2a2c;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.SEOLanding-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.SEOLanding-stars {
  display: flex;
  gap: 4px;
}

.SEOLanding-testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #c7c7cc;
  margin: 0;
  flex-grow: 1;
}

.SEOLanding-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.SEOLanding-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.SEOLanding-author-name {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.SEOLanding-author-info {
  font-size: 13px;
  color: #8e8e93;
}

/* FAQ */
.SEOLanding-faq-section {
  background: #0f0f0f;
}

.SEOLanding-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.SEOLanding-faq-item {
  background: #1c1c1e;
  border: 1px solid #2a2a2c;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s ease;
}

.SEOLanding-faq-item:hover {
  border-color: rgba(23, 210, 194, 0.3);
}

.SEOLanding-faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #ffffff;
}

.SEOLanding-faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #8e8e93;
  margin: 0;
}

/* Final CTA */
.SEOLanding-final-cta {
  background: linear-gradient(135deg, rgba(23, 210, 194, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
  border-top: 1px solid #2a2a2c;
  border-bottom: 1px solid #2a2a2c;
}

.SEOLanding-final-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.SEOLanding-final-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}

.SEOLanding-final-cta-content p {
  font-size: 18px;
  color: #c7c7cc;
  margin: 0 0 32px;
}

.SEOLanding-final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.SEOLanding-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #8e8e93;
}

.SEOLanding-trust-footer svg {
  color: #22c55e;
}

/* Mobile Responsive - PWA Optimized */
@media (max-width: 768px) {
  .SEOLanding-container {
    padding: 0 20px;
  }

  .SEOLanding-hero {
    padding: 60px 0 40px;
  }

  .SEOLanding-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .SEOLanding-hero-image {
    order: -1;
  }

  .SEOLanding-h1 {
    font-size: 36px;
  }

  .SEOLanding-hero-description {
    font-size: 18px;
  }

  .SEOLanding-hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .SEOLanding-stat {
    text-align: left;
  }

  .SEOLanding-hero-ctas {
    flex-direction: column;
  }

  .SEOLanding-cta-button {
    width: 100%;
    justify-content: center;
  }

  .SEOLanding-section {
    padding: 60px 0;
  }

  .SEOLanding-section-header h2 {
    font-size: 32px;
  }

  .SEOLanding-section-header p {
    font-size: 16px;
  }

  .SEOLanding-comparison-grid {
    grid-template-columns: 1fr;
  }

  .SEOLanding-card-winner {
    transform: none;
  }

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

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

  .SEOLanding-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .SEOLanding-faq-grid {
    grid-template-columns: 1fr;
  }

  .SEOLanding-final-cta-content h2 {
    font-size: 32px;
  }

  .SEOLanding-final-cta-buttons {
    flex-direction: column;
  }

  .SEOLanding-cta-large {
    width: 100%;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .SEOLanding-h1 {
    font-size: 46px;
  }

  .SEOLanding-comparison-grid {
    gap: 24px;
  }

  .SEOLanding-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Touch Optimization for PWA */
@media (hover: none) and (pointer: coarse) {
  .SEOLanding-cta-button {
    min-height: 48px;
    padding: 16px 28px;
  }

  .SEOLanding-feature-card,
  .SEOLanding-testimonial-card,
  .SEOLanding-faq-item {
    -webkit-tap-highlight-color: rgba(23, 210, 194, 0.1);
  }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
  .SEOLanding-page {
    color-scheme: dark;
  }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .SEOLanding-card-winner {
    border-width: 2px;
  }

  .SEOLanding-cta-primary {
    box-shadow: none;
    border: 2px solid #17d2c2;
  }
}

/* =====================================================
   Swipe to Discover Showcase Section
   ===================================================== */

.SEOLanding-swipe-showcase {
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
  padding: 80px 0;
}

.SEOLanding-swipe-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 48px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.SEOLanding-swipe-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1c1c1e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SEOLanding-swipe-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(23, 210, 194, 0.2);
}

.SEOLanding-swipe-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.SEOLanding-swipe-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 48px auto 0;
  padding: 32px;
  background: rgba(23, 210, 194, 0.05);
  border: 1px solid rgba(23, 210, 194, 0.2);
  border-radius: 12px;
}

.SEOLanding-swipe-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
}

.SEOLanding-swipe-benefit .SEOLanding-check-icon {
  color: #17d2c2;
  flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .SEOLanding-swipe-showcase {
    padding: 60px 0;
  }

  .SEOLanding-swipe-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
  }

  .SEOLanding-swipe-benefits {
    padding: 24px;
    margin-top: 32px;
  }

  .SEOLanding-swipe-benefit {
    font-size: 14px;
  }
}

/* =====================================================
   Creator Grid Section
   ===================================================== */

.SEOLanding-creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.SEOLanding-creator-card {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #1c1c1e;
}

.SEOLanding-creator-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}

/* Tablet: 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .SEOLanding-creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .SEOLanding-creator-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
