.elementor-4146 .elementor-element.elementor-element-971d7cc{--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-802dece *//* style.css (NEW DESIGN: sticky definition + accordion; high contrast) */
:root{
  --bg:#0E1117;
  --panel:#111827;
  --card:#161B22;
  --line:#2B3442;

  --text:#FFFFFF;
  --muted:#B9C2D0;

  --green:#00C853;
  --blue:#1F6FEB;
  --danger:#FF4D4D;

  --radius:16px;
  --shadow:0 14px 34px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

.page{ padding:5px 16px; }
.wrap{ max-width:1180px; margin:0 auto; }

/* HERO */
.hero{
  border:1px solid var(--line);
  background: var(--panel);
  border-radius: calc(var(--radius) + 6px);
  padding:22px;
  box-shadow: var(--shadow);
  margin-bottom:18px;
}
.heroTop{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:12px;
  letter-spacing:.12em;
}
.pillAlt{ border-color: rgba(255,255,255,.20); }

.heroTitle{ margin:0 0 8px; font-size:clamp(22px,3vw,38px); line-height:1.12; }
.heroTagline{ margin:0 0 10px; font-weight:800; color: rgba(255,255,255,.92); }
.heroSub{ margin:0; color: var(--muted); max-width: 95ch; }

.heroBtns{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
  color: var(--text);
}
.btnPrimary{
  background: var(--green);
  border-color: rgba(0,200,83,.55);
  color:#07110b;
}
.btnGhost{ background: transparent; }
.btnLine{
  background: transparent;
  border-color: rgba(31,111,235,.45);
}
.btn:hover{ transform: translateY(-1px); }

/* LAYOUT */
.layout{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:16px;
  align-items:start;
}

/* STICKY LEFT */
.stickyCard{
  position: sticky;
  top: 16px;
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  height: fit-content;
}
.stickyHeader{ margin-bottom: 10px; }
.stickyHeader h2{ margin:8px 0 0; font-size:18px; }

.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:12px;
  letter-spacing:.10em;
}
.badgeBlue{ border-color: rgba(31,111,235,.35); color: rgba(31,111,235,.95); }
.badgeGreen{ border-color: rgba(0,200,83,.35); color: rgba(0,200,83,.95); }
.badgeDanger{ border-color: rgba(255,77,77,.40); color: rgba(255,77,77,.95); }

.muted{ color: var(--muted); }

.miniFlow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin: 12px 0;
  padding: 12px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
}
.node{
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  font-size: 13px;
}
.arrow{ color: var(--muted); font-weight: 900; }

.whyBox{
  margin-top: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  padding: 12px;
}
.whyTitle{ font-weight:900; margin-bottom: 8px; }

.ticks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.ticks li{
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.92);
}
.ticks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--green);
  font-weight: 900;
}

/* RIGHT CONTENT */
.content{ display:grid; gap:14px; }

.card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.cardHead{ margin-bottom: 10px; }
.cardHead h2{ margin: 8px 0 0; font-size:18px; }

/* Accordion */
.accordion{ display:grid; gap: 10px; }
details{
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  overflow:hidden;
}
summary{
  cursor:pointer;
  list-style:none;
  padding: 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
summary::-webkit-details-marker{ display:none; }

.sumTitle{ font-weight:900; }
.sumHint{ color: var(--muted); font-size: 13px; }

.sumBody{ padding: 0 12px 12px; }
.note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}

/* Bullets */
.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.92);
}
.bullets li{ margin: 0 0 8px; }

.flowBox{
  margin-top: 10px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.18);
}
.flowTitle{
  font-size: 12px;
  letter-spacing:.12em;
  color: var(--muted);
  margin-bottom: 10px;
}
.flowLine{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.flowNode{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  font-size: 13px;
}
.flowAccent{ border-color: rgba(31,111,235,.35); }

.numSteps{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.92);
}
.numSteps li{ margin: 0 0 8px; }

.chipGrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 10px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  font-size: 13px;
}

.pillRow{ display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0; }
.chipStrong{
  background: rgba(0,0,0,.20);
  border-color: rgba(255,255,255,.18);
  font-weight:900;
}

.small{ font-size: 12px; }

.danger{
  border-color: rgba(255,77,77,.30);
  background: linear-gradient(180deg, rgba(255,77,77,.08), rgba(255,255,255,.02));
}

/* Wide CTA */
.ctaWide{
  border:1px solid rgba(0,200,83,.25);
  background: linear-gradient(180deg, rgba(0,200,83,.10), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.ctaKicker{
  margin:0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing:.12em;
}
.ctaWide h2{ margin:0 0 8px; font-size: 18px; }
.ctaBtns{ display:flex; gap:10px; flex-wrap:wrap; }

/* Responsive */
@media (max-width: 980px){
  .layout{ grid-template-columns: 1fr; }
  .stickyCard{ position: static; }
}/* End custom CSS */