html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
    overflow-x: hidden;
}

ul {
    list-style-type: none;
}

ul,
li {
    margin: 0 !important;
    padding: 0 !important;
}

.text-grey {
    color: #616368;
}

.button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 20px;
    height: 46px;
    border-radius: 20px;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.button.btn-theme {
    background-color: #FF8B00;
}

.button.btn-theme-white {
    border: 1px solid #FF8B00;
    color: #FF8B00;
    background-color: #fff;
}

.navigation-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 10;
    -webkit-transition: 0.7s all cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.7s all cubic-bezier(0.39, 0.575, 0.565, 1);
}

.navigation-bar.on-scroll {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.7s all cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.7s all cubic-bezier(0.39, 0.575, 0.565, 1);
}

.navigation-bar .mobile-navigation-menu {
    display: none;
}

.navigation-bar .mobile-navigation-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0 !important;
}

.navigation-bar .mobile-navigation-menu.active li a {
    text-decoration: none;
    color: #242F51;
    font-size: 12px;
}

.navigation-bar .mobile-navigation-menu.active li {
    margin-bottom: 12px !important;
}

.navigation-bar .logo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #FF8B00;
    font-size: 30px;
}

.navigation-bar .logo-block span {
    color: #000;
}

.navigation-bar .navigation-items {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navigation-bar .navigation-items .burger {
    display: none;
}

@media (max-width: 990px) {
    .navigation-bar .navigation-items li {
        display: none;
    }
    .navigation-bar .navigation-items li:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .navigation-bar .navigation-items .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 25px;
        margin-left: 25px;
        cursor: pointer;
    }
}

.navigation-bar .navigation-items li a {
    text-decoration: none;
    color: #242F51;
    font-size: 12px;
    margin-right: 25px;
}

.navigation-bar .navigation-items,
.navigation-bar .navigation-items li {
    padding: 0;
    margin: 0;
}

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #F9FBFC;
    min-height: 800px;
}

.hero-section .background-image-block {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
}

.hero-section .background-image-block img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero-section .content-container {
    height: 100%;
    padding-top: 149px;
}

