@keyframes float {
    0%, to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

:root {
    --accent-color: #2060e4
}

body, html {
    overflow-x: hidden
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff
}

.btn-accent:hover {
    background-color: #032874;
    border-color: #032874;
    color: #fff
}

.global-stats .stat-item {
    padding: .5rem
}

.global-stats .stat-item strong {
    font-size: 1.2rem;
    display: block
}

.cta-features, .success-stat {
    border-radius: 10px;
    padding: 1rem
}

.success-stat {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    transition: all .3s ease
}

.success-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.cta-features {
    background: rgba(255, 255, 255, .1)
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(3,40,116,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>')no-repeat center center;
    background-size: cover
}

.hero-content, .hero-image {
    position: relative;
    z-index: 2
}

.platform-preview {
    position: relative
}

.floating-card {
    position: absolute;
    animation: float 3s ease-in-out infinite
}

.floating-card .card {
    border-radius: .25rem
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s
}

.trust-indicators {
    margin-top: 2rem
}

.rating-stars {
    font-size: 1.1rem
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    border: 1px solid #e9ecef;
    text-align: center
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 40, 116, .15)
}

.feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.benefit-icon, .benefits-image::before, .feature-icon {
    background: linear-gradient(135deg, #032874, #2060e4)
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #fff
}

.benefits-image, .pricing-card {
    position: relative
}

.benefits-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border-radius: 15px;
    z-index: -1
}

.pricing-card .card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all .3s ease
}

.pricing-card.featured .card {
    border-color: #032874;
    box-shadow: 0 10px 30px rgba(3, 40, 116, .2)
}

.pricing-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #032874;
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    z-index: 3
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #032874
}

.pricing-features {
    list-style: none !important;
    padding: 0
}

.about-section ul li:before {
    display: none
}

.pricing-features li {
    padding: .75rem 0;
    border-bottom: 1px solid #a7d3ff
}

.pricing-features li:last-child {
    border-bottom: none
}

.testimonial-card .card {
    border: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    border-radius: 15px;
    transition: all .3s ease
}

.testimonial-card:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15)
}

.cta-form .form-control {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .9)
}

.cta-form .form-control:focus {
    border-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
    background: #fff
}

html {
    scroll-behavior: smooth
}

.card, .metric-card {
    transition: all .3s ease
}

.metric-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    text-align: center;
    border: 1px solid #e9ecef
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 40, 116, .15)
}

.metric-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #032874, #2060e4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.metric-icon i, .support-icon i {
    font-size: 2rem;
    color: #fff
}

.metric-number, .support-stats h3 {
    font-weight: 700;
    margin-bottom: .5rem
}

.metric-number {
    font-size: 3rem;
    color: #032874
}

.metric-title {
    color: #333;
    margin-bottom: 1rem
}

.metric-description, .support-features li {
    color: var(--light-color);
    font-size: .9rem
}

.mobile-mockup {
    text-align: center
}

.phone-frame {
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #032874, #2060e4);
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2)
}

.phone-frame img {
    border-radius: 20px;
    max-width: 300px
}

.mobile-feature {
    font-size: 1.1rem;
    color: #333
}

.app-download-buttons .btn {
    min-width: 200px
}

.support-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 40, 116, .15)
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #032874, #2060e4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.support-features {
    list-style: none;
    padding: 0;
    text-align: left
}

.support-features li {
    padding: .5rem 0;
    position: relative;
    padding-left: 1.5rem
}

.support-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #032874;
    font-weight: 700
}

.support-stats {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px
}

.support-stats h3 {
    font-size: 2.5rem
}

@media (max-width:576px) {
    .global-stats {
        margin-bottom: 1rem
    }

    .global-stats .stat-item strong {
        font-size: 1rem
    }

    .hero-section {
        padding-top: 100px
    }

    .display-4, .support-stats h3 {
        font-size: 2rem
    }

    .display-5 {
        font-size: 1.5rem
    }

    .lead {
        font-size: 1rem
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        font-size: 1.5rem
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px
    }

    .benefit-icon i {
        font-size: 1.2rem
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: .5rem
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 1rem
    }

    .floating-card {
        display: none
    }

    .price-amount {
        font-size: 2.5rem
    }

    .success-stat, .testimonial-card {
        margin-bottom: 1rem
    }

    .cta-features .row {
        text-align: center
    }

    .cta-features .col-md-4 {
        margin-bottom: .5rem
    }

    .metric-card, .support-card {
        margin-bottom: 1.5rem
    }

    .metric-number {
        font-size: 2.5rem
    }

    .phone-frame {
        padding: 15px
    }

    .phone-frame img {
        max-width: 250px
    }

    .app-download-buttons .btn {
        width: 100%;
        min-width: auto
    }

    .cert-card {
        margin-bottom: 1rem
    }
}

@media (min-width:577px) and (max-width:768px) {
    .hero-section {
        padding-top: 120px
    }

    .display-4 {
        font-size: 2.2rem
    }

    .display-5 {
        font-size: 1.8rem
    }

    .feature-card {
        padding: 1.5rem 1.2rem
    }

    .hero-section .btn {
        margin-bottom: 1rem
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 1.5rem
    }

    .floating-card {
        display: none
    }

    .success-stat {
        margin-bottom: 1rem
    }

    .metric-card, .support-card {
        margin-bottom: 1.5rem
    }

    .phone-frame img {
        max-width: 280px
    }
}

@media (min-width:769px) and (max-width:992px) {
    .feature-card {
        padding: 1.8rem
    }

    .phone-frame img {
        max-width: 320px
    }
}

@media (min-width:993px) and (max-width:1200px) {
    .feature-card, .metric-card, .support-card {
        padding: 2rem 1.5rem
    }
}

@media (min-width:1201px) {
    .metric-card, .support-card {
        padding: 2.5rem 2rem
    }

    .phone-frame img {
        max-width: 350px
    }
}

@media (-webkit-min-device-pixel-ratio:2), (min-resolution:192dpi) {
    .benefit-icon, .feature-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }
}

@media (max-height:500px) and (orientation:landscape) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 20px
    }
}

@media print {
    .back-to-top, .cta-form, .floating-card, .navbar {
        display: none !important
    }

    .hero-section {
        padding-top: 0
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite
}

.text-white-50 {
    color: rgba(255, 255, 255, .5) !important
}

@media (prefers-reduced-motion:reduce) {
    *, ::after, ::before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .floating-card {
        animation: none
    }
}