/* ================= HERO ================= */

.interview-hero{
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
}

.interview-hero-overlay{
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%),
                radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 35%);
}

.interview-badge{
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 20px;
}

.interview-title{
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.interview-text{
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 680px;
}

.interview-buttons{
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================= HERO BOX ================= */

.hero-side-box-int{
    background: rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 26px;
    backdrop-filter: blur(10px);
}

.hero-side-icon-int{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-side-icon-int img{
    width: 36px;
}

.hero-side-box-int h3{
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-side-box-int ul{
    padding-left: 18px;
}

.hero-side-box-int ul li{
    margin-bottom: 8px;
}

/* ================= GENERAL ================= */

.int-section{
    padding: 90px 0;
}

.light-section{
    background: #f4f7fc;
}

.section-chip{
    display: inline-block;
    background: #eaf2ff;
    color: #1a4fa0;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 16px;
}

.white-chip{
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.section-title{
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d2c6c;
    margin-bottom: 18px;
}

.section-subtitle{
    max-width: 700px;
    margin: 0 auto;
    color: #6a7c95;
    line-height: 1.8;
}

.section-text{
    color: #5b6c84;
    line-height: 1.9;
}

/* ================= OVERVIEW ================= */

.overview-card-int{
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.overview-card-int:hover{
    transform: translateY(-6px);
}

.overview-icon-int{
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: #eef4ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-icon-int img{
    width: 36px;
}

.overview-card-int h4{
    font-weight: 800;
    margin-bottom: 10px;
}

.overview-card-int p{
    color: #5f6f86;
}

/* ================= TIPS ================= */

.tips-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tip-card{
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.tip-card h4{
    font-weight: 800;
    margin-bottom: 10px;
}

/* ================= QUESTIONS ================= */

.questions-wrap{
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}

.questions-wrap::before{
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2b74d8, #cfe1ff);
    border-radius: 10px;
}

.question-item{
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.question-number{
    min-width: 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d2c6c, #2b74d8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(43,116,216,0.25);
    position: relative;
    z-index: 2;
}

.question-content{
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(13,44,108,0.08);
    flex: 1;
}

.question-content h4{
    color: #0d2c6c;
    font-weight: 800;
    margin-bottom: 10px;
}

.question-content p{
    margin: 0;
    color: #5f6f86;
    line-height: 1.8;
}

/* ================= LETTERS ================= */

.letter-card{
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    height: 100%;
    transition: 0.3s;
}

.letter-card:hover{
    transform: translateY(-6px);
}

.letter-card h4{
    font-weight: 800;
    margin-bottom: 10px;
    color: #0d2c6c;
}

.letter-card p{
    color: #5f6f86;
    line-height: 1.8;
}

/* ================= CTA ================= */

.interview-cta{
    background: linear-gradient(135deg, #0d2c6c, #2c74d8);
    color: #fff;
    padding: 90px 0;
}

.interview-cta h2{
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.interview-cta p{
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px){
    .interview-title{
        font-size: 2.3rem;
    }

    .tips-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .interview-title{
        font-size: 2rem;
    }

    .int-section{
        padding: 60px 0;
    }

    .question-item{
        gap: 16px;
    }

    .question-number{
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 0.92rem;
    }

    .questions-wrap::before{
        left: 23px;
    }
}