/*=========================================
AUTHENTICITY.CSS
PART 1
Hero + Verify Section
=========================================*/

.auth-hero{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.84)),
    url("assets/img/auth-bg.jpg") center/cover no-repeat;
}

.auth-hero .overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(212,175,55,.12),
    transparent 60%);
}

.auth-hero .container{
    position:relative;
    z-index:2;
    max-width:900px;
}

.breadcrumb{
    color:#d4af37;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.auth-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:88px;
    font-weight:600;
    line-height:1;
    margin-bottom:25px;
}

.hero-text{
    width:min(700px,100%);
    margin:auto;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
}

/*=========================================
VERIFY SECTION
=========================================*/

.verify-page{
    padding:120px 0;
    background:#090909;
    position:relative;
    overflow:hidden;
}

.verify-page::before{
    content:"";
    position:absolute;
    left:-220px;
    top:-180px;
    width:550px;
    height:550px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(212,175,55,.12),
    transparent 70%);
    filter:blur(70px);
}

.verify-grid{
    display:grid;
    grid-template-columns:1fr 480px;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.section-label{
    display:inline-block;
    color:#d4af37;
    font-size:13px;
    letter-spacing:4px;
    margin-bottom:20px;
    font-weight:600;
}

.verify-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:62px;
    line-height:1.1;
    margin-bottom:20px;
}

.verify-content .line{
    width:90px;
    height:2px;
    background:#d4af37;
    margin-bottom:30px;
}

.verify-content p{
    color:#c8c8c8;
    line-height:1.9;
    font-size:18px;
    margin-bottom:40px;
    max-width:560px;
}

.verify-form{
    display:flex;
    gap:20px;
    margin-bottom:45px;
}

.verify-form input{
    flex:1;
    height:62px;
    border-radius:50px;
    border:1px solid rgba(212,175,55,.25);
    background:#111;
    color:#fff;
    padding:0 24px;
    outline:none;
    transition:.3s;
}

.verify-form input:focus{
    border-color:#d4af37;
}

.security-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.security-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.security-item img{
    width:34px;
}

.security-item span{
    color:#ddd;
    font-size:16px;
}

/*=========================================
VERIFICATION CARD
=========================================*/

.verification-card{
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    border-radius:28px;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
    position:relative;
}

.status{
    display:inline-block;
    padding:10px 24px;
    border-radius:40px;
    margin-bottom:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.success{
    background:#1b4127;
    color:#69e48b;
}

.certificate{
    display:flex;
    justify-content:center;
    margin-bottom:30px;
}

.certificate img{
    width:120px;
}

.certificate-details{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.detail span{
    display:block;
    color:#999;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:8px;
}

.detail h4{
    font-size:22px;
    font-weight:600;
}

.verified{
    color:#55d87a;
}

/*=========================================
AUTHENTICITY.CSS
PART 2
Benefits + Process + FAQ
=========================================*/

/*=========================================
BENEFITS
=========================================*/

.benefits{
    padding:120px 0;
    background:#050505;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit-card{
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}

.benefit-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.benefit-card img{
    width:60px;
    margin:0 auto 25px;
}

.benefit-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:#fff;
    margin-bottom:18px;
}

.benefit-card p{
    color:#bfbfbf;
    line-height:1.8;
}

/*=========================================
PROCESS
=========================================*/

.process{
    padding:120px 0;
    background:#090909;
}

.steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.step{
    text-align:center;
    padding:45px 30px;
    background:#111;
    border-radius:24px;
    border:1px solid rgba(212,175,55,.18);
    transition:.35s;
}

.step:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.number{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-family:'Cormorant Garamond',serif;
    background:linear-gradient(180deg,#f5d98c,#d4af37);
    color:#111;
    font-weight:700;
}

.step h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    margin-bottom:15px;
}

.step p{
    color:#c4c4c4;
    line-height:1.8;
}

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

.faq{
    padding:120px 0;
    background:#050505;
}

.faq-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.faq-item{
    background:#111;
    border:1px solid rgba(212,175,55,.16);
    border-radius:22px;
    padding:35px;
    transition:.35s;
}

.faq-item:hover{
    border-color:#d4af37;
    transform:translateY(-6px);
}

.faq-item h3{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:#fff;
    margin-bottom:18px;
}

.faq-item p{
    color:#bfbfbf;
    line-height:1.9;
}

/*=========================================
AUTHENTICITY.CSS
PART 3
CTA + Animations + Responsive
=========================================*/

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

.cta{
    position:relative;
    padding:140px 0;
    background:#090909;
    overflow:hidden;
    text-align:center;
}

.cta::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(212,175,55,.12),
        transparent 70%
    );
    filter:blur(80px);
}

.cta .container{
    position:relative;
    z-index:2;
    max-width:820px;
}

.cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    font-weight:600;
    margin-bottom:25px;
    color:#fff;
}

.cta p{
    color:#c7c7c7;
    font-size:18px;
    line-height:1.9;
    margin-bottom:45px;
}

/*=========================================
HOVER EFFECTS
=========================================*/

.gold-btn,
.outline-btn,
.appointment-btn{
    transition:
        transform .35s,
        box-shadow .35s,
        background .35s;
}

.gold-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(212,175,55,.35);
}

.verification-card,
.benefit-card,
.step,
.faq-item{
    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;
}

.verification-card:hover,
.benefit-card:hover,
.step:hover,
.faq-item:hover{
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

/*=========================================
FADE UP ANIMATION
=========================================*/

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.auth-hero,
.verify-page,
.benefits,
.process,
.faq,
.cta{
    animation:fadeUp .8s ease;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .verify-grid{
        grid-template-columns:1fr;
    }

    .verify-content{
        text-align:center;
    }

    .verify-content .line{
        margin:0 auto 30px;
    }

    .verify-content p{
        margin:0 auto 40px;
    }

    .security-list{
        align-items:center;
    }

}

@media(max-width:900px){

    .steps{
        grid-template-columns:1fr;
    }

    .faq-list{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .auth-hero{
        min-height:500px;
    }

    .auth-hero h1{
        font-size:58px;
    }

    .verify-page,
    .benefits,
    .process,
    .faq{
        padding:90px 0;
    }

    .verify-content h2{
        font-size:46px;
    }

    .verify-form{
        flex-direction:column;
    }

    .verify-form .gold-btn{
        width:100%;
    }

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .cta{
        padding:100px 0;
    }

    .cta h2{
        font-size:42px;
    }

}

@media(max-width:480px){

    .auth-hero h1{
        font-size:42px;
    }

    .hero-text{
        font-size:16px;
    }

    .verify-content h2{
        font-size:38px;
    }

    .verification-card{
        padding:28px;
    }

    .detail h4{
        font-size:18px;
    }

    .benefit-card h3,
    .step h3,
    .faq-item h3{
        font-size:26px;
    }

    .number{
        width:65px;
        height:65px;
        font-size:28px;
    }

    .cta h2{
        font-size:34px;
    }

    .cta p{
        font-size:16px;
    }

    .gold-btn{
        width:100%;
        justify-content:center;
    }

}