/* ── Service Landing Page ─────────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────────── */

.SL-Hero {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 140px calc((((130 - 63) / (1920 - 1245)) * (100vw - 1245px)) + 63px) 80px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f5f7ff 100%);
}

.SL-Hero-Content {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1 1 50%;
  max-width: 680px;
  gap: 20px;
}

.SL-Hero-Heading {
  color: var(--heading-color);
  font-weight: 700;
}

.SL-Hero-Subheading {
  color: var(--text-color);
  margin-bottom: 8px;
}

.SL-Hero-CTA {
  display: inline-block;
  align-self: flex-start;
  padding: 20px 40px;
  background: linear-gradient(113deg, #ECB623 -15.76%, #FFBA0A 102.86%);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SL-Hero-CTA:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 186, 10, 0.3);
  color: var(--color-white);
  text-decoration: none;
}

.SL-Hero-Image {
  display: flex;
  position: relative;
  flex: 0 0 400px;
  border-radius: 10px;
  overflow: hidden;
}

.SL-Hero-Image-Img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ── Use Cases ───────────────────────────────────────────────── */

.SL-UseCases {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 80px calc((((130 - 63) / (1920 - 1245)) * (100vw - 1245px)) + 63px);
}

.SL-UseCases-Heading {
  color: var(--heading-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.SL-UseCases-Grid {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1080px;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.SL-UseCases-Item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 calc(50% - 20px);
  min-width: 320px;
  max-width: 520px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid rgba(8, 0, 68, 0.15);
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SL-UseCases-Item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.SL-UseCases-Item-Icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.SL-UseCases-Item-Text {
  color: var(--color-gray);
}

/* ── Stats ───────────────────────────────────────────────────── */

.SL-Stats {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  background: var(--color-bg);
  padding: 60px calc((((130 - 63) / (1920 - 1245)) * (100vw - 1245px)) + 63px);
}

.SL-Stats-Grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1080px;
  width: 100%;
}

.SL-Stats-Item {
  text-align: center;
}

.SL-Stats-Item-Value {
  display: block;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.SL-Stats-Item-Label {
  display: block;
  font-size: 1.125rem;
  color: var(--text-color);
  margin-top: 6px;
  font-weight: 600;
}

/* ── Apps Grid ───────────────────────────────────────────────── */

.SL-Apps {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 80px calc((((130 - 63) / (1920 - 1245)) * (100vw - 1245px)) + 63px);
}

.SL-Apps-Heading {
  color: var(--heading-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.SL-Apps-Subheading {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 48px;
}

.SL-Apps-Grid {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1620px;
  min-width: 1024px;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.SL-Apps-Card {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1 1 calc(25% - 28px);
  min-width: 260px;
  max-width: 380px;
  background: var(--color-white);
  border: 1px solid rgba(8, 0, 68, 0.15);
  border-radius: 10px;
  padding: 28px 24px;
  text-decoration: none;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SL-Apps-Card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.SL-Apps-Card-Header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.SL-Apps-Card-Logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--color-bg);
  padding: 6px;
}

.SL-Apps-Card-Title {
  color: var(--heading-color);
  font-weight: 700;
}

.SL-Apps-Card-Description {
  color: var(--text-color);
  font-size: 1.125rem;
  margin-bottom: 16px;
  flex: 1;
}

.SL-Apps-Card-Price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}

.SL-Apps-Card-Price-Amount {
  font-weight: 800;
  color: var(--heading-color);
}

.SL-Apps-Card-Price-Period {
  font-size: 1rem;
  color: var(--color-gray-muted);
}

/* ── CTA ─────────────────────────────────────────────────────── */

.SL-CTA {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00197b 100%);
  padding: 80px calc((((130 - 63) / (1920 - 1245)) * (100vw - 1245px)) + 63px);
  text-align: center;
}

.SL-CTA-Heading {
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 16px;
}

.SL-CTA-Text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
}

.SL-CTA-Button {
  display: inline-block;
  padding: 20px 40px;
  background: linear-gradient(113deg, #ECB623 -15.76%, #FFBA0A 102.86%);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.SL-CTA-Button:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 186, 10, 0.3);
  color: var(--color-white);
  text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1245px) {
  .SL-Hero,
  .SL-UseCases,
  .SL-Stats,
  .SL-Apps,
  .SL-CTA {
    padding-left: 29px;
    padding-right: 29px;
  }

  .SL-Apps-Grid {
    min-width: unset;
    max-width: unset;
  }
}

@media (max-width: 1050px) {
  .SL-Hero {
    flex-direction: column-reverse;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 36px;
  }

  .SL-Hero-Content {
    flex: unset;
    max-width: unset;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .SL-Hero-CTA {
    align-self: center;
  }

  .SL-Hero-Image {
    flex: unset;
    width: 100%;
    max-width: 500px;
  }

  .SL-UseCases-Grid {
    flex-direction: column;
    align-items: center;
  }

  .SL-UseCases-Item {
    flex: unset;
    width: 100%;
    max-width: 520px;
    min-width: unset;
  }

  .SL-Stats-Grid {
    flex-wrap: wrap;
    gap: 40px;
  }

  .SL-Apps-Grid {
    justify-content: center;
  }

  .SL-Apps-Card {
    flex: 1 1 calc(50% - 28px);
    max-width: unset;
  }
}

@media (max-width: 750px) {
  .SL-Stats-Grid {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 450px) {
  .SL-Hero,
  .SL-UseCases,
  .SL-Stats,
  .SL-Apps,
  .SL-CTA {
    padding-left: 15px;
    padding-right: 15px;
  }

  .SL-Hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .SL-UseCases,
  .SL-Stats,
  .SL-Apps,
  .SL-CTA {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .SL-Hero-CTA {
    padding: 14px 28px;
  }

  .SL-Apps-Grid {
    flex-direction: column;
    gap: 20px;
  }

  .SL-Apps-Card {
    flex: unset;
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 20px 16px;
  }

  .SL-CTA-Button {
    padding: 14px 28px;
  }
}
