.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f8fafc 0%,
        #eef2ff 100%
    );
}

.monitor-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.monitor-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f8fafc 0%,
        #eef2ff 100%
    );
    padding: 100px 0;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
}

.monitor-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.monitor-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.monitor-card:hover {
    transform: translateY(-5px);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .hero-section {
        text-align: center;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .monitor-preview {
        margin-top: 50px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.3rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-section .d-flex.gap-3 {
        flex-direction: column;
    }

    .hero-section .mt-5.d-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 576px) {

    .hero-title {
        font-size: 1.9rem;
    }

    .monitor-card {
        padding: 15px;
    }
}

.hero-section{
    position:relative;
    overflow:hidden;
    background:#f8fafc;
}

.hero-bg{
    position:absolute;
    inset:0;
}

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.4;
}

.blob-1{
    width:350px;
    height:350px;
    background:#6366f1;
    top:-100px;
    left:-100px;
    animation:float 10s infinite;
}

.blob-2{
    width:300px;
    height:300px;
    background:#06b6d4;
    right:0;
    top:150px;
    animation:float 8s infinite;
}

.blob-3{
    width:250px;
    height:250px;
    background:#8b5cf6;
    left:40%;
    bottom:0;
    animation:float 12s infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-30px);
    }
}

.hero-badge{
    background:#10b981;
    color:white;
    padding:8px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.hero-description{
    font-size:20px;
    color:#64748b;
    margin-top:20px;
}

.hero-trust{
    display:flex;
    gap:25px;
    color:#64748b;
    font-weight:600;
}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.glass-stat{
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.5);
    padding:20px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.glass-stat h3{
    color:#4f46e5;
    font-weight:800;
}

.dashboard-preview{
    position:relative;
}

.dashboard-card{
    background:white;
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    animation:floatCard 4s infinite;
}

.dashboard-card:nth-child(2){
    animation-delay:1s;
}

.dashboard-card:nth-child(3){
    animation-delay:2s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

.online{
    color:#10b981;
    font-weight:700;
}

.offline{
    color:#ef4444;
    font-weight:700;
}

/* =========================================
   TRUSTED COMPANIES
========================================= */

.trusted-section{
    padding:120px 0;
    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );
    overflow:hidden;
}

.trusted-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(79,70,229,.08);
    color:#4f46e5;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.trusted-title{
    font-size:3rem;
    font-weight:800;
    color:#0f172a;
}

.trusted-subtitle{
    color:#64748b;
    font-size:18px;
}

.logo-slider{
    position:relative;
    overflow:hidden;
    margin-top:60px;
}

.logo-slider::before,
.logo-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:150px;
    height:100%;
    z-index:2;
}

.logo-slider::before{
    left:0;
    background:linear-gradient(
        to right,
        #f8fafc,
        transparent
    );
}

.logo-slider::after{
    right:0;
    background:linear-gradient(
        to left,
        #f8fafc,
        transparent
    );
}

.logo-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollLogos 30s linear infinite;
}

.logo-track:hover{
    animation-play-state:paused;
}

.logo-card{
    min-width:220px;
    height:120px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.5);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
    box-shadow:
        0 10px 30px rgba(15,23,42,.05);
}

.logo-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 50px rgba(79,70,229,.15);
}

.logo-card img{

    width:120px;

    height:50px;

    object-fit:contain;

    opacity:1;

    transition:.4s;
}

.logo-card:hover img{
    opacity:1;
    transform:scale(1.08);
}

@keyframes scrollLogos{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}
.billing-switch{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#fff;
    padding:8px;
    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    width:auto;
    margin:40px auto 0;
}

.billing-switch button{
    border:none;
    background:transparent;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.billing-switch button.active{
    background:#4f46e5;
    color:#fff;
}

.save-badge{
    background:#dcfce7;
    color:#16a34a;
    padding:10px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

/* =====================================
   PRICING PAGE FIX
===================================== */

.pricing-hero{
    padding:140px 0 100px;
    background:linear-gradient(
        180deg,
        #f8fafc,
        #eef2ff
    );
    text-align:center;
}

.pricing-title{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
    max-width:900px;
    margin:auto;
}

.pricing-subtitle{
    font-size:1.25rem;
    color:#64748b;
    max-width:700px;
    margin:20px auto 0;
}

.pricing-section{
    padding:100px 0;
}

.pricing-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    height:100%;
    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-10px);
}

