/*begin home page css*/

    :root{
      --bc-blue:#2071b4;
      --bc-blue-dark:#184f7d;
      --bc-navy:#1a2b49;
      --bc-green:#6ebd51;
      --bc-soft:#f4f8fc;
      --bc-soft-2:#eef4fa;
      --bc-text:#203040;
      --bc-muted:#5f7186;
      --bc-border:#d7e3ef;
      --bc-white:#ffffff;
      --bc-shadow:0 12px 28px rgba(20,48,84,.10);
      --bc-radius:20px;
      --bc-radius-sm:14px;
      --bc-max:1200px;
    }

    *{ box-sizing:border-box; }
    html,body{
      margin:0;
      padding:0;
      font-family:Arial, Helvetica, sans-serif;
      color:var(--bc-text);
      background:#fff;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

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

    /* Top bar */
    .topbar{
      background:#fff;
      border-bottom:1px solid var(--bc-border);
      position:sticky;
      top:0;
      z-index:50;
    }
    .topbar-inner{
      width:min(var(--bc-max), calc(100% - 32px));
      margin:0 auto;
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:14px;
      background:linear-gradient(135deg, var(--bc-blue), var(--bc-green));
      display:grid;
      place-items:center;
      color:#fff;
      font-size:24px;
      font-weight:700;
      box-shadow:var(--bc-shadow);
      flex:0 0 auto;
    }
    .brand-text{
      min-width:0;
    }
    .brand-title{
      font-size:24px;
      font-weight:800;
      line-height:1.1;
      color:var(--bc-navy);
      margin:0;
    }
    .brand-sub{
      font-size:13px;
      color:var(--bc-muted);
      margin-top:3px;
    }

    .top-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid var(--bc-blue);
      font-weight:700;
      font-size:15px;
      transition:.18s ease;
      cursor:pointer;
    }
    .btn:hover{
      transform:translateY(-1px);
    }
    .btn-primary{
      background:var(--bc-blue);
      color:#fff;
      box-shadow:0 8px 18px rgba(32,113,180,.22);
    }
    .btn-primary:hover{
      background:var(--bc-blue-dark);
      border-color:var(--bc-blue-dark);
    }
    .btn-secondary{
      background:#fff;
      color:var(--bc-blue);
    }


.top-offer-bar {
  background: linear-gradient(90deg, #f96302, #ff7a1a);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 6px 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.top-offer-bar a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.top-offer-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-offer-bar {
    font-size: 13px;
    padding: 5px 8px;
  }
}

    
    /* Hero */
    .hero{
      background:
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
      padding:42px 0 28px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:34px;
      align-items:center;
    }

    .hero-copy{
      padding:12px 0;
    }
    .eyebrow{
      display:inline-block;
      background:#e8f2fb;
      color:var(--bc-blue-dark);
      border:1px solid #cfe2f3;
      border-radius:999px;
      padding:8px 14px;
      font-size:12px;
      font-weight:800;
      letter-spacing:.03em;
      text-transform:uppercase;
      margin-bottom:18px;
    }
    .hero h1{
      margin:0 0 12px;
      font-size:54px;
      line-height:1.02;
      letter-spacing:-.02em;
      color:var(--bc-navy);
    }
    .hero h1 .accent{
      display:block;
      color:var(--bc-blue);
    }
    .hero-lead{
      font-size:19px;
      line-height:1.65;
      color:var(--bc-muted);
      max-width:660px;
      margin:0 0 22px;
    }
    .hero-points{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px 14px;
      margin:20px 0 26px;
      padding:0;
      list-style:none;
    }
    .hero-points li{
      background:#fff;
      border:1px solid var(--bc-border);
      border-radius:14px;
      padding:12px 14px;
      font-weight:700;
      color:var(--bc-text);
      box-shadow:0 4px 10px rgba(20,48,84,.04);
    }

    .hero-buttons{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:8px;
    }

    .hero-art{
      position:relative;
    }
    .hero-photo{
      width:100%;
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--bc-shadow);
      background:#dfeaf4;
      min-height:520px;
      border:1px solid #d9e6f2;
    }
    .hero-photo img{
      width:100%;
      height:100%;
      min-height:520px;
      object-fit:cover;
      display:block;
    }

    .hero-card{
      position:absolute;
      right:-10px;
      bottom:18px;
      width:min(330px, calc(100% - 24px));
      background:rgba(255,255,255,.96);
      backdrop-filter: blur(6px);
      border:1px solid var(--bc-border);
      border-radius:20px;
      padding:18px;
      box-shadow:var(--bc-shadow);
    }
    .hero-card-title{
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.04em;
      color:var(--bc-muted);
      font-weight:800;
      margin-bottom:10px;
    }
    .money-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    .money-row{
      display:flex;
      justify-content:space-between;
      gap:14px;
      font-size:15px;
    }
    .money-row strong{
      color:var(--bc-navy);
    }
    .money-row.total{
      border-top:1px solid var(--bc-border);
      margin-top:6px;
      padding-top:10px;
      font-size:18px;
      font-weight:800;
      color:var(--bc-green);
    }

    /* Section base */
    .section{
      padding:62px 0;
    }
    .section-alt{
      background:var(--bc-soft);
      border-top:1px solid #ecf2f7;
      border-bottom:1px solid #ecf2f7;
    }
    .section-head{
      text-align:center;
      max-width:820px;
      margin:0 auto 28px;
    }
    .section-head h2{
      margin:0 0 12px;
      font-size:38px;
      line-height:1.15;
      color:var(--bc-navy);
    }
    .section-head p{
      margin:0;
      font-size:18px;
      line-height:1.7;
      color:var(--bc-muted);
    }

    /* Screenshot previews */
    

