/* ==========================================================================
   Lokality Design System - Content Sections
   Problem, Solution, Testimonials, How It Works, Final CTA
   Clean color harmony aligned with taste/ (Emerald + White + Crisp Slate)
   ========================================================================== */

/* 1. PROBLEM SECTION */
.problem-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .problem-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 128, 84, 0.3);
}

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

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

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

/* 2. SOLUTION SECTION */
.solution-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .solution-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 128, 84, 0.35);
}

.solution-card:hover::before {
  background: var(--brand-primary);
}

.solution-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--brand-primary-glow);
}

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

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

/* 3. TESTIMONIALS SECTION */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-xs);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(18, 128, 84, 0.3);
  box-shadow: var(--shadow-md);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-badge {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.testimonial-category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 500;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--brand-dark);
  line-height: 1.2;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* 4. HOW IT WORKS */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

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

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-size: 1.15rem;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(18, 128, 84, 0.2);
}

.step-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.3;
}

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

/* 5. FINAL READY CTA BANNER */
.ready-cta-section {
  padding: 72px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.ready-cta-box {
  background: linear-gradient(135deg, #0D261E 0%, #0F3528 100%);
  border-radius: var(--radius-xl);
  padding: 48px 28px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(13, 31, 24, 0.25);
}

@media (min-width: 768px) {
  .ready-cta-box {
    padding: 64px 48px;
  }
}

.ready-cta-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.035em;
}

.ready-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.ready-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-ready-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: #FFFFFF;
  color: #0D261E;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-ready-cta:hover {
  transform: translateY(-2px);
  background: #F4F9F6;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}

.ready-cta-note {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
