.elementor-4183 .elementor-element.elementor-element-425cf3a{--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;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a6f8a45 *//* styles.css — same design system (colors: #61CE70, #6EC1E4, background white, font DM Sans) */
:root{
  --green:#61CE70;
  --blue:#6EC1E4;

  --bg:#ffffff;
  --text:#0b1220;
  --muted:#526071;
  --line:#e6edf5;

  --softA: rgba(97,206,112,0.10);
  --softB: rgba(110,193,228,0.12);

  --radius: 18px;
  --radius-sm: 12px;

  --shadow: 0 18px 50px rgba(11,18,32,0.10);
  --shadowSoft: 0 12px 28px rgba(11,18,32,0.07);
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit; text-decoration:none;}
.container{width:min(1120px, calc(100% - 40px)); margin-inline:auto;}

/* Top strip */
.strip{
  background: linear-gradient(135deg, var(--softA), var(--softB));
  border-bottom:1px solid rgba(230,237,245,0.9);
  font-weight:800;
  color:#0b3b4f;
  font-size:13px;
}
.strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}
.strip-left{display:flex; align-items:center; gap:10px;}
.strip-right{display:flex; gap:12px; opacity:0.95;}
.strip-right a{padding:6px 10px; border-radius:999px;}
.strip-right a:hover{background: rgba(255,255,255,0.65);}

.pulse{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 20px rgba(110,193,228,0.35);
}

/* Layout */
.app{
  display:grid;
  grid-template-columns: 320px 1fr;
  min-height: calc(100vh - 41px);
}

/* Sidebar */
.side{
  position:sticky;
  top:41px;
  align-self:start;
  height: calc(100vh - 41px);
  border-right:1px solid rgba(230,237,245,0.95);
  background: #fff;
  padding:18px;
  overflow:auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:0.2px;
  margin-bottom:14px;
}
.brand-icon{
  width:14px; height:14px;
  border-radius:4px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 24px rgba(97,206,112,0.25);
}
.brand-text{font-size:16px;}

.side-card{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(230,237,245,1);
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,1));
  box-shadow: var(--shadowSoft);
  padding:14px;
}
.side-title{
  font-weight:900;
  margin-bottom:10px;
  color:#0b3b4f;
}
.mini-flow{display:flex; flex-direction:column; gap:9px;}
.mini-step{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  color:#0b1220;
}
.mini-dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  flex:0 0 auto;
}
.side-note{
  margin-top:12px;
  padding:10px 12px;
  border-radius: var(--radius);
  border:1px dashed rgba(110,193,228,0.55);
  background: rgba(110,193,228,0.08);
  color: var(--muted);
  font-size:13.5px;
}
.side-note strong{color:var(--text);}

.side-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:14px 0;
}
.side-nav a{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid transparent;
  color: var(--muted);
  font-weight:800;
}
.side-nav a:hover{
  background: rgba(110,193,228,0.10);
  color:#0b3b4f;
  border-color: rgba(110,193,228,0.25);
}
.side-nav a.active{
  background: linear-gradient(135deg, rgba(97,206,112,0.14), rgba(110,193,228,0.14));
  color:#0b3b4f;
  border-color: rgba(110,193,228,0.30);
}

.side-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px);}

.btn-primary{
  background: linear-gradient(135deg, var(--green), var(--blue));
  color:#052013;
  box-shadow: 0 16px 30px rgba(110,193,228,0.22);
}
.btn-primary:hover{box-shadow: 0 20px 36px rgba(110,193,228,0.28);}

.btn-outline{
  background:#fff;
  border-color: rgba(110,193,228,0.55);
  color:#0b3b4f;
}
.btn-outline:hover{background: rgba(110,193,228,0.10);}

.btn-ghost{
  background:transparent;
  border-color: rgba(230,237,245,1);
  color: var(--text);
}
.btn-ghost:hover{background: rgba(11,18,32,0.04);}

.main{padding: 0 0 34px;}

/* Hero */
.hero{
  padding:42px 26px 26px;
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(110,193,228,0.18), transparent 60%),
    radial-gradient(900px 420px at 80% 5%, rgba(97,206,112,0.16), transparent 55%),
    #fff;
  border-bottom:1px solid rgba(230,237,245,0.95);
}
.hero-grid{
  max-width: 1120px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:18px;
  align-items:start;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  color:#0b3b4f;
  background: linear-gradient(135deg, rgba(97,206,112,0.16), rgba(110,193,228,0.16));
  border:1px solid rgba(110,193,228,0.30);
}
h1{
  margin:12px 0 12px;
  font-size: clamp(30px, 3.0vw, 44px);
  line-height:1.12;
  letter-spacing:-0.6px;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:16.5px;
  max-width: 68ch;
}

.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 18px;}

.metric-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 10px;
}
.metric{
  border:1px solid rgba(230,237,245,1);
  border-radius: var(--radius-sm);
  padding:12px;
  background:#fff;
  box-shadow: var(--shadowSoft);
}
.metric-k{
  font-weight:900;
  color:#0b3b4f;
  font-size:12.5px;
  letter-spacing:0.2px;
  margin-bottom:4px;
}
.metric-v{font-weight:900; font-size:14px;}

