/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 05 2026 | 12:39:02 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

.ecosys-wp {
  --ecosys-teal: #0d9488;
  --ecosys-blue: #0284c7;
  --ecosys-green: #16a34a;
  --ecosys-purple: #6d5dfc;
  --ecosys-ink: #111827;
  --ecosys-muted: #5f6b7a;
  --ecosys-line: #dcefeb;
  --ecosys-soft: #f1fbfa;
  --ecosys-radius: 8px;
  color: var(--ecosys-ink);
  background: #fff;
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.ecosys-wp,
.ecosys-wp * {
  box-sizing: border-box;
}

.ecosys-wp a {
  color: inherit;
  text-decoration: none;
}

.ecosys-wp img,
.ecosys-wp svg {
  display: block;
  max-width: 100%;
}

.ecosys-wp .ecosys-container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.ecosys-wp .ecosys-section {
  padding: 84px 0;
}

.ecosys-wp .ecosys-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 12px;
  border: 1px solid rgba(13, 148, 136, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, #f0fdfa, #eff6ff);
  color: var(--ecosys-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ecosys-wp .ecosys-title {
  margin: 14px 0 0;
  color: var(--ecosys-ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.ecosys-wp .ecosys-copy {
  color: var(--ecosys-muted);
  font-size: 16px;
}

.ecosys-wp .ecosys-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--ecosys-radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.ecosys-wp .ecosys-btn:hover {
  transform: translateY(-1px);
}

.ecosys-wp .ecosys-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ecosys-teal), var(--ecosys-blue));
  box-shadow: 0 10px 24px rgba(13, 148, 136, .2);
}

.ecosys-wp .ecosys-btn-outline {
  color: var(--ecosys-teal);