/* Start custom CSS for html, class: .elementor-element-1663b56 *//* ===============================
   Case Results Page - Inner Hero
================================ */

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-case-hero {
  position: relative;
  min-height: 68vh;
  padding: 190px 0 105px;
  background: #071b33;
  overflow: hidden;
  font-family: inherit;
}

.sl-case-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 23, 43, 0.98) 0%,
      rgba(7, 27, 51, 0.94) 50%,
      rgba(11, 79, 138, 0.62) 100%
    ),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}

.sl-case-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.24));
  pointer-events: none;
}

.sl-case-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: center;
}

.sl-case-hero-content {
  max-width: 850px;
}

.sl-case-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #dff6ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 26px;
}

.sl-case-hero-content h1 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin: 0 0 24px;
}

.sl-case-hero-content p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.9;
  max-width: 780px;
  margin: 0;
}

.sl-case-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sl-case-hero-primary,
.sl-case-hero-secondary {
  min-height: 52px;
  padding: 15px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
}

.sl-case-hero-primary {
  color: #071b33;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.sl-case-hero-primary:hover {
  background: #dff6ff;
  transform: translateY(-2px);
}

.sl-case-hero-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}

.sl-case-hero-secondary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* Privacy Note */
.sl-case-hero-note {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 64px rgba(0,0,0,0.20);
  overflow: hidden;
}

.sl-case-hero-note::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.30), transparent 68%);
  pointer-events: none;
}

.sl-case-hero-note span,
.sl-case-hero-note h3,
.sl-case-hero-note p {
  position: relative;
  z-index: 2;
}

.sl-case-hero-note span {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #dff6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}

.sl-case-hero-note h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
  margin: 0 0 14px;
}

.sl-case-hero-note p {
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-case-hero {
    min-height: auto;
    padding: 165px 0 85px;
  }

  .sl-case-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sl-case-hero-note {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .sl-container {
    padding: 0 18px;
  }

  .sl-case-hero {
    padding: 140px 0 66px;
  }

  .sl-case-hero-bg {
    background:
      linear-gradient(
        90deg,
        rgba(6, 23, 43, 0.98) 0%,
        rgba(7, 27, 51, 0.94) 100%
      ),
      url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
  }

  .sl-case-hero-content h1 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .sl-case-hero-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .sl-case-hero-actions {
    display: grid;
  }

  .sl-case-hero-primary,
  .sl-case-hero-secondary {
    width: 100%;
  }

  .sl-case-hero-note {
    padding: 24px;
    border-radius: 24px;
  }

  .sl-case-hero-note h3 {
    font-size: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7f0b4c2 *//* ===============================
   Case Results Page - Featured Case
================================ */

.sl-featured-case-section {
  position: relative;
  padding: 96px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: inherit;
}

.sl-featured-case-section::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.13), transparent 68%);
  pointer-events: none;
}

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-featured-case-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}

/* Left */
.sl-featured-case-left {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #071b33, #0b4f8a);
  box-shadow: 0 30px 76px rgba(7, 27, 51, 0.20);
  overflow: hidden;
}

.sl-featured-case-left::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.32), transparent 68%);
  pointer-events: none;
}

.sl-featured-case-label,
.sl-featured-case-left h2,
.sl-featured-case-left p,
.sl-featured-case-outcome {
  position: relative;
  z-index: 2;
}

.sl-featured-case-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #dff6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.sl-featured-case-left h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0 0 20px;
}

.sl-featured-case-left p {
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

/* Outcome */
.sl-featured-case-outcome {
  margin-top: 36px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.sl-featured-case-outcome small {
  display: block;
  color: #dff6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.sl-featured-case-outcome strong {
  display: block;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.4px;
  margin-bottom: 10px;
}

.sl-featured-case-outcome span {
  display: block;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.7;
}

/* Right */
.sl-featured-case-right {
  position: relative;
  padding: 10px 0;
}

.sl-featured-case-info {
  display: grid;
  gap: 14px;
}

.sl-featured-case-info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 24px;
  background: #f5f9fc;
  border: 1px solid #e5edf5;
  transition: 0.25s ease;
}

.sl-featured-case-info-row:hover {
  transform: translateX(6px);
  background: #ffffff;
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.08);
}

.sl-featured-case-info-row.highlighted {
  background: #ffffff;
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.08);
}

