/* Common section styles for landing pages */
.btn-groups {
  display: none;
}

.why-section,
.features-section,
.guide-section,
.faq-section {
  background-color: #f7f9fb;
}

.section-title {
  text-align: center;
}

.why-section .feature-card,
.features-section .feature-card,
.faq-section .faq-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 18px 35px rgba(36, 60, 84, 0.08);
}

.why-section .feature-card {
  padding: 2rem;
  min-height: 100%;
}

.why-section .feature-card h3,
.features-section .feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.why-section .feature-card p,
.features-section .feature-card p,
.faq-section .faq-card .card-body {
  margin-bottom: 1rem;
  color: #4f5b67;
  line-height: 1.75;
}

.why-section .feature-card ul,
.features-section .feature-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.why-section .feature-card ul li,
.features-section .feature-card ul li {
  margin-bottom: 0.75rem;
}

.features-section .feature-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e9f2ff;
  margin: 0 auto 1.5rem;
}

.features-section .feature-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.features-section .feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.guide-section .step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-section .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1rem 1rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.guide-section .step-item.active {
  border-color: #0073ff;
  background-color: #eef7ff;
  box-shadow: 0 16px 28px rgba(0, 115, 255, 0.08);
}

.guide-section .step-item:hover {
  transform: translateY(-1px);
}

.guide-section .step-badge {
  min-width: 2.5rem;
  min-height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #e9f2ff;
  color: #0073ff;
  font-weight: 700;
  border: 1px solid rgba(0, 115, 255, 0.12);
}

.guide-section .step-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.guide-section .step-item p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.guide-section .step-content {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 35px rgba(36, 60, 84, 0.08);
}

.guide-section .step-detail {
  display: none;
}

.guide-section .step-detail.active {
  display: block;
}

.guide-section .step-copy h3 {
  margin-bottom: 1rem;
}

.guide-section .step-copy p {
  color: #4f5b67;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.guide-section .step-screenshot {
  min-height: 260px;
  border-radius: 1rem;
  border: 1px dashed rgba(0, 115, 255, 0.24);
  background: linear-gradient(135deg, #eef2ff 0%, #f8fbff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1rem;
  padding: 1.25rem;
}

.guide-section .step-screenshot img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.guide-section .step-cta {
  margin-top: 1.75rem;
}

.feature-clean-section .feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 0;
  flex-wrap: wrap;
}

.feature-clean-section .feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-clean-section .feature-text {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-clean-section .feature-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.feature-clean-section .feature-text p,
.feature-clean-section .feature-text ul {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

.feature-clean-section .feature-img {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.feature-clean-section .feature-img img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.faq-section .faq-card {
  box-shadow: 0 10px 24px rgba(36, 60, 84, 0.06);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-section .faq-card .btn-link {
  width: 100%;
  text-align: left;
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
}

.faq-section .faq-card .btn-link:hover,
.faq-section .faq-card .btn-link:focus {
  text-decoration: none;
  color: #0073ff;
}

.faq-section .faq-card .card-body {
  padding: 0 1.5rem 1.25rem;
}
