*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#0d0d0d;
color:#fff;
font-family:'Inter',sans-serif;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

.hero-section{
padding:80px 0;
position:relative;
}

.hero-top{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:60px;
flex-wrap:wrap;
}

.hero-content{
flex:1;
min-width:300px;
}

.tag{
letter-spacing:4px;
font-size:12px;
color:#ff6b00;
margin-bottom:20px;
}

.hero-content h1{
font-family:'Anton',sans-serif;
font-size:120px;
line-height:.9;
font-weight:400;
}

.hero-content span{
color:#ff6b00;
}

.hero-content p{
margin-top:25px;
max-width:550px;
line-height:1.8;
color:#cfcfcf;
}

.stats{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.card{
background:#161616;
border-radius:30px;
}

.stat-card{
padding:35px;
width:170px;
text-align:center;
}

.stat-card i{
font-size:24px;
color:#ff6b00;
margin-bottom:15px;
}

.stat-card h3{
font-size:48px;
}

.masterclass{
margin-top:70px;
overflow:hidden;
position:relative;
}

.masterclass img{
width:100%;
height:550px;
object-fit:cover;
opacity:.3;
}

.masterclass-content{
position:absolute;
top:50%;
left:70px;
transform:translateY(-50%);
max-width:650px;
}

.badge{
background:#ff6b00;
padding:10px 18px;
border-radius:30px;
font-size:11px;
font-weight:700;
}

.masterclass-content h2{
font-family:'Anton',sans-serif;
font-size:10px;
line-height:.9;
margin:25px 0;
}

.orange-btn{
background:#ff6b00;
border:none;
padding:18px 30px;
border-radius:40px;
color:white;
cursor:pointer;
}

.latest-content{
padding:100px 0;
}

.section-title{
font-family:'Anton',sans-serif;
font-size:70px;
margin-bottom:50px;
font-weight:400;
}

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

.article-card{
display:flex;
gap:20px;
padding:20px;
}

.article-card img{
width:180px;
height:180px;
object-fit:cover;
border-radius:20px;
}

.article-content{
flex:1;
}

.category{
font-size:12px;
letter-spacing:2px;
color:#ff6b00;
margin-bottom:15px;
}

.article-content h3{
font-size:36px;
line-height:1.1;
margin-bottom:15px;
}

.article-content p{
color:#cfcfcf;
line-height:1.7;
}

.article-footer{
display:flex;
justify-content:space-between;
margin-top:20px;
align-items:center;
}

.cta-section{
padding-bottom:120px;
}

.cta-box{
background:#ff5b00;
border-radius:40px;
padding:100px 50px;
text-align:center;
}

.cta-box h2{
font-family:'Anton',sans-serif;
font-size:100px;
line-height:.9;
}

.cta-box p{
margin:30px auto;
max-width:700px;
line-height:1.8;
}

.cta-form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.cta-form input{
padding:18px 24px;
width:350px;
border:none;
border-radius:40px;
}

.cta-form button{
padding:18px 35px;
border:none;
border-radius:40px;
cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-content h1{
font-size:80px;
}

.masterclass-content{
left:30px;
right:30px;
}

.masterclass-content h2{
font-size:65px;
}

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

.cta-box h2{
font-size:70px;
}
}

@media(max-width:768px){

.hero-content h1{
font-size:60px;
}

.masterclass img{
height:450px;
}

.masterclass-content h2{
font-size:48px;
}

.article-card{
flex-direction:column;
}

.article-card img{
width:100%;
height:250px;
}

.section-title{
font-size:48px;
}

.cta-box{
padding:60px 25px;
}

.cta-box h2{
font-size:50px;
}

.cta-form input{
width:100%;
}
}

@media(max-width:480px){

.hero-content h1{
font-size:48px;
}

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

.section-title{
font-size:38px;
}

.cta-box h2{
font-size:38px;
}
}