.sl-featured-case-info-row strong {
  color: #071b33;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

.sl-featured-case-info-row span {
  color: #5d6b7c;
  font-size: 15px;
  line-height: 1.7;
}

/* Note */
.sl-featured-case-note {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 26px;
  background: #f5f9fc;
  border: 1px solid #e5edf5;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.sl-featured-case-note strong {
  color: #071b33;
  font-size: 16px;
  font-weight: 900;
}

.sl-featured-case-note p {
  color: #5d6b7c;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-featured-case-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sl-featured-case-right {
    padding: 0;
  }

  .sl-featured-case-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .sl-featured-case-section {
    padding: 64px 0;
  }

  .sl-container {
    padding: 0 18px;
  }

  .sl-featured-case-left {
    padding: 28px;
    border-radius: 26px;
  }

  .sl-featured-case-left h2 {
    font-size: 30px;
  }

  .sl-featured-case-left p {
    font-size: 15px;
  }

  .sl-featured-case-outcome {
    padding: 22px;
    border-radius: 22px;
  }

  .sl-featured-case-outcome strong {
    font-size: 42px;
  }

  .sl-featured-case-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
    border-radius: 22px;
  }

  .sl-featured-case-note {
    padding: 22px;
    border-radius: 22px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ed3b5d5 *//* ===============================
   Case Results Page - Results Grid
================================ */

.sl-case-grid-section {
  position: relative;
  padding: 96px 0;
  background: #f5f9fc;
  overflow: hidden;
  font-family: inherit;
}

.sl-case-grid-section::before {
  content: "";
  position: absolute;
  left: -150px;
  top: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 68%);
  pointer-events: none;
}

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top */
.sl-case-grid-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 52px;
  align-items: end;
  margin-bottom: 48px;
}

.sl-case-grid-top span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0b4f8a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.sl-case-grid-top h2 {
  color: #071b33;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0;
}

.sl-case-grid-top p {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

/* Grid */
.sl-case-results-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.sl-case-result-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5edf5;
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.06);
  overflow: hidden;
  transition: 0.25s ease;
}

.sl-case-result-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 68%);
  opacity: 0;
  transition: 0.25s ease;
}

.sl-case-result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 24px 58px rgba(7, 27, 51, 0.12);
}

.sl-case-result-card:hover::before {
  opacity: 1;
}

.sl-case-result-card.featured {
  background: linear-gradient(135deg, #071b33, #0b4f8a);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 28px 70px rgba(7, 27, 51, 0.20);
}

/* Head */
.sl-case-result-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.sl-case-result-head span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0b4f8a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.sl-case-result-head strong {
  color: #071b33;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.sl-case-result-card.featured .sl-case-result-head span {
  background: rgba(255,255,255,0.12);
  color: #dff6ff;
  border: 1px solid rgba(255,255,255,0.12);
}

.sl-case-result-card.featured .sl-case-result-head strong {
  color: #ffffff;
}

/* Content */
.sl-case-result-card h3 {
  position: relative;
  z-index: 2;
  color: #071b33;
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
  margin: 0 0 16px;
}

.sl-case-result-card p {
  position: relative;
  z-index: 2;
  color: #5d6b7c;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.sl-case-result-card.featured h3 {
  color: #ffffff;
  font-size: 28px;
}

.sl-case-result-card.featured p {
  color: #dbeafe;
}

/* Details */
.sl-case-result-details {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.sl-case-result-details div {
  padding: 16px;
  border-radius: 18px;
  background: #f5f9fc;
  border: 1px solid #e5edf5;
}

.sl-case-result-details small {
  display: block;
  color: #0b4f8a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.sl-case-result-details b {
  display: block;
  color: #071b33;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}

.sl-case-result-card.featured .sl-case-result-details div {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.12);
}

.sl-case-result-card.featured .sl-case-result-details small {
  color: #dff6ff;
}

.sl-case-result-card.featured .sl-case-result-details b {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1100px) {
  .sl-case-grid-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sl-case-grid-top p {
    max-width: 760px;
  }

  .sl-case-results-grid {
    grid-template-columns: 1fr;
  }

  .sl-case-result-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .sl-case-grid-section {
    padding: 64px 0;
  }

  .sl-container {
    padding: 0 18px;
  }

  .sl-case-grid-top {
    margin-bottom: 34px;
  }

  .sl-case-grid-top h2 {
    font-size: 30px;
  }

  .sl-case-grid-top p {
    font-size: 15px;
  }

  .sl-case-result-card {
    padding: 24px;
    border-radius: 24px;
  }

  .sl-case-result-card h3,
  .sl-case-result-card.featured h3 {
    font-size: 22px;
  }

  .sl-case-result-card p {
    font-size: 14px;
  }

  .sl-case-result-head {
    flex-direction: column;
    gap: 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-150a916 *//* ===============================
   Case Results Page - How We Support Cases
================================ */

.sl-case-support-section {
  position: relative;
  padding: 96px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: inherit;
}

.sl-case-support-section::before {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.13), transparent 68%);
  pointer-events: none;
}

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-case-support-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Left */
.sl-case-support-content {
  max-width: 540px;
}

.sl-case-support-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0b4f8a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.sl-case-support-content h2 {
  color: #071b33;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0 0 20px;
}

.sl-case-support-content p {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

.sl-case-support-btn {
  margin-top: 34px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #071b33, #0b4f8a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(7, 27, 51, 0.18);
  transition: 0.25s ease;
}

.sl-case-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 27, 51, 0.24);
}

/* Steps */
.sl-case-support-steps {
  display: grid;
  gap: 16px;
}

.sl-case-support-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 26px;
  background: #f5f9fc;
  border: 1px solid #e5edf5;
  transition: 0.25s ease;
}

