@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');
/* =====================
   BASE RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: 'Noto Sans', sans-serif;
  color:#0f172a;
  background:#ffffff;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5{
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1.15;
}

a {
  text-decoration: none;
  color: inherit;
}
/* ===============================
   STOCKLOG – CONTENT CSS
   =============================== */

.sl-content {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  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;
}

.sl-platform{
  margin-top:16px;
  font-size:14px;
  color:#2563eb;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}

.sl-platform i{
  font-size:18px;
}

/* ===============================
   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.single{
  display:flex;
  justify-content:center;
}

.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;
  }

}


/* =================================
   PLATFORM
================================= */

.sl-platform{
  margin-top:16px;
  color:#2563eb;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
}

.sl-platform i{
  font-size:18px;
}

/* =================================
   TRUST STATS
================================= */

.sl-trust{
  display:flex;
  gap:16px;
  margin-top:26px;
  flex-wrap:wrap;
}

.sl-trust-box{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:14px 18px;
  min-width:140px;
}

.sl-trust-box strong{
  display:block;
  font-size:20px;
  margin-bottom:2px;
}

.sl-trust-box span{
  font-size:13px;
  color:#64748b;
}



/* =================================
   SYSTEM REQUIREMENTS
================================= */

.sl-system{
  margin-top:34px;
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:24px;
  max-width:420px;
  margin-left:auto;
  margin-right:auto;
}

.sl-system h3{
  margin-bottom:14px;
}

.sl-system p{
  margin-bottom:8px;
  color:#475569;
}


/* =================================
   MOBILE
================================= */

@media (max-width:900px){

  .sl-gallery{
    grid-template-columns:1fr;
  }

  .sl-trust{
    justify-content:center;
  }

  .sl-platform{
    justify-content:center;
  }

  .sl-cta h2{
    font-size:28px;
  }

}

