/* ============================================
   LPO PLATFORM — Landing Page
   ============================================ */

/* — Hero Section — */
.lpo-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--lpo-space-4xl) var(--lpo-space-lg);
  background: #FFFFFF;
  color: var(--lpo-text);
  overflow: hidden;
}

.lpo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.lpo-hero__content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.lpo-hero__title {
  font-size: var(--lpo-text-5xl);
  font-weight: var(--lpo-font-bold);
  line-height: var(--lpo-leading-tight);
  margin: 0 0 var(--lpo-space-lg);
  letter-spacing: -0.02em;
}

.lpo-hero__subtitle {
  font-size: var(--lpo-text-xl);
  color: var(--lpo-text-secondary);
  margin: 0 0 var(--lpo-space-xl);
  line-height: var(--lpo-leading-relaxed);
}

.lpo-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--lpo-space-md);
  flex-wrap: wrap;
}

.lpo-hero__btn {
  padding: 14px 28px;
  font-size: var(--lpo-text-base);
  font-weight: var(--lpo-font-semibold);
  border-radius: var(--lpo-radius-md);
  cursor: pointer;
  transition: all var(--lpo-transition);
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: var(--lpo-space-sm);
}

.lpo-hero__btn--primary {
  background: #DFA774;
  color: #283655;
}

.lpo-hero__btn--primary:hover {
  background: #d4955f;
  transform: translateY(-1px);
  box-shadow: var(--lpo-shadow-md);
}

.lpo-hero__btn--secondary {
  background: transparent;
  color: #283655;
  border: 2px solid #283655;
}

.lpo-hero__btn--secondary:hover {
  background: rgba(40, 54, 85, 0.08);
}

/* — Section base — */
.lpo-section {
  padding: var(--lpo-space-4xl) var(--lpo-space-lg);
}

.lpo-section--alt {
  background: #283655;
  color: #FFFFFF;
}

.lpo-section--alt .lpo-section__title {
  color: #FFFFFF;
}

.lpo-section--alt .lpo-section__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.lpo-section__inner {
  max-width: var(--lpo-max-width);
  margin: 0 auto;
}

.lpo-section__title {
  font-size: var(--lpo-text-3xl);
  font-weight: var(--lpo-font-bold);
  text-align: center;
  margin: 0 0 var(--lpo-space-lg);
  color: var(--lpo-text);
}

.lpo-section__subtitle {
  font-size: var(--lpo-text-lg);
  color: var(--lpo-text-secondary);
  text-align: center;
  margin: 0 0 var(--lpo-space-3xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* — Apps Showcase — */
.lpo-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lpo-space-xl);
}

.lpo-app-card {
  background: var(--lpo-surface);
  border: 1px solid var(--lpo-border);
  border-radius: var(--lpo-radius-lg);
  padding: var(--lpo-space-xl);
  text-align: center;
  transition: transform var(--lpo-transition), box-shadow var(--lpo-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lpo-app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lpo-shadow-lg);
}

.lpo-app-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--lpo-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: var(--lpo-space-lg);
}

.lpo-app-card__icon--foodup {
  background: var(--lpo-foodup-light);
  color: var(--lpo-foodup);
}

.lpo-app-card__icon--handycook {
  background: var(--lpo-handycook-light);
  color: var(--lpo-handycook);
}

.lpo-app-card__icon--lazyhands {
  background: var(--lpo-lazyhands-light);
  color: var(--lpo-lazyhands);
}

.lpo-app-card__name {
  font-size: var(--lpo-text-xl);
  font-weight: var(--lpo-font-bold);
  margin: 0 0 var(--lpo-space-sm);
  color: var(--lpo-text);
}

.lpo-app-card__desc {
  font-size: var(--lpo-text-sm);
  color: var(--lpo-text-secondary);
  line-height: var(--lpo-leading-relaxed);
  margin: 0 0 var(--lpo-space-lg);
  flex-grow: 1;
}

.lpo-app-card__btn {
  padding: var(--lpo-space-sm) var(--lpo-space-lg);
  font-size: var(--lpo-text-sm);
  font-weight: var(--lpo-font-semibold);
  border-radius: var(--lpo-radius);
  cursor: pointer;
  transition: all var(--lpo-transition);
  text-decoration: none;
  border: none;
  background: #DFA774;
  color: #283655;
}

.lpo-app-card__btn:hover {
  background: #d4955f;
  color: #283655;
  transform: translateY(-1px);
}

/* — How It Works — */
.lpo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lpo-space-xl);
  text-align: center;
}

.lpo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lpo-step__number {
  width: 48px;
  height: 48px;
  border-radius: var(--lpo-radius-full);
  background: #DFA774;
  color: #283655;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--lpo-text-xl);
  font-weight: var(--lpo-font-bold);
  margin-bottom: var(--lpo-space-md);
}

.lpo-step__title {
  font-size: var(--lpo-text-lg);
  font-weight: var(--lpo-font-semibold);
  margin: 0 0 var(--lpo-space-sm);
  color: #FFFFFF;
}

.lpo-step__desc {
  font-size: var(--lpo-text-sm);
  color: rgba(255, 255, 255, 0.85);
}

/* — Features — */
.lpo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lpo-space-lg);
}

.lpo-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--lpo-space-md);
  padding: var(--lpo-space-lg);
  background: #283655;
  border-radius: var(--lpo-radius-md);
  border: none;
}

.lpo-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lpo-radius);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--lpo-text-xl);
  flex-shrink: 0;
}

.lpo-feature__title {
  font-size: var(--lpo-text-base);
  font-weight: var(--lpo-font-semibold);
  margin: 0 0 var(--lpo-space-xs);
  color: #FFFFFF;
}

.lpo-feature__desc {
  font-size: var(--lpo-text-sm);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: var(--lpo-leading-relaxed);
}

/* — Responsive — */
@media (max-width: 768px) {
  .lpo-hero {
    min-height: 400px;
    padding: var(--lpo-space-3xl) var(--lpo-space-md);
  }

  .lpo-hero__title {
    font-size: var(--lpo-text-3xl);
  }

  .lpo-hero__subtitle {
    font-size: var(--lpo-text-base);
  }

  .lpo-apps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .lpo-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .lpo-section {
    padding: var(--lpo-space-3xl) var(--lpo-space-md);
  }
}
