/* ===== STRENGTHS PAGE ===== */

.strength-section {
  padding: 88px 0;
}

.strength-section.alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strength-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  align-items: center;
}

.strength-layout.reverse {
  direction: rtl;
}

.strength-layout.reverse > * {
  direction: ltr;
}

/* --- Visual --- */
.strength-visual {
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
}

.strength-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* --- Content --- */
.strength-num {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.strength-title {
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.strength-desc {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 28px;
}

.strength-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strength-points li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.strength-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--blue);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .strength-section {
    padding: 64px 0;
  }

  .strength-layout,
  .strength-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    row-gap: 36px;
  }

  .strength-visual img {
    height: 240px;
  }

  .strength-num {
    font-size: 2.8rem;
  }

  .strength-title {
    font-size: 1.3rem;
  }
}
