:root{
  --bg:#0b0f19;
  --ink:#ffffff;
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.10);

  --red:#d61f26;
  --blue:#0b4aa2;
  --black:#070a12;

  --shadow: 0 18px 44px rgba(0,0,0,0.40);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--ink);
  background:
    radial-gradient(1000px 420px at 15% 0%, rgba(11,74,162,.30), transparent 60%),
    radial-gradient(1000px 420px at 85% 0%, rgba(214,31,38,.22), transparent 55%),
    linear-gradient(180deg, var(--black), var(--bg));
}

.wrap{
  width:min(1160px, calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,10,18,0.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand__logo{ height:42px; width:auto; display:block; }

.nav{
  display:flex;
  gap:16px;
  align-items:center;
  font-weight:800;
  letter-spacing:.2px;
  color: rgba(255,255,255,0.86);
}
.nav a{ opacity:.92; color: inherit; text-decoration:none; }
.nav a:hover{ opacity:1; text-decoration:none; }
.nav__cta{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.hero{ padding: 34px 0 10px; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  background: rgba(11,74,162,0.18);
  border: 1px solid rgba(11,74,162,0.35);
  color: rgba(255,255,255,0.90);
  font-weight:900;
  letter-spacing:.4px;
  font-size: 16px;
  margin-bottom: 16px;
}
h1{
  margin:0 0 12px 0;
  font-size: 42px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px 0;
  color: var(--muted);
  font-size: 16px;
  line-height:1.55;
}
.hero__ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 14px;
}
.hero__note{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pill{
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  font-weight:900;
  font-size: 12px;
  letter-spacing:.2px;
  color: rgba(255,255,255,0.86);
}

.hero__media img{
  width:100%;
  height:auto;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.02);
  max-height: 520px;
  object-fit: contain;
}

.section{ padding: 34px 0; }
.section--alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2{
  margin:0 0 8px 0;
  font-size: 24px;
  letter-spacing:-.3px;
}
.muted{ color: var(--muted); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.steps{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.step__num{
  width:34px;
  height:34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(214,31,38,0.18);
  border:1px solid rgba(214,31,38,0.35);
  font-weight:950;
  margin-bottom: 10px;
}
h3{
  margin:0 0 8px 0;
  font-size: 18px;
  letter-spacing:-.2px;
}
.step p{ margin:0; color: var(--muted); line-height:1.5; }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
  margin-top: 14px;
}

.checklist{
  margin:12px 0 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checklist li{
  position:relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.86);
  line-height:1.45;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 8px;
  background: rgba(11,74,162,0.20);
  border:1px solid rgba(11,74,162,0.35);
  color:#fff;
  font-weight:950;
  font-size: 13px;
}

.callout{
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 14px;
  border:1px solid rgba(214,31,38,0.35);
  background: rgba(214,31,38,0.10);
}
.callout__title{ font-weight:950; margin-bottom:6px; }
.callout__text{ color: rgba(255,255,255,0.86); line-height:1.5; }

.code{
  margin:10px 0 0 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  overflow:auto;
  font-size: 12.5px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.grid2{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.bullet{ margin:10px 0 0 18px; color: var(--muted); line-height:1.6; }
.bullet li{ margin:6px 0; }

.ctaBar{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 16px;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.ctaBar__title{ font-weight:950; margin-bottom:4px; }

.apply{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.apply__actions{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }
.fineprint{ margin-top: 12px; color: rgba(255,255,255,0.60); font-size: 12px; line-height:1.5; }

.faq{
  margin-top: 12px;
  display:grid;
  gap:12px;
}
details summary{
  cursor:pointer;
  font-weight:950;
  list-style:none;
}
details summary::-webkit-details-marker{ display:none; }
details summary::after{
  content:"+";
  float:right;
  opacity:.7;
}
details[open] summary::after{ content:"—"; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight:950;
  letter-spacing:.2px;
  border:2px solid transparent;
  user-select:none;
  cursor:pointer;
  text-decoration:none;
  color: #fff;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,0.28); text-decoration:none; }
.btn:active{ transform: translateY(0px); box-shadow:none; }

.btn--primary{
  background: var(--red);
  border-color: rgba(214,31,38,0.35);
}
.btn--primary:hover{ background: #c51b21; }

.btn--secondary{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.btn--secondary:hover{ border-color: rgba(11,74,162,0.45); }

.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,0.30);
  padding: 18px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer__title{ font-weight:950; }

.toast{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.86);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing:.2px;
  opacity: 0;
  pointer-events:none;
  transition: opacity .15s ease, transform .15s ease;
}
.toast--show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 980px){
    .steps{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .apply{ grid-template-columns: 1fr; }
  h1{ font-size: 34px; }
}

@media (max-width: 560px){
  .nav{ display:none; }
  .steps{ grid-template-columns: 1fr; }
}


/* Blue sample box */
.example--blue{
  border-color: rgba(11,74,162,0.45) !important;
  background: rgba(11,74,162,0.10);
}
.example--blue .code{
  border-color: rgba(11,74,162,0.35);
}
.example--blue .btn--secondary{
  border-color: rgba(11,74,162,0.55);
}




/* Framed flow card (blue background) */
.flowFrame{
  width: 100%;

  border-radius: 26px;
  padding: 14px;
  background: radial-gradient(800px 280px at 20% 0%, rgba(11,74,162,.55), transparent 60%),
              radial-gradient(700px 260px at 90% 20%, rgba(214,31,38,.22), transparent 55%),
              rgba(11,74,162,0.16);
  border: 1px solid rgba(11,74,162,0.45);
  box-shadow: var(--shadow);
}
.flowFrame__inner{
  border-radius: 22px;
  padding: 18px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
}
.flowTitle{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 18px;
}
.flowSub{
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-weight: 750;
  font-size: 13px;
}
.flowGrid{
  margin-top: 14px;
  display:grid;
  gap:12px;
}
.flowRow{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}
.flowBadge{
  width:40px;
  height:40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color:#fff;
  flex:0 0 auto;
  box-shadow: 0 10px 18px rgba(0,0,0,0.22);
}
.flowBadge--blue{ background: rgba(11,74,162,0.95); }
.flowBadge--red{ background: rgba(214,31,38,0.95); }
.flowBadge--green{ background: rgba(37,211,102,0.92); color:#072b18; }
.flowT{
  font-weight: 950;
  letter-spacing:-.1px;
}
.flowS{
  color: rgba(255,255,255,0.72);
  font-weight: 750;
  font-size: 13px;
  margin-top: 3px;
  line-height: 1.35;
}


/* WhatsApp bar */
.wspBar{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.wspBar__left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.wspBar__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing:.2px;
  background: rgba(37,211,102,0.18);
  border: 1px solid rgba(37,211,102,0.45);
}
.wspBar__text{ font-weight: 850; }
.callout--blue{
  border-color: rgba(11,74,162,0.45) !important;
  background: rgba(11,74,162,0.10) !important;
}
.submitGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 900px){
  .submitGrid{ grid-template-columns: 1fr; 
  .hero__grid{ grid-template-columns: 1fr; }
}
}


.flowS__small{
  display:inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.92;
}

#submit-options{ padding-top: 18px; }


.hero__note{gap:10px;}


/* Ensure Lead Flow stays on the right side within hero */
@media (max-width: 900px){
  }


@media (max-width: 900px){
  }


/* Hero layout: flow on upper-right */


@media (max-width: 900px){
  
}


/* Compact Lead Flow card */

.flowFrame--compact .flowFrame__inner{
  padding: 14px;
  border-radius: 18px;
}
.flowFrame--compact .flowTitle{ font-size: 16px; }
.flowFrame--compact .flowSub{ font-size: 12px; }
.flowFrame--compact .flowGrid{ margin-top: 10px; gap:10px; }
.flowFrame--compact .flowRow{
  padding:10px;
  border-radius: 14px;
}
.flowFrame--compact .flowBadge{
  width:34px;
  height:34px;
  border-radius: 12px;
  font-size: 14px;
}
.flowFrame--compact .flowT{ font-size: 14px; }
.flowFrame--compact .flowS{ font-size: 12px; }
.flowFrame--compact .flowS__small{ font-size: 11px; margin-top: 4px; }

.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.hero__media{
  width: 100%;
  align-self: start;
}

.flowFrame--compact{
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  padding: 10px;
  border-radius: 22px;
}

.flowFrame--compact .flowTitle{ font-size: 16px; }
.flowFrame--compact .flowSub{ font-size: 12px; }
.flowFrame--compact .flowRow{ padding: 10px; border-radius: 14px; }
.flowFrame--compact .flowBadge{ width: 34px; height: 34px; border-radius: 12px; font-size: 14px; }
.flowFrame--compact .flowT{ font-size: 14px; }
.flowFrame--compact .flowS{ font-size: 12px; }


@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr !important; }
  .hero__media{ margin-top: 14px; }
  .flowFrame--compact{
    max-width: none !important;
    margin-left: 0 !important;
    padding: 10px !important;
  }
  .flowFrame--compact .flowFrame__inner{ padding: 14px !important; }
  .flowFrame--compact .flowRow{ padding: 10px !important; }
  .wspBar{ flex-direction: column; align-items: stretch; }
  .wspBar .btn{ width: 100%; justify-content: center; }
  .hero__ctaRow .btn{ width: 100%; }
  .hero__ctaRow{ gap: 10px; }
  .hero__note{ gap: 8px; }
  .pill{ font-size: 12px; padding: 8px 10px; }
        max-width: 220px;
}


