/*====================================================*/

.why-us{

    position:relative;

    overflow:hidden;

    background:#050b13;

    padding:90px 20px;

}

.why-container{

    max-width:1250px;

    margin:auto;

    position:relative;

    z-index:2;

}

/************************************************/

.why-bg{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(0,170,255,.08),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,193,7,.08),
    transparent 30%);

}

/************************************************/

.why-header{

    text-align:center;

    max-width:700px;

    margin:auto auto 50px;

}

.why-tag{

    display:inline-block;

    color:#FFD54A;

    font-size:.8rem;

    letter-spacing:3px;

    margin-bottom:16px;

}

.why-header h2{

    color:white;

    font-size:clamp(2rem,7vw,3.7rem);

    line-height:1.1;

    margin-bottom:20px;

}

.why-header p{

    color:#c3ccd6;

    line-height:1.8;

}

/************************************************/

.hero-badge{

    display:flex;

    justify-content:center;

    margin-bottom:45px;

}

.glass-circle{

    width:180px;

    height:180px;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:

    linear-gradient(145deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.04));

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:

    inset 0 1px 1px rgba(255,255,255,.2),

    0 20px 60px rgba(0,0,0,.35);

    animation:pulse 6s infinite;

}

.glass-circle span{

    font-size:3.2rem;

    font-weight:bold;

    color:#FFD54A;

}

.glass-circle small{

    color:white;

    margin-top:10px;

    letter-spacing:2px;

}

/************************************************/

.why-grid{

    display:grid;

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:18px;

    padding:20px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.feature-icon{

    min-width:60px;

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#FFD54A,#FFA000);

    font-size:28px;

}

.feature h3{

    color:white;

    margin-bottom:6px;

    font-size:1.05rem;

}

.feature p{

    color:#c6d0db;

    font-size:.95rem;

    line-height:1.7;

}

@media(hover:hover){

.feature:hover{

    transform:translateY(-6px);

    border-color:#FFD54A;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

}

/************************************************/
/* Tablet */
/************************************************/

@media(min-width:768px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

/************************************************/
/* Desktop */
/************************************************/

@media(min-width:1100px){

.why-us{

padding:140px 20px;

}

.why-grid{

grid-template-columns:repeat(3,1fr);

gap:28px;

}

.feature{

display:block;

padding:30px;

}

.feature-icon{

margin-bottom:22px;

}

.glass-circle{

width:220px;

height:220px;

}

}

/************************************************/

.reveal{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:none;

}

@keyframes pulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

}