.hero-section .content-container .content-block {
    position: relative;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (max-width: 990px) {
    .hero-section .content-container .content-block {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.hero-section .content-container .content-block .content-entry-block {
    margin-bottom: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 18px;
    border-radius: 25px;
    background-color: #E2EAED;
}

.hero-section .content-container .content-block .content-entry-block span {
    font-size: 14px;
    color: #242F51;
}

.hero-section .content-container .content-block .content-entry-block .circle {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    background-color: #FF8B00;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-section .content-container .content-block .content-entry-block .circle img {
    width: 60%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero-section .content-container .content-block h1 {
    font-size: 47px;
    font-weight: bold;
    color: #242F51;
    margin-bottom: 0;
}

.hero-section .content-container .content-block p {
    margin: 25px 0;
}

.hero-section .content-container .image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-section .content-container .image-container img {
    width: 50%;
    position: relative;
    z-index: 5;
}

.features-section {
    padding-top: 149px;
}

.features-section .section-title {
    font-size: 31px;
    font-weight: bold;
    color: #242F51;
    margin-bottom: 25px;
    padding-top: 50px;
}

.features-section .section-para {
    font-size: 12px;
    margin-bottom: 45px;
}

.features-section .feature-items-list {
    margin-top: 40px !important;
}

.features-section .feature-items-list .feature-item {
    margin-bottom: 50px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.features-section .feature-items-list .feature-item .feature-info {
    font-size: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.features-section .feature-items-list .feature-item .feature-info.feature-info-red {
    color: #F55767;
}

.features-section .feature-items-list .feature-item .feature-info.feature-info-blue {
    color: #2563FF;
}

.features-section .feature-items-list .feature-item .feature-info.feature-info-green {
    color: #40975F;
}

.features-section .feature-items-list .feature-item .feature-info .helper {
    margin-top: 10px;
    font-size: 12px;
}

.features-section .feature-items-list .feature-item .circle {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 28px;
}

.features-section .feature-items-list .feature-item .circle img {
    width: 80%;
    margin-left: 35px;
}

.features-section .feature-items-list .feature-item:first-child .circle img {
    margin-left: 30px;
}

.hero-img {}

.features-section .feature-items-list .feature-item .circle.circle-red {
    background-color: #FFECEF;
}

.features-section .feature-items-list .feature-item .circle.circle-blue {
    background-color: #F4F4FF;
}

.features-section .feature-items-list .feature-item .circle.circle-green {
    background-color: #E4FFEE;
}

.features-section .additional-info-block {
    margin-top: 100px;
    margin-bottom: 100px;
}

@media (max-width: 576px) {
    .features-section .additional-info-block {
        padding: 0 12px;
    }
}

.features-section .additional-info-block .main {
    font-size: 31px;
    font-weight: bold;
    color: #242F51;
    border-right: 1px solid #707070;
}

@media (max-width: 990px) {
    .features-section .additional-info-block .main {
        border-bottom: 1px solid #707070;
        border-right: none;
    }
}

.features-section .additional-info-block .main,
.features-section .additional-info-block .helper {
    height: 118px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.features-section .additional-info-block .helper {
    font-size: 17px;
}

.features-section .designed-for-everyone-block {
    margin: 100px 0;
}

.features-section .designed-for-everyone-block .image-block img {
    width: 100%;
}

.features-section .designed-for-everyone-block .info-block .main {
    font-size: 31px;
    font-weight: bold;
    color: #242F51;
    margin-bottom: 25px;
}

.features-section .designed-for-everyone-block .info-block .helper {
    font-size: 14px;
    margin-bottom: 25px;
}

.plans-container {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (max-width: 768px) {
    .plans-container {
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        padding: 100px 0 50px;
    }
}

.plans-container .plans-title {
    color: #242F51;
    margin-bottom: 25px;
    font-size: 31px;
    font-weight: bold;
}

.plans-container .plans-helper {
    margin-bottom: 25px;
}

.plans-container .plans-helper span {
    font-size: 14px;
    padding: 0 20px;
    text-align: center;
}

.plans-container .plans-block .plan {
    width: 254px;
    height: auto;
    padding: 40px 0;
    border-radius: 8px;
}

.plans-container .plans-block .plan.plan-shadows {
    -webkit-box-shadow: 0px 19px 15px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 19px 15px 3px rgba(0, 0, 0, 0.05);
}

.plans-container .plans-block .plan.plan-bordered {
    border: 3px solid #EBEBEB;
}

.plans-container .plans-block .plan .plan-header {
    height: auto;
    width: 100%;
    background: white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(43%, white), to(#ebebeb));
    background: linear-gradient(180deg, white 43%, #ebebeb 100%);
}

.plans-container .plans-block .plan .plan-header .price {
    font-size: 48px;
    color: #242F51;
}

.plans-container .plans-block .plan .plan-header .price span {
    font-size: 14px;
}

.plans-container .plans-block .plan .plan-header .title {
    font-size: 21px;
    color: #242F51;
}

.plans-container .plans-block .plan .plan-header .additional-info {
    font-size: 14px;
    margin-bottom: 30px;
}

.plans-container .plans-block .plan .plan-body {
    padding-top: 35px;
}

.plans-container .plans-block .plan .plan-body .feature {
    font-size: 14px;
    margin-bottom: 15px;
}

.plans-container .plans-block .plan .plan-body button {
    margin-top: 20px;
}

.bleepers {
    margin: 100px 0;
}

.bleepers .world-image-block img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.bleepers .bleepers-info-block .main-title {
    font-size: 31px;
    color: #242F51;
    font-weight: bold;
    margin-bottom: 25px;
}

.bleepers .bleepers-info-block .helper {
    font-size: 14px;
    margin-bottom: 15px;
}

.bleepers .bleepers-info-block .title {
    color: #242F51;
    font-weight: bold;
    margin-bottom: 15px;
}

.bleepers .bleepers-info-block .ceo-block {
    margin-top: 45px;
}

.bleepers .bleepers-info-block .ceo-block img {
    margin-right: 25px;
}

.bleepers .bleepers-info-block .ceo-block .name {
    color: #242F51;
    font-weight: bold;
    margin-bottom: 8px;
}

.bleepers .bleepers-info-block .ceo-block .name,
.bleepers .bleepers-info-block .ceo-block .duties {
    font-size: 14px;
}

.download-section {
    border-top: 2px solid rgba(229, 230, 229, 0.44);
}

.download-section .content-block .title {
    font-size: 31px;
    color: #242F51;
    font-weight: bold;
}

.download-section .content-block .helper {
    font-size: 14px;
    margin: 35px 0;
}

.download-section .content-block .images-block img:first-child {
    margin-right: 26px;
}

.download-section .content-block .images-block img {
    cursor: pointer;
}

.download-section .content-image-block img {
    width: 100%;
}

.footer {
    background-color: #FF8B00;
    padding: 65px 0 40px;
}

.footer .footer-title {
    font-size: 50px;
    color: #000;
    margin-bottom: 15px;
}

.footer .footer-title span {
    color: #fff;
}

.footer ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-right: 25px;
}

@media (max-width: 576px) {
    .footer ul li a {
        margin-right: 0;
    }
}

.footer ul li:last-child a {
    margin-right: 0;
}

.footer .rights-block {
    font-size: 12px;
    color: #fff;
}

.footer .socials-block {
    margin: 20px 0;
}

.footer .socials-block img:first-child {
    margin-right: 10px;
}

.footer .socials-block img {
    cursor: pointer;
}

.faq-section {
    margin: 100px 0;
}

.faq-section .title {
    font-size: 31px;
    color: #242F51;
    font-weight: bold;
}

.faq-section .helper {
    font-size: 14px;
    margin: 25px 0 70px;
}

.faq-section .custom-accordion {
    width: 100%;
}

.faq-section .custom-accordion .accordion-item {
    border: none;
    width: 100%;
    padding: 15px 40px 13px;
    background-color: #F5F7FA;
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

@media (max-width: 576px) {
    .faq-section .custom-accordion .accordion-item {
        padding: 15px 40px 13px 15px;
    }
}

.faq-section .custom-accordion .accordion-item.active .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.faq-section .custom-accordion .accordion-item.active .arrow img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-section .custom-accordion .accordion-item .title {
    font-size: 15px;
}

.faq-section .custom-accordion .accordion-item .arrow {
    position: absolute;
    top: 12px;
    right: 40px;
}

@media (max-width: 576px) {
    .faq-section .custom-accordion .accordion-item .arrow {
        right: 15px;
    }
}

.faq-section .custom-accordion .accordion-item .content {
    margin-top: 15px;
    font-size: 14px;
    display: none;
}


/*# sourceMappingURL=styles.css.map */

@media (min-width:991px) {
    .owl-carousel {
        max-width: 400px;
    }
    .owl-prev {
        width: 15px;
        height: 100px;
        position: absolute;
        top: 30%;
        transform: translateY(-50%);
        display: block !important;
        border: 0px solid black;
        font-size: 50px !important;
        left: -25px;
    }
    .owl-next {
        width: 15px;
        height: 100px;
        position: absolute;
        top: 30%;
        transform: translateY(-50%);
        display: block !important;
        border: 0px solid black;
        right: -19px;
        font-size: 50px !important;
    }
}

@media (max-width:991px) {
    .owl-carousel {
        max-width: 90vw;
    }
    .owl-nav {
        display: none;
    }
}

@media (min-width:1100px) {
    .owl-carousel {
        max-width: 450px;
    }
}

@media (min-width:1250px) {
    .owl-carousel {
        max-width: 500px;
    }
}

@media (min-width:1500px) {
    .owl-carousel {
        max-width: 590px;
    }
}
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

/* Key features grid */
.key-features-section { padding: 20px 0 80px; }
.key-features-section .kf-title { text-align: center; font-size: 31px; font-weight: bold; color: #242F51; margin-bottom: 40px; }
.feature-card { background: #fff; border: 1px solid #EDEFF2; border-radius: 16px; padding: 28px 24px; height: 100%; box-shadow: 0 6px 20px rgba(0,0,0,0.04); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.feature-card h5 { color: #FF8B00; font-weight: bold; font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: #616368; font-size: 14px; margin: 0; line-height: 1.6; }

/* How it works — numbered step flow */
.how-steps { list-style: none; padding: 0; margin: 40px 0 0; }
.how-step { display: flex; align-items: flex-start; margin-bottom: 30px; position: relative; }
.how-step:not(:last-child)::before { content: ''; position: absolute; left: 26px; top: 56px; bottom: -18px; width: 2px; background: #FFE0BE; z-index: 0; }
.how-num { position: relative; z-index: 1; flex: 0 0 54px; width: 54px; height: 54px; border-radius: 50%; background: #FF8B00; color: #fff; font-weight: bold; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-right: 22px; box-shadow: 0 8px 18px rgba(255, 139, 0, 0.30); }
.how-text { padding-top: 4px; }
.how-text h5 { color: #242F51; font-weight: bold; font-size: 20px; margin: 0 0 6px; }
.how-text p { color: #616368; font-size: 14px; margin: 0; line-height: 1.6; }
@media (max-width: 990px) { .how-step { text-align: left; } }