.pricing-popular{
    border:2px solid #4f46e5;
    transform:scale(1.05);
}

.pricing-price{
    font-size:64px;
    font-weight:800;
    margin:20px 0;
}

.pricing-price small{
    font-size:16px;
    color:#64748b;
}

.pricing-feature{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 0;
}

.billing-switch button{
    border:none;
    background:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.billing-switch button.active{
    background:#4f46e5;
    color:#fff;
}

.save-badge{
    background:#dcfce7;
    color:#16a34a;
    padding:10px 15px;
    border-radius:50px;
    font-weight:700;
}

@media(max-width:992px){

    .pricing-popular{
        transform:none;
    }

    .pricing-title{
        font-size:3rem;
    }
}

@media(max-width:768px){

    .pricing-title{
        font-size:2.3rem;
    }

    .pricing-card{
        margin-bottom:20px;
    }
}

/* ===================================
   FAQ PAGE
=================================== */

.faq-hero{
    padding:140px 0 80px;
    background:linear-gradient(
        180deg,
        #f8fafc,
        #eef2ff
    );
    text-align:center;
}

.faq-title{
    font-size:4rem;
    font-weight:800;
    color:#0f172a;
}

.faq-subtitle{
    font-size:1.2rem;
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.faq-page-section{
    padding:100px 0;
    background:#fff;
}

.faq-accordion{
    max-width:900px;
    margin:auto;
}

.faq-accordion .accordion-item{
    border:none;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:
        0 10px 30px rgba(15,23,42,.08);
}

.faq-accordion .accordion-button{
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#4f46e5;
    color:#fff;
}

.faq-accordion .accordion-body{
    padding:25px;
    color:#64748b;
    line-height:1.8;
}

@media(max-width:768px){

    .faq-title{
        font-size:2.5rem;
    }

}

/* ==================================
   FEATURES PAGE
================================== */

.features-hero{
    padding:140px 0 100px;
    background:linear-gradient(
        180deg,
        #f8fafc,
        #eef2ff
    );
}

.features-title{
    font-size:4rem;
    font-weight:800;
    color:#0f172a;
}

.features-subtitle{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:1.2rem;
}

.features-section{
    padding:100px 0;
}

.feature-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:
        0 20px 50px rgba(79,70,229,.15);
}

.feature-box i{
    font-size:50px;
    color:#4f46e5;
    margin-bottom:20px;
}

.feature-box h4{
    margin-bottom:15px;
    font-weight:700;
}

.feature-box p{
    color:#64748b;
}

.feature-highlight{
    padding:100px 0;
    background:#f8fafc;
}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    padding:12px 0;
    font-weight:600;
}

.feature-list li::before{
    content:"✓";
    color:#10b981;
    margin-right:10px;
}

.feature-demo-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

@media(max-width:768px){

    .features-title{
        font-size:2.5rem;
    }

}

/* ==================================
   ABOUT PAGE
================================== */

.about-hero{
    padding:140px 0 100px;
    background:linear-gradient(
        180deg,
        #f8fafc,
        #eef2ff
    );
}

.about-title{
    font-size:4rem;
    font-weight:800;
}

.about-subtitle{
    max-width:700px;
    margin:auto;
    color:#64748b;
}

.about-section{
    padding:100px 0;
}

.about-card{
    background:#fff;
    padding:50px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-values{
    padding:100px 0;
    background:#f8fafc;
}

.value-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.value-card i{
    font-size:50px;
    color:#4f46e5;
    margin-bottom:20px;
}

/* ==================================
   CONTACT PAGE
================================== */

.contact-hero{
    padding:140px 0 100px;
    background:linear-gradient(
        180deg,
        #f8fafc,
        #eef2ff
    );
}

.contact-title{
    font-size:4rem;
    font-weight:800;
}

.contact-subtitle{
    color:#64748b;
}

.contact-section{
    padding:100px 0;
}

.contact-card,
.contact-info{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-info p{
    margin-bottom:20px;
    font-size:18px;
}

.contact-info i{
    color:#4f46e5;
    margin-right:10px;
}


