/* --------------------------------------------------------
   Landing Page Styles
   -------------------------------------------------------- */

/* Scoped to .landing-page to avoid conflicts with app styles */
.landing-page {
  background: #f0f2f5;
}

/* --------------------------------------------------------
   Hero Section
   -------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #0B1F33 0%, #1F3A56 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #a0aec0;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 500px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* --------------------------------------------------------
   Buttons
   -------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
  min-width: 180px;
}

.btn-primary {
  background: #2ED1B2;
  color: #fff;
}

.btn-primary:hover {
  background: #24B899;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #2ED1B2;
}

.btn-secondary:hover {
  background: rgba(46, 209, 178, 0.1);
}

.btn-outline {
  background: transparent;
  color: #2ED1B2;
  border: 2px solid #2ED1B2;
}

.btn-outline:hover {
  background: #2ED1B2;
  color: #fff;
}

/* --------------------------------------------------------
   How It Works
   -------------------------------------------------------- */
.how-it-works {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #0B1F33;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2ED1B2 0%, #24B899 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0B1F33;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.5;
}

/* --------------------------------------------------------
   Pricing
   -------------------------------------------------------- */
.pricing {
  padding: 3rem 1.5rem;
  background: #edfaf6;
}

.pricing h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #0B1F33;
  margin-bottom: 2rem;
}

.pricing-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.pricing-card-premium {
  border: 2px solid #2ED1B2;
}

.premium-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2ED1B2;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1F33;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2ED1B2;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #718096;
}

.features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #1F3A56;
  border-bottom: 1px solid #f0f2f5;
  position: relative;
  padding-left: 1.5rem;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2ED1B2;
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

/* --------------------------------------------------------
   Landing Footer
   -------------------------------------------------------- */
.landing-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.landing-footer .disclaimer {
  font-size: 0.75rem;
  color: #a0aec0;
  line-height: 1.5;
}