.preview-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
  margin-top:40px;
  align-items:stretch;
}

.preview-card{
  background:#fff;
  border:1px solid #d9e4f2;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(27,64,122,.08);
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}
    

    .preview-card:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 34px rgba(27,64,122,.12);
    }

    .preview-image{
      height:290px;
      background:#eef4fb;
      overflow:hidden;
      border-bottom:1px solid #d9e4f2;
    }

    .preview-image img{
      width:100%;
      height:100%;
      object-fit:contain;
      display:block;
    }

    .preview-body{
      padding:26px 28px 24px;
    }

    .preview-body h3{
      margin:0 0 14px;
      font-size:28px;
      line-height:1.1;
      font-weight:800;
      color:#1d3157;
      letter-spacing:-0.02em;
    }

    .preview-body p{
      margin:0;
      font-size:18px;
      line-height:1.55;
      color:#61738f;
    }

    /* Benefits */
    .benefit-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:20px;
      margin-top:28px;
    }
    .benefit{
      background:#fff;
      border:1px solid var(--bc-border);
      border-radius:20px;
      padding:24px;
      box-shadow:0 8px 18px rgba(20,48,84,.05);
    }
    .benefit-num{
      width:42px;
      height:42px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--bc-blue), var(--bc-green));
      color:#fff;
      font-weight:800;
      margin-bottom:14px;
    }
    .benefit h3{
      margin:0 0 8px;
      font-size:21px;
      color:var(--bc-navy);
    }
    .benefit p{
      margin:0;
      color:var(--bc-muted);
      line-height:1.7;
      font-size:15px;
    }

    /* Powerful section */
    .power-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:center;
    }
    .power-copy h2{
      margin:0 0 12px;
      font-size:40px;
      line-height:1.15;
      color:var(--bc-navy);
    }
    .power-copy p{
      margin:0 0 16px;
      color:var(--bc-muted);
      font-size:18px;
      line-height:1.75;
    }
    .power-list{
      margin:0;
      padding-left:18px;
      color:var(--bc-text);
    }
    .power-list li{
      margin:10px 0;
      line-height:1.65;
      font-size:16px;
    }

    .power-panel{
      background:#fff;
      border:1px solid var(--bc-border);
      border-radius:26px;
      padding:22px;
      box-shadow:var(--bc-shadow);
    }
    .stat-stack{
      display:grid;
      gap:14px;
    }
    .stat{
      border:1px solid var(--bc-border);
      border-radius:16px;
      padding:16px;
      background:linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
    }
    .stat-label{
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.04em;
      color:var(--bc-muted);
      font-weight:800;
      margin-bottom:8px;
    }
    .stat-value{
      font-size:30px;
      font-weight:900;
      color:var(--bc-navy);
      line-height:1.1;
    }
    .stat-note{
      margin-top:8px;
      color:var(--bc-muted);
      font-size:14px;
      line-height:1.55;
    }

/* CTA */
.cta{
  padding:72px 0 80px;
  background:linear-gradient(135deg, #f7f9ff 0%, #e3ebff 100%);
  color:var(--bc-blue-dark);
}

.cta-box{
  text-align:center;
  max-width:850px;
  margin:0 auto;
}

.cta h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.12;
  color:var(--bc-blue-dark);
}

