﻿.hero-section{
    max-width:1360px;
    margin:50px auto 30px;
    padding:70px;
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:70px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

.hero-section::before{

content:"";

position:absolute;

width:600px;

height:600px;

right:-220px;

top:-220px;

background:#d4af37;

opacity:.22;

filter:blur(170px);

}
.hero-section::after{

content:"";

position:absolute;

left:-180px;

bottom:-180px;

width:350px;

height:350px;

background:#ffca5f;

opacity:.08;

filter:blur(140px);

}

.hero-left{

display:flex;

flex-direction:column;

justify-content:center;

align-items:flex-start;

    gap:24px;

z-index:2;

}

.hero-badge{

display:inline-flex;

align-items:center;

padding:12px 24px;

border-radius:100px;

font-size:15px;

font-weight:600;

letter-spacing:.4px;

margin-bottom:8px;

}
.hero-left h1{

font-size:54px;

line-height:1.08;

font-weight:800;

color:white;

margin:0;

}

.hero h1{
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 18px 0 24px;
}
.hero-left p{

font-size:20px;

line-height:1.75;

max-width:560px;

color:#d7d7d7;

margin:0 0 10px;

}
.hero-btns{

display:flex;

gap:18px;

margin-top:12px;

}

.btn-primary{

padding:18px 42px;

background:#ffca5f;

color:#111;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

box-shadow:0 15px 40px rgba(255,202,95,.35);

}

.btn-secondary{

padding:18px 42px;

border:2px solid #ffca5f;

border-radius:50px;

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

.btn-secondary:hover{

background:#ffca5f;

color:#111;

}

.hero-features{

display:flex;

gap:28px;

margin-top:32px;

padding-top:28px;

border-top:1px solid rgba(255,255,255,.08);

}
.hero-features div{

display:flex;

align-items:center;

gap:10px;

font-size:16px;

font-weight:600;

color:#f3f3f3;

}
.hero-right{

display:flex;

justify-content:center;

align-items:center;

z-index:2;
align-self:center;
    transform:translateY(-20px);

}

.hero-right img{

    width:min(100%,520px);

height:auto;

display:block;


border-radius:22px;

box-shadow:
0 30px 80px rgba(0,0,0,.55);

}
.hero-right img:hover{

transform:scale(1.02);

}
/* ===================================
   RESPONSIVE HERO
=================================== */

@media only screen and (max-width:991px){

.hero-section{
    display:flex !important;
    flex-direction:column-reverse;
    margin:20px 15px;
    padding:35px 20px;
    gap:30px;
    max-width:100%;
}

.hero-left{
    width:100%;
    align-items:center;
    text-align:center;
}

.hero-right{
    width:100%;
    transform:none !important;
}

.hero-right img{
    width:100%;
    max-width:340px;
    display:block;
    margin:auto;
}

.hero-left h1{
    font-size:38px;
    line-height:1.15;
}

.hero-left p{
    font-size:17px;
    max-width:100%;
}

.hero-btns{
    width:100%;
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
}

.hero-features{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:center;
}

}