* {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}

.sticky-nav-bg {
    background-color: #f6f7f7 !important;
    transition: background-color 0.3s ease;
}

#topNavbar .nav-link{
    font-size: 0.9rem;
}

.start-free-trail-btn{
    background-color: #02aad3;
    color: #f4f4f4;
    padding: 9px 20px;
    font-size: 0.9rem;
}

#heroSection{
    padding-top: 8rem;
    padding-bottom: 7rem;
    background: linear-gradient(149deg, #036178 0%, #059ec4 60%, #f6f8ff 100%);
}

#heroSection .badge-text{
    background: #177fee;
    color: #f0f0f0;
}

#heroSection .description{
    color: rgb(230 230 230) !important;
    font-size: 1.1rem;
    font-weight: normal;
}

#heroSection .benefits-text{
    color: rgb(40 40 40) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

#heroSection .benefits-text svg{
    background: #60abfc;
    border-radius: 15px;
}

#heroSection .buttons-row{
    padding-top: 30px;
    margin-top: 25px !important;
    border-top: 1px solid #00bcff;
}

#heroSection .buttons-row .btn{
    font-size: 0.9rem;
    background: #202020;
    color: #f4f4f4;
    padding: 10px 22px;
}

#heroSection .buttons-row .btn:last-child{
    border: 1px solid #6cc0e8;
    color: #f9f9f9;
}

#heroSection .video-overlay {
  background-color: rgb(0 0 0 / 62%);
  pointer-events: none;
}

.rotate-3d-hover { transform: rotate(1.5deg); transition: transform .3s ease; }
.rotate-3d-hover:hover { transform: rotate(0); }
.stat-card-1 {
    position: absolute; 
    left: 20px;
    bottom: -30px;
    background: linear-gradient(340deg, #02aad3 0%, #037e9d 60%, #025add 100%); 
    color: #fff;
    padding: .75rem 1rem; 
    border-radius: .75rem; 
    box-shadow: 0 10px 30px rgba(13,110,253,.3);
    text-align: center
}
.stat-card-2 {
    position: absolute; 
    right: 85px;
    top: -45px;
    background: linear-gradient(340deg, #02aad3 0%, #037e9d 60%, #025add 100%); 
    color: #fff;
    padding: .75rem 1rem; 
    border-radius: .75rem; 
    box-shadow: 0 10px 30px rgba(13,110,253,.3);
    text-align: center
}

.icon-bubble {
    width: 48px; height: 48px; border-radius: .75rem;
    display: inline-flex; align-items: center; justify-content: center;
}

.icon-circle {
    width: 64px; height: 64px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
}

.icon-circle.primary { background: rgba(13,110,253,.15); color: #0d6efd; }
.icon-circle.success { background: rgba(25,135,84,.15); color: #198754; }
.icon-circle.purple { background: rgba(111,66,193,.15); color: #6f42c1; }
.icon-circle.warning { background: rgba(255,193,7,.2); color: #ffc107; }

/*** Pricing ***/
.pricing-card{
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(0,0,0,.06);
    }

.pricing-card .btn{
    background-color: #02aad3;
    color: #f4f4f4;
    padding: 9px 20px;
    font-size: 0.9rem;
}

    .text-muted-700 { color: var(--muted) !important; }

    /* Feature list */
    .feature{
      display: flex; gap: .6rem; align-items: flex-start;
      font-size: .95rem;
    }
    .check-dot{
      width: 18px; height: 18px; border-radius: 999px;
      background: rgba(16,185,129,.12);
      display: grid; place-items: center; flex: 0 0 18px;
      margin-top: .15rem;
    }
    .check-dot svg{ width: 12px; height: 12px; color: var(--success); }

    /* Fine print */
    .fine{ color: var(--muted); font-size: .85rem; }
    .linkish{ color: #0ea5e9; text-decoration: underline; }