.cta p{
  margin:0 auto 24px;
  max-width:700px;
  font-size:19px;
  line-height:1.7;
  color:#4f5f86;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Get Started button */
.btn-light{
  background:#f97316;
  color:#fff;
  border:2px solid #f97316;
  border-radius:999px;
  padding:12px 22px;
  box-shadow:0 8px 20px rgba(0,0,0,.10);
  transition:all .2s ease;
}

.btn-light:hover{
  background:#ea580c;
  border-color:#ea580c;
}

.btn-outline-light{
  background:#6ebd51;        /* solid green */
  color:#fff;               /* white text */
  border:2px solid #6ebd51;
  border-radius:999px;
  padding:12px 22px;
  transition:all .2s ease;
}

.btn-outline-light:hover{
  background:#5aa943;       /* slightly darker green on hover */
  border-color:#5aa943;
}
.cta-buttons .btn-light,
.cta-buttons .btn-outline-light{
  min-width: 170px;
  text-align: center;
}
.cta-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
    /* Footer */
    .footer{
      padding:22px 0 34px;
      background:#fff;
      color:var(--bc-muted);
      font-size:14px;
    }
    .footer-inner{
      width:min(var(--bc-max), calc(100% - 32px));
      margin:0 auto;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      border-top:1px solid var(--bc-border);
      padding-top:20px;
    }
    
    .faq-list{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item{
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 8px 18px rgba(20,48,84,.05);
}

.faq-item h3{
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--bc-navy);
}

.faq-item p{
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--bc-muted);
}
    
@media (max-width: 1080px){
  .hero-grid,
  .power-grid{
    grid-template-columns:1fr;
  }

  .preview-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .benefit-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:46px;
  }

  .hero-photo,
  .hero-photo img{
    min-height:420px;
  }

  .subhead{
    font-size:19px;
    line-height:1.55;
    color:var(--bc-muted);
    max-width:660px;
    margin:0 0 18px;
  }

  .hero-copy h1{
    font-weight:600;
    line-height:1.08;
    letter-spacing:-0.5px;
    margin:0 0 20px;
  }
}

@media (max-width: 720px){
  .topbar-inner{
    padding:10px 0;
  }

  .brand-title{
    font-size:21px;
  }

  .hero{
    padding-top:26px;
  }

  .hero h1{
    font-size:36px;
  }

  .hero-lead,
  .section-head p,
  .power-copy p,
  .cta p{
    font-size:16px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .preview-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .preview-image{
    height:220px;
  }

  .preview-body{
    padding:22px 22px 20px;
  }

  .preview-body h3{
    font-size:24px;
  }

  .preview-body p{
    font-size:17px;
  }

  .hero-photo,
  .hero-photo img{
    min-height:320px;
  }

  .hero-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:14px;
  }

  .section-head h2,
  .power-copy h2,
  .cta h2{
    font-size:31px;
  }
}

/* LAST CSS BLOCK */
.footer{
  margin-top:56px;
  background:linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
  border-top:1px solid #dbe5ef;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:32px 20px;
  display:grid;
  grid-template-columns: 1.1fr 2fr;
  gap:28px;
  align-items:start;
}

.footer-brand{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.footer-brand .brand-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, #2071b4, #6ebd51);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:22px;
  font-weight:800;
  box-shadow:0 10px 22px rgba(20,48,84,.12);
  flex:0 0 auto;
}

.footer-title{
  font-size:18px;
  font-weight:800;
  line-height:1.1;
  color:#1a2b49;
}

.footer-sub{
  margin-top:4px;
  font-size:13px;
  color:#6b7a8c;
}

.footer-columns{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:24px;
}

.footer-col h4{
  margin:0 0 12px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#1d3557;
}

.footer-col a{
  display:block;
  margin:0 0 10px;
  text-decoration:none;
  color:#2071b4;
  font-weight:600;
  line-height:1.4;
}

.footer-col a:hover{
  text-decoration:underline;
}

.footer-copy{
  grid-column:1 / -1;
  padding-top:10px;
  border-top:1px solid #dbe5ef;
  font-size:13px;
  color:#6b7a8c;
}

@media (max-width: 900px){
  .footer-inner{
    grid-template-columns:1fr;
  }

  .footer-columns{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .footer-columns{
    grid-template-columns:1fr;
  }

  .footer{
    margin-top:40px;
  }

  .footer-inner{
    padding:26px 16px;
  }
}