/* ===== MINIMALIST BLACK & WHITE HOW IT WORKS PAGE ===== */

.how-it-works-page {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
  padding-top: 80px;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
  color: #000000;
  margin-top: -80px;
  padding-top: 8rem;
  border-bottom: 1px solid #f0f0f0;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 4rem;
  font-weight: 200;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: #000000;
}

.page-subtitle {
  font-size: 1.4rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== STEPS SECTION ===== */
.steps-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 4rem;
  position: relative;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-card.reverse .step-content {
  grid-template-columns: 1fr 1fr;
}

.step-card.reverse .step-text {
  order: 2;
}

.step-card.reverse .step-screenshot {
  order: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border: 2px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  position: sticky;
  top: 120px;
  background: #ffffff;
}

.number {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 300;
}

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

.step-text {
  order: 1;
}

.step-screenshot {
  order: 2;
}

.step-title {
  font-size: 2.5rem;
  font-weight: 200;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.step-description {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 400;
  font-size: 1rem;
}

.step-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 300;
  font-size: 1.2rem;
}

/* ===== SCREENSHOT PLACEHOLDERS ===== */
.screenshot-placeholder {
  width: 100%;
  height: 320px;
  background: #fafafa;
  border: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.screenshot-placeholder:hover {
  border-color: #e0e0e0;
  background: #ffffff;
}

.placeholder-content {
  text-align: center;
  color: #999999;
}

.screenshot-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
  color: #000000;
}

.placeholder-text {
  font-weight: 400;
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FEATURES OVERVIEW ===== */
.features-overview {
  padding: 6rem 2rem;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.features-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-size: 3rem;
  font-weight: 200;
  color: #000000;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-color: #e0e0e0;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #000000;
  opacity: 0.8;
}

.feature-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
}

.feature-desc {
  color: #666666;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 2rem;
  background: #000000;
  text-align: center;
  color: #ffffff;
}

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

.cta-title {
  font-size: 3rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 3rem;
  font-weight: 300;
}

.cta-button {
  background: transparent;
  color: #ffffff;
  padding: 1.2rem 3rem;
  border: 2px solid #ffffff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: #000000;
  border-color: #ffffff;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .step-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .step-card.reverse .step-content {
    grid-template-columns: 1fr;
  }

  .step-card.reverse .step-text,
  .step-card.reverse .step-screenshot {
    order: unset;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .how-it-works-page {
    padding-top: 70px;
  }

  .hero-section {
    padding: 4rem 1rem;
    margin-top: -70px;
    padding-top: 5rem;
  }

  .page-title {
    font-size: 3rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
  }

  .step-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-number {
    position: static;
    margin: 0 auto 2rem auto;
    width: 60px;
    height: 60px;
  }

  .number {
    font-size: 1.5rem;
  }

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

  .step-description {
    font-size: 1.1rem;
  }

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

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

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

  .screenshot-placeholder {
    height: 280px;
  }

  .steps-section,
  .features-overview,
  .cta-section {
    padding: 4rem 1rem;
  }
}

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

  .step-title {
    font-size: 1.8rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .screenshot-placeholder {
    height: 240px;
  }

  .screenshot-icon {
    font-size: 3rem;
  }

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

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