.hero-visual .stack{display:flex; flex-direction:column; gap:12px;}
.stack-card{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(230,237,245,1);
  background:#fff;
  box-shadow: var(--shadow);
  padding:14px;
}
.stack-top{display:flex; gap:12px; align-items:flex-start;}
.stack-icon{
  width:40px; height:40px;
  border-radius: 14px;
  flex:0 0 auto;
  border:1px solid transparent;
}
.i-green{background: rgba(97,206,112,0.18); border-color: rgba(97,206,112,0.35);}
.i-blue{background: rgba(110,193,228,0.18); border-color: rgba(110,193,228,0.35);}
.stack-title{font-weight:900; margin-bottom:2px;}
.stack-sub{color:var(--muted); font-size:13.5px;}
.stack-chip{
  margin-top:10px;
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:#0b3b4f;
  background: rgba(110,193,228,0.10);
  border:1px solid rgba(110,193,228,0.25);
}

/* Sections */
.section{
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 26px;
}
.section.soft{
  background: linear-gradient(135deg, rgba(110,193,228,0.07), rgba(97,206,112,0.05));
  border-top:1px solid rgba(230,237,245,0.95);
  border-bottom:1px solid rgba(230,237,245,0.95);
}
.section-head h2{
  margin:0 0 6px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-0.3px;
}
.section-head p{margin:0; color:var(--muted);}
.muted{color:var(--muted);}

/* Cards */
.cards-2{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.cards-3{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(230,237,245,1);
  background:#fff;
  box-shadow: var(--shadowSoft);
  padding:16px;
}
.card-head{display:flex; align-items:center; gap:10px; margin-bottom:10px;}
.card h3{margin:0; letter-spacing:-0.2px;}
.card ul{margin:0; padding-left:18px; color: var(--muted);}
.card li{margin:8px 0;}
.card-icon{
  width:38px; height:38px;
  border-radius: 14px;
  border:1px solid transparent;
}

/* Process / How grid */
.how-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:14px;
  align-items:start;
}
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  padding:14px;
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(230,237,245,1);
  background:#fff;
  box-shadow: var(--shadowSoft);
  margin-bottom:12px;
}
.step-n{
  width:44px; height:44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#0b3b4f;
  background: linear-gradient(135deg, rgba(97,206,112,0.18), rgba(110,193,228,0.18));
  border:1px solid rgba(110,193,228,0.30);
}
.step h3{margin:0 0 6px;}
.step p{margin:0; color:var(--muted);}
.step .muted{margin-top:8px; font-size:13.5px;}

/* Flowboard */
.flowboard{
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(230,237,245,1);
  background:#fff;
  box-shadow: var(--shadow);
  padding:16px;
  position:sticky;
  top:64px;
}
.flow-title{font-weight:900; color:#0b3b4f; margin-bottom:12px;}
.flow-row{display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap;}
.pill{
  padding:9px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12.5px;
  color:#0b3b4f;
  background: rgba(110,193,228,0.10);
  border:1px solid rgba(110,193,228,0.25);
}
.arrow{opacity:0.6; font-weight:900;}
.flow-foot{
  margin-top:10px;
  padding-top:12px;
  border-top:1px solid rgba(230,237,245,1);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.tiny{display:flex; align-items:center; gap:10px; color: var(--muted); font-size:13.5px;}
.tiny-dot{
  width:8px; height:8px; border-radius:50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

/* CTA */
.cta{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 26px 46px;
}
.cta-box{
  border-radius: calc(var(--radius) + 12px);
  border:1px solid rgba(110,193,228,0.45);
  background: linear-gradient(135deg, rgba(97,206,112,0.12), rgba(110,193,228,0.12));
  box-shadow: var(--shadowSoft);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap;}

/* FAQ */
.faq{margin-top:16px; display:flex; flex-direction:column; gap:12px;}
.faq-item{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(230,237,245,1);
  background:#fff;
  box-shadow: var(--shadowSoft);
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:16px 16px;
  font-weight:900;
  position:relative;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:14px;
  top:50%;
  transform: translateY(-50%);
  width:30px; height:30px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(110,193,228,0.12);
  border:1px solid rgba(110,193,228,0.30);
  font-weight:900;
}
.faq-item[open] summary::after{content:"–";}
.faq-body{padding:0 16px 16px; color:var(--muted);}

.footnote{
  margin-top:16px;
  padding:14px 16px;
  border-radius: calc(var(--radius) + 6px);
  border:1px dashed rgba(97,206,112,0.45);
  background: rgba(97,206,112,0.08);
  color: var(--muted);
  font-size:13.5px;
}
.footnote strong{color:var(--text);}

/* Footer */
.footer{
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 26px 34px;
  border-top:1px solid rgba(230,237,245,0.95);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}
.to-top{
  font-weight:900;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness:2px;
  color:#0b3b4f;
}

/* Responsive */
@media (max-width: 1020px){
  .app{grid-template-columns: 1fr;}
  .side{
    position:relative;
    top:auto;
    height:auto;
    border-right:none;
    border-bottom:1px solid rgba(230,237,245,0.95);
  }
  .hero-grid{grid-template-columns: 1fr;}
  .metric-row{grid-template-columns: 1fr;}
  .cards-3{grid-template-columns: 1fr;}
  .cards-2{grid-template-columns: 1fr;}
  .how-grid{grid-template-columns: 1fr;}
  .flowboard{position:relative; top:auto;}
}
@media (max-width: 640px){
  .container{width:min(1120px, calc(100% - 28px));}
  .strip-right{display:none;}
  .cta-box{flex-direction:column; align-items:flex-start;}
}/* End custom CSS */