/* =====================================================
   ComplyView — Compliance Management Software
   Page Styles (extracted from inline <style> blocks)
===================================================== */

:root{
    --primary:#10b14a;
    --primary-light:#9ae5b5;
    --secondary:#0d2d63;
    --text:#1b1b1b;
    --gray:#6b7280;
    --border:#e9eef5;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.7;
}

a{
    text-decoration:none;
}

/* ---------- HERO ---------- */

.hero{
    padding:110px 0;
    background:linear-gradient(135deg,#10b14a,#9ae5b5);
    position:relative;
    overflow:hidden;
}

.hero:before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-220px;
    top:-250px;
}

.hero:after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    left:-180px;
    bottom:-220px;
}

.hero .container{
    position:relative;
    z-index:5;
}

.badge-custom{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#fff;
    color:var(--primary);
    font-weight:700;
    font-size:13px;
    letter-spacing:.5px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
}

.hero h1 span{
    color:#eaffef;
}

.hero p{
    font-size:19px;
    color:#f8fffb;
    margin-bottom:35px;
    max-width:650px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.35s;
    margin-right:15px;
}

.btn-demo{
    background:#fff;
    color:var(--primary);
}

.btn-demo:hover{
    background:#0d2d63;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline-custom:hover{
    background:#fff;
    color:var(--primary);
}

.hero-counter{
    margin-top:60px;
}

.counter-box{
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:18px;
    padding:25px;
    text-align:center;
    height:100%;
}

.counter-box h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:8px;
    color:#fff;
}

.counter-box p{
    margin:0;
    font-size:15px;
    color:#ecfff3;
}

@media(max-width:991px){
    .hero{
        padding:80px 0;
        text-align:center;
    }
    .hero h1{
        font-size:42px;
    }
    .hero p{
        margin:auto auto 30px;
    }
    .hero-btn{
        margin-bottom:15px;
    }
}

/* ---------- WHY COMPLYVIEW ---------- */

.why-complyview{
    padding:100px 0;
    background:#f8fbfd;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#e9fff1;
    color:#10b14a;
    font-weight:700;
    border-radius:30px;
    font-size:13px;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.section-title{
    font-size:46px;
    font-weight:800;
    color:#0d2d63;
    line-height:1.25;
    margin-bottom:25px;
}

.section-title span{
    color:#10b14a;
}

.section-desc{
    font-size:18px;
    color:#667085;
    margin-bottom:35px;
    line-height:1.8;
}

.problem-box{
    background:#ffffff;
    border-radius:18px;
    padding:22px;
    margin-bottom:18px;
    border-left:5px solid #10b14a;
    transition:.3s;
}

.problem-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.problem-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#10b14a,#9ae5b5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
}

.problem-box h5{
    font-weight:700;
    margin-bottom:12px;
}

.problem-box p{
    color:#6b7280;
    margin-bottom:0;
}

.info-panel{
    background:linear-gradient(135deg,#10b14a,#9ae5b5);
    border-radius:30px;
    padding:45px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.info-panel:before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.info-panel h3{
    font-weight:800;
    margin-bottom:20px;
}

.info-panel p{
    font-size:17px;
    line-height:1.8;
}

.info-list{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.info-list li{
    margin-bottom:18px;
    font-size:17px;
}

.info-list i{
    margin-right:12px;
}

/* ---------- COMPLIANCE LIFECYCLE ---------- */

.lifecycle-section{
    padding:110px 0;
    background:#ffffff;
    position:relative;
}

.lifecycle-subtitle{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eafbf0;
    color:#10b14a;
    font-weight:700;
    font-size:13px;
    letter-spacing:.5px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.lifecycle-title{
    font-size:48px;
    font-weight:800;
    color:#12315c;
    margin-bottom:25px;
    line-height:1.2;
}

.lifecycle-title span{
    color:#10b14a;
}

.lifecycle-desc{
    max-width:820px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.9;
}

.timeline-wrapper{
    position:relative;
    margin-top:90px;
}

.timeline-line{
    position:absolute;
    left:0;
    right:0;
    top:58px;
    height:6px;
    background:#dff6e8;
    border-radius:50px;
}

.timeline-progress{
    width:18%;
    height:100%;
    border-radius:50px;
    background:linear-gradient(90deg,#10b14a,#9ae5b5);
}

.lifecycle-card{
    position:relative;
    text-align:center;
    z-index:5;
}

.lifecycle-icon{
    width:115px;
    height:115px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#10b14a,#9ae5b5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    box-shadow:0 20px 45px rgba(16,177,74,.25);
    transition:.35s;
}

.lifecycle-card:hover .lifecycle-icon{
    transform:translateY(-8px) scale(1.05);
}

.lifecycle-step{
    margin-top:28px;
    font-size:13px;
    letter-spacing:1px;
    color:#10b14a;
    font-weight:700;
    text-transform:uppercase;
}

.lifecycle-heading{
    font-size:24px;
    font-weight:800;
    color:#12315c;
    margin-top:10px;
}

.lifecycle-text{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
    margin-top:18px;
    padding:0 18px;
}

@media(max-width:991px){
    .timeline-line{
        display:none;
    }
    .lifecycle-card{
        margin-bottom:60px;
    }
    .lifecycle-title{
        font-size:38px;
    }
}

/* ---------- POWERFUL COMPLIANCE FEATURES ---------- */

.features-section{
    padding:110px 0;
    background:#f8fbfd;
}

.feature-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e8fff1;
    color:#10b14a;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.feature-title{
    font-size:48px;
    font-weight:800;
    color:#0d2d63;
    margin-bottom:20px;
}

.feature-title span{
    color:#10b14a;
}

.feature-desc{
    max-width:850px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.feature-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    height:100%;
    transition:.35s;
    border:1px solid #edf2f7;
    position:relative;
    overflow:hidden;
}

.feature-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:0%;
    background:#10b14a;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.08);
}

.feature-card:hover:before{
    height:100%;
}

.feature-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#10b14a,#9ae5b5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.feature-card h4{
    font-weight:800;
    color:#12315c;
    margin-bottom:18px;
}

.feature-card p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:20px;
}

.feature-card ul{
    padding-left:18px;
    margin-bottom:0;
}

.feature-card ul li{
    margin-bottom:10px;
    color:#555;
}