/* =====================================================
   LEGAL PAGE
   CV NUSA TIRTA TEKNOLOGI
======================================================*/

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

.legal-hero{

    position:relative;

    overflow:hidden;

    padding:120px 0 100px;

    background:
    radial-gradient(circle at top right,
    rgba(30,79,159,.08),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(255,107,0,.08),
    transparent 40%),

    #ffffff;

}

.legal-hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(30,79,159,.05);

    right:-180px;

    top:-180px;

}

.legal-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,107,0,.05);

    left:-180px;

    bottom:-180px;

}

.legal-hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:90px;

    align-items:center;

}

.legal-hero-image{

    text-align:center;

}

.legal-hero-image img{

    width:100%;

    max-width:560px;

    filter:drop-shadow(0 25px 55px rgba(0,0,0,.12));

}

.legal-stats{

    display:flex;

    gap:25px;

    margin-top:45px;

}

.legal-stats div{

    flex:1;

    background:#fff;

    border-radius:22px;

    padding:24px;

    border:1px solid #EEF2F7;

    text-align:center;

    box-shadow:var(--shadow-sm);

}

.legal-stats h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

}

.legal-stats span{

    color:var(--gray-600);

    font-size:14px;

}

/* =====================================================
    COMPANY INFORMATION
======================================================*/

.company-info{

    padding:120px 0;

    background:#F8FAFC;

}

.company-info-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.info-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    text-align:center;

    border:1px solid #EEF2F7;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.info-card span{

    display:block;

    color:var(--secondary);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:18px;

}

.info-card h3{

    font-size:22px;

    line-height:1.5;

}/* =====================================================
    LEGAL DOCUMENTS
======================================================*/

.legal-documents{

    padding:120px 0;

    background:#ffffff;

}

.document-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.document-card{

    background:#fff;

    border:1px solid #EEF2F7;

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    position:relative;

    overflow:hidden;

}

.document-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--gradient-primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.document-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.document-card:hover::before{

    transform:scaleX(1);

}

/* ==========================================
ICON
========================================== */

.document-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:24px;

    background:rgba(11,46,109,.08);

    display:flex;

    justify-content:center;

    align-items:center;

}

.document-icon i{

    font-size:42px;

    color:var(--primary);

}

/* ==========================================
TITLE
========================================== */

.document-card h3{

    font-size:28px;

    margin-bottom:12px;

}

.document-card p{

    color:var(--gray-600);

    line-height:1.7;

    min-height:55px;

}

/* ==========================================
STATUS
========================================== */

.status{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:9px 18px;

    border-radius:999px;

    margin:20px 0;

    font-size:13px;

    font-weight:700;

}

.status.active{

    background:#DCFCE7;

    color:#15803D;

}

.status.verified{

    background:#DBEAFE;

    color:#1D4ED8;

}

.status.registered{

    background:#FEF3C7;

    color:#B45309;

}

/* ==========================================
BUTTON
========================================== */

.document-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    color:var(--primary);

    font-weight:700;

    transition:.3s;

}

.document-card a:hover{

    color:var(--secondary);

}

/* ==========================================
    SECTION TITLE
========================================== */

.section-title{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    padding:8px 18px;

    background:rgba(11,46,109,.08);

    color:var(--primary);

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title h2{

    font-size:48px;

    line-height:1.2;

    margin-bottom:22px;

}

.section-title p{

    max-width:760px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:var(--gray-600);

}/* =====================================================
    BUSINESS CERTIFICATION
======================================================*/

.business-certification{

    padding:120px 0;

    background:#F8FAFC;

}

.certification-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.cert-card{

    background:#fff;

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #EEF2F7;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.cert-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(11,46,109,.03),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.cert-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.cert-card:hover::before{

    opacity:1;

}

.cert-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--gradient-primary);

    color:#fff;

    font-size:38px;

}

.cert-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.cert-card p{

    color:var(--gray-600);

    line-height:1.8;

}


/* =====================================================
    COMPLIANCE
======================================================*/

.compliance{

    padding:120px 0;

    background:#fff;

}

.compliance-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.compliance-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:#F8FAFC;

    padding:22px 28px;

    border-radius:20px;

    border:1px solid #EEF2F7;

    transition:.3s;

}

.compliance-item:hover{

    transform:translateX(8px);

    background:#EEF4FF;

}

.compliance-item i{

    font-size:28px;

    color:#22C55E;

}

.compliance-item span{

    font-weight:600;

    color:var(--gray-700);

}


/* =====================================================
    WHY TRUST US
======================================================*/

.why-legal{

    padding:120px 0;

    background:#F8FAFC;

}

.why-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:28px;

    border:1px solid #EEF2F7;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.why-card i{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--gradient-primary);

    color:#fff;

    font-size:34px;

}

.why-card h3{

    margin-bottom:16px;

    font-size:24px;

}

.why-card p{

    color:var(--gray-600);

    line-height:1.8;

}/* =====================================================
    FAQ
======================================================*/

.faq{

    padding:120px 0;

    background:#ffffff;

}

.faq-wrapper{

    max-width:900px;

    margin:70px auto 0;

}

.faq-wrapper details{

    background:#fff;

    border:1px solid #EEF2F7;

    border-radius:20px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.faq-wrapper details:hover{

    box-shadow:var(--shadow-md);

}

.faq-wrapper summary{

    list-style:none;

    cursor:pointer;

    padding:24px 30px;

    font-size:18px;

    font-weight:600;

    color:var(--title-color);

    position:relative;

    transition:.3s;

}

.faq-wrapper summary::-webkit-details-marker{

    display:none;

}

.faq-wrapper summary::after{

    content:"+";

    position:absolute;

    right:30px;

    top:50%;

    transform:translateY(-50%);

    width:34px;

    height:34px;

    border-radius:50%;

    background:#EEF4FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    transition:.3s;

}

.faq-wrapper details[open] summary::after{

    content:"−";

    background:var(--gradient-primary);

    color:#fff;

}

.faq-wrapper details p{

    padding:0 30px 30px;

    color:var(--gray-600);

    line-height:1.9;

}/* =====================================================
    CTA
======================================================*/

.cta{

    padding:120px 0;

    background:#F8FAFC;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding:90px 70px;

    background:var(--gradient-primary);

    text-align:center;

    color:#fff;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-180px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    bottom:-150px;

    left:-100px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box span{

    display:inline-block;

    padding:8px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.cta-box h2{

    color:#fff;

    font-size:50px;

    margin-bottom:25px;

}

.cta-box p{

    max-width:760px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.9);

    line-height:1.9;

}