/* ==========================================================================
   Lokality Design System - Content Sections
   Problem, Solution, Testimonials, How It Works, Final CTA
   ========================================================================== */

/* 1. PROBLEM SECTION */
.problem-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.problem-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: #D1DDD6;
}

.problem-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
}

.problem-card-content {
  flex: 1;
}

.problem-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.problem-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* 2. SOLUTION / PROPOSITION SECTION */
.solution-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}

.solution-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(31, 145, 88, 0.3);
}

.solution-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(31, 145, 88, 0.22);
}

.solution-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.25;
}

.solution-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* 3. TESTIMONIALS SECTION ("Loved by local sellers") */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seller-quote-card {
  background: #FFFEFC;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(248, 169, 44, 0.06);
  position: relative;
}

.seller-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.seller-badge-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.seller-quote-icon {
  color: #D6A868;
  opacity: 0.8;
}

.seller-quote-text {
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.seller-author {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.seller-author-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
}

/* 4. HOW IT WORKS SECTION ("Live in 15 minutes") */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step-number-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(232, 99, 38, 0.28);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* 5. READY TO BRING SHOP ONLINE CTA */
.ready-cta-section {
  padding: 44px 20px 36px;
  background: var(--bg-tint-warm);
  text-align: left;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.ready-cta-title {
  font-size: clamp(1.8rem, 6vw, 2.3rem);
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.ready-cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.ready-cta-note {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-orange);
  margin-top: 14px;
}
