/* ===== ONBOARDING PAGE STYLES ===== */

/* Onboarding Section */
.onboarding-section {
  position: relative;
  min-height: 100vh;
  padding-top: 70px;
  overflow-x: hidden;
}

.onboarding-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/* Welcome Section */
.welcome-section {
  padding: 4rem 0 6rem;
  text-align: center;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  object-fit: contain;
}

.welcome-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #f5f5f7;
}

.welcome-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto;
}

/* Step Sections */
.step-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-section:last-of-type {
  border-bottom: none;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .step-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  
  .step-grid.reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .step-grid.reverse .step-content {
    order: 1;
  }
  
  .step-grid.reverse .step-image {
    order: 2;
  }
}

.step-content {
  order: 2;
}

@media (min-width: 1024px) {
  .step-content {
    order: 1;
  }
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #518fec, #3b82f6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #f5f5f7;
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #a1a1aa;
  margin-bottom: 2rem;
}

.step-tips {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-tips h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 1rem;
}

.step-tips ol,
.step-tips ul {
  color: #a1a1aa;
  line-height: 1.6;
}

.step-tips li {
  margin-bottom: 0.5rem;
}

.step-tips ol {
  padding-left: 1.5rem;
}

.step-tips ul {
  padding-left: 1.5rem;
}

.step-tips ol li::marker {
  color: #518fec;
  font-weight: 600;
}

.step-tips ul li::marker {
  color: #518fec;
}

/* Step Images */
.step-image {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .step-image {
    order: 2;
  }
}

.step-gif {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.step-gif:hover {
  transform: scale(1.02);
}

.step-image-secondary {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Tips Section */
.tips-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
  margin: 4rem 0;
  border-radius: 20px;
}

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

.tips-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: #f5f5f7;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5f5f7;
  margin-bottom: 1rem;
}

.tip-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a1a1aa;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #f5f5f7;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 2.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .welcome-section {
    padding: 3rem 0 4rem;
  }
  
  .welcome-title {
    font-size: 2rem;
  }
  
  .welcome-subtitle {
    font-size: 1.1rem;
  }
  
  .step-section {
    padding: 4rem 0;
  }
  
  .step-title {
    font-size: 2rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
  
  .tips-section {
    margin: 3rem 0;
    padding: 4rem 0;
  }
  
  .tips-title {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 479px) {
  .welcome-title {
    font-size: 1.75rem;
  }
  
  .step-title {
    font-size: 1.75rem;
  }
  
  .tips-title {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .step-tips {
    padding: 1rem;
  }
  
  .tip-card {
    padding: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .step-gif:hover,
  .tip-card:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .onboarding-background {
    display: none;
  }
  
  .step-gif,
  .step-image-secondary {
    max-width: 300px;
  }
  
  .tip-card {
    break-inside: avoid;
  }
} 