.elementor-3736 .elementor-element.elementor-element-f45e490{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-d08d422 */:root {
  --primary: #1e3a8a;
  --accent: #2563eb;
  --light: #f8fafc;
  --dark: #111827;
  --medium: #4b5563;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* HERO */

.saas-hero {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  text-align: center;
}

.saas-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.saas-hero p {
  font-size: 18px;
  color: var(--medium);
  max-width: 750px;
  margin: 0 auto 30px auto;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: #1e40af;
}

/* TRUST BAR */

.saas-trust {
  background: var(--light);
}

.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 500;
}

/* PILLARS */

.section-intro {
  text-align: center;
  color: var(--medium);
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.pillar-card {
  background: var(--light);
  padding: 30px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  display: block;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: #eef2ff;
}

.pillar-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.pillar-card p {
  color: var(--medium);
  font-size: 15px;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent);
  font-weight: 600;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.process-step span {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

/* CTA */

.saas-cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  text-align: center;
  color: #fff;
}

.saas-cta p {
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .saas-hero h1 {
    font-size: 36px;
  }
}/* End custom CSS */