@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html{
    scroll-behavior:smooth;
}

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

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

/* HEADER */

header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:1400px;
    z-index:1000;
}

.navbar{
    background:rgba(15,15,15,.7);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:20px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:900;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff8a00;
}

.lang-switch{
    display:flex;
    gap:10px;
}

.lang-switch button{
    width:45px;
    height:45px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.15);
    background:transparent;
    color:white;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%, rgba(255,138,0,.25), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(0,119,255,.2), transparent 35%);
}

.hero-content{
    position:relative;
    z-index:2;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;
    margin-bottom:25px;
    color:#aaa;
}

.hero h1{
    font-size:82px;
    line-height:1;
    max-width:900px;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    color:#aaa;
    max-width:700px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:linear-gradient(135deg,#ff8a00,#ff5e00);
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:16px;
    font-weight:700;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:16px;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:80px;
}

.stat-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;
}

.stat-card h3{
    font-size:50px;
    color:#ff8a00;
}

.stat-card p{
    color:#999;
}

/* SECTIONS */

section{
    padding:120px 0;
}

.section-title{
    font-size:56px;
    margin-bottom:20px;
}

.section-subtitle{
    color:#999;
    margin-bottom:60px;
}

/* PORTFOLIO */

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

.project-card{
    background:#111;
    border-radius:28px;
    overflow:hidden;
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.project-content{
    padding:30px;
}

.project-content h3{
    margin-bottom:15px;
    font-size:28px;
}

.project-content p{
    color:#999;
}

/* PRICING */

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

.price-card{
    background:#111;
    border-radius:30px;
    padding:45px;
    border:1px solid rgba(255,255,255,.08);
}

.price-card.featured{
    border:1px solid #ff8a00;
}

.price{
    font-size:65px;
    font-weight:800;
    margin:25px 0;
    color:#ff8a00;
}

.price-card ul{
    list-style:none;
}

.price-card li{
    margin-bottom:15px;
    color:#bbb;
}

/* CONTACT */

.contact-box{
    background:#111;
    border-radius:30px;
    padding:60px;
    text-align:center;
}

.contact-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.contact-box p{
    color:#999;
    margin-bottom:35px;
}

.contact-links{
    display:flex;
    justify-content:center;
    gap:20px;
}

.contact-links a{
    text-decoration:none;
    color:white;
    padding:18px 30px;
    border-radius:16px;
    background:#1b1b1b;
}

/* FOOTER */

footer{
    border-top:1px solid rgba(255,255,255,.08);
    padding:40px 0;
    text-align:center;
    color:#777;
}

/* MOBILE */

@media(max-width:1000px){

.hero h1{
    font-size:54px;
}

.projects-grid,
.pricing-grid,
.stats{
    grid-template-columns:1fr;
}

.nav-links{
    display:none;
}

.hero-buttons{
    flex-direction:column;
}

.contact-links{
    flex-direction:column;
}
}