.sl-case-support-step:hover {
  transform: translateX(6px);
  background: #ffffff;
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 48px rgba(7, 27, 51, 0.08);
}

.sl-case-support-step strong {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #071b33, #0b4f8a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(11, 79, 138, 0.20);
}

.sl-case-support-step h3 {
  color: #071b33;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  margin: 0 0 8px;
}

.sl-case-support-step p {
  color: #5d6b7c;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-case-support-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sl-case-support-content {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .sl-case-support-section {
    padding: 64px 0;
  }

  .sl-container {
    padding: 0 18px;
  }

  .sl-case-support-content h2 {
    font-size: 30px;
  }

  .sl-case-support-content p {
    font-size: 15px;
  }

  .sl-case-support-btn {
    width: 100%;
  }

  .sl-case-support-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    border-radius: 22px;
  }

  .sl-case-support-step h3 {
    font-size: 19px;
  }

  .sl-case-support-step p {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b420d0e *//* ===============================
   Case Results Page - Final CTA
================================ */

.sl-case-final-cta {
  position: relative;
  padding: 96px 0;
  background: #f5f9fc;
  overflow: hidden;
  font-family: inherit;
}

.sl-case-final-cta::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 68%);
  pointer-events: none;
}

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-case-final-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 50px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(11, 79, 138, 0.94)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 76px rgba(7, 27, 51, 0.22);
  overflow: hidden;
}

.sl-case-final-box::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.34), transparent 68%);
  pointer-events: none;
}

.sl-case-final-box::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 68%);
  pointer-events: none;
}

.sl-case-final-content,
.sl-case-final-actions {
  position: relative;
  z-index: 2;
}

.sl-case-final-content span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #dff6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.sl-case-final-content h2 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.13;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0 0 18px;
  max-width: 850px;
}

.sl-case-final-content p {
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.85;
  max-width: 850px;
  margin: 0;
}

.sl-case-final-actions {
  display: grid;
  gap: 14px;
  min-width: 230px;
}

.sl-case-final-primary,
.sl-case-final-secondary {
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.25s ease;
}

.sl-case-final-primary {
  background: #ffffff;
  color: #071b33;
}

.sl-case-final-primary:hover {
  background: #dff6ff;
  transform: translateY(-2px);
}

.sl-case-final-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}

.sl-case-final-secondary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-case-final-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sl-case-final-actions {
    display: flex;
    flex-wrap: wrap;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .sl-case-final-cta {
    padding: 64px 0;
  }

  .sl-container {
    padding: 0 18px;
  }

  .sl-case-final-box {
    padding: 28px;
    border-radius: 26px;
  }

  .sl-case-final-content h2 {
    font-size: 30px;
  }

  .sl-case-final-content p {
    font-size: 15px;
  }

  .sl-case-final-actions {
    display: grid;
    width: 100%;
  }

  .sl-case-final-primary,
  .sl-case-final-secondary {
    width: 100%;
  }
}/* End custom CSS */