/* ===============================
   STOCKLOG – CONTENT CSS
   =============================== */

.sl-content {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
}

/* ===============================
   HERO
=============================== */
.sl-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.sl-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.sl-hero p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  max-width: 480px;
}

.sl-hero-image img {
  max-width: 420px;
}

/* ===============================
   COMMON SECTIONS
=============================== */
.sl-section {
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eef2f7;
}

.sl-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sl-section h2 {
  font-size: 26px;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 10px;
  text-align:center;
}

.sl-section h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: #2563eb;
  margin-top: 8px;
  border-radius: 3px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================
   WHO STOCKLOG IS FOR
=============================== */
.sl-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
}

.sl-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: #334155;
}

.sl-list i {
  background: #eff6ff;
  color: #2563eb;
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
}

/* ===============================
   HOW STOCKLOG HELPS
=============================== */
.sl-help {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
 background: #f8fafc;
  border: 1px solid #eef2f7;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  border-radius: 12px;
  margin-bottom: 14px;
}

.sl-help i {
  color: #2563eb;
  font-size: 18px;
  margin-top: 2px;
}

.sl-help strong {
  display: block;
  margin-bottom: 4px;
}

/* ===============================
   KEY FEATURES
=============================== */
.sl-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
gap: 24px 48px;
  margin-top: 30px;
}

.sl-feature {
  position: relative;
  padding-left: 18px;
}

.sl-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 55%;
  background: #2563eb;
  border-radius: 2px;
   display: none;
}

.sl-feature strong {
  display: block;
  margin-bottom: 4px;
}

/* =====================================================
   DOWNLOADS SECTION – ONLY THIS IS MODIFIED
   ===================================================== */

.sl-downloads {
  text-align: center;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 60px 40px;
  border-radius: 18px;
}

.sl-downloads .sub {
  color: #475569;
  margin-bottom: 30px;
}

.sl-download-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 30px auto 0;
}

.sl-download-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-download-row p {
  margin-top: 8px;
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
  max-width: 260px;
}

/* ===== Buttons ===== */
.sl-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.sl-btn:hover {
  transform: translateY(-2px);
}

.sl-btn.outline {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
  box-shadow: none;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 600px) {
  .sl-section h2 {
    font-size: 22px;
  }

  .sl-section h2::after {
    width: 100px; /* 140 → 100 */
  }
}

@media (max-width: 900px) {
  .sl-hero {
    flex-direction: column;
    text-align: center;
  }

  .sl-hero-image img {
    max-width: 100%;
  }

  .sl-features,
  .sl-download-row {
    grid-template-columns: 1fr;
  }

}
