/* ========================================
   SECM CONVERSION MODULE
   CTAs, Authority Signals, Applications
   ======================================== */

/* ========================================
   CONFIGURATION CTA
   ======================================== */

.sx-config-cta {
  background: linear-gradient(135deg, rgba(45, 132, 205, 0.05), rgba(45, 132, 205, 0.02));
  padding: var(--space-section) 0;
}

.sx-container-narrow {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sx-cta-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 44px 36px;
}

.sx-cta-content h2 {
  font-family: var(--font-headings);
  font-size: var(--font-size-h2);
  color: var(--color-brand-gray);
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.3;
}

.sx-cta-content p {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 30px;
}

.sx-cta-content .sx-btn-row {
  justify-content: center;
}

/* ========================================
   AUTHORITY SECTION
   ======================================== */

.sx-authority {
  background: var(--color-bg-white);
  padding: var(--space-section) 0;
  margin-top: 40px;
}

.sx-authority-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.sx-authority-stat {
  text-align: center;
  max-width: 200px;
}

.sx-stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.sx-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-brand-blue);
  font-family: var(--font-headings);
  margin-bottom: 10px;
}

.sx-stat-text {
  font-size: var(--font-size-body);
  color: var(--color-brand-gray);
  line-height: 1.5;
}

/* ========================================
   WHITE PAPER CTA
   ======================================== */

.sx-whitepaper-cta {
  max-width: 980px;
  margin: 25px auto 0;
  border-top: 1px solid rgba(45, 132, 205, 0.2);
  border-bottom: 1px solid rgba(45, 132, 205, 0.12);
}

.sx-whitepaper-cta:hover {
  transform: none;
}

.sx-whitepaper-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
}

.sx-whitepaper-icon {
  flex-shrink: 0;
}

.sx-whitepaper-icon img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.sx-whitepaper-text h3 {
  font-family: var(--font-headings);
  font-size: var(--font-size-h3);
  color: var(--color-brand-gray);
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.3;
}

.sx-whitepaper-text p {
  font-size: var(--font-size-body);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 25px;
}

.sx-whitepaper-text .sx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .sx-whitepaper-cta {
    margin-top: 20px;
  }

  .sx-whitepaper-content {
    flex-direction: column;
    text-align: center;
    padding: 28px 0;
    gap: 25px;
  }

  .sx-whitepaper-text h3 {
    font-size: var(--font-size-h4);
  }

  .sx-whitepaper-icon img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .sx-whitepaper-content {
    padding: 24px 0;
  }

  .sx-whitepaper-icon img {
    width: 70px;
    height: 70px;
  }

  .sx-whitepaper-text h3 {
    font-size: var(--font-size-h5);
  }

  .sx-whitepaper-text p {
    font-size: var(--font-size-small);
  }
}

/* ========================================
   FOOTER CTA
   ======================================== */

.sx-footer-cta {
  background: var(--color-bg-light-gray);
  padding: 60px 0;
}

.sx-footer-cta-content {
  text-align: center;
}

.sx-footer-cta-content h3 {
  font-family: var(--font-headings);
  font-size: var(--font-size-h3);
  color: var(--color-brand-gray);
  margin: 0 0 25px 0;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .sx-applications-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sx-authority-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sx-config-cta,
  .sx-authority {
    padding: var(--space-section-sm) 0;
  }

  .sx-cta-content {
    padding: 30px 22px;
  }

  .sx-cta-content h2 {
    font-size: var(--font-size-h3);
  }

  .sx-authority-stats {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .sx-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sx-cta-content {
    padding: 24px 16px;
  }

  .sx-cta-content h2 {
    font-size: var(--font-size-h4);
  }

  .sx-footer-cta-content h3 {
    font-size: var(--font-size-h4);
  }

  .sx-stat-icon {
    font-size: 2.5rem;
  }
}