:root{

    --primary:#2563eb;
    --primary-light:#60a5fa;

    --text:#1e293b;
    --muted:#64748b;

    --background:#f8fafc;

    --card:#ffffff;

    --radius:18px;

    --shadow:0 20px 50px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Manrope,sans-serif;

    background:var(--background);

    color:var(--text);

}

.container{

    width:min(1180px,92%);
    margin:auto;

}

header{

    position:sticky;
    top:0;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.85);

    border-bottom:1px solid #eef2f7;

    z-index:100;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo img{

    height:58px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:var(--text);

    text-decoration:none;

    font-weight:600;

}

nav a:hover{

    color:var(--primary);

}

.language-switcher{

    display:flex;

    gap:8px;

}

.language-switcher button{

    border:none;

    padding:8px 14px;

    border-radius:999px;

    cursor:pointer;

    background:#e2e8f0;

}

.language-switcher .active{

    background:var(--primary);

    color:white;

}

.hero{

    min-height:88vh;

    display:flex;

    align-items:center;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:80px;

    align-items:center;

}

.hero-logo{

    text-align:center;

}

.hero-logo img{

    width:100%;
    max-width:380px;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    50%{

        transform:translateY(-12px);

    }

}

.badge{

    display:inline-block;

    background:#dbeafe;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:25px;

    font-weight:700;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    color:var(--muted);

    font-size:22px;

    max-width:650px;

}

.buttons{

    margin-top:40px;

    display:flex;

    gap:18px;

}

.primary{

    background:var(--primary);

    color:white;

    text-decoration:none;

    padding:16px 28px;

    border-radius:12px;

    font-weight:700;

}

.secondary{

    border:2px solid #dbeafe;

    color:var(--primary);

    text-decoration:none;

    padding:16px 28px;

    border-radius:12px;

}

section{

    padding:90px 0;

}

h2{

    text-align:center;

    font-size:42px;

    margin-bottom:50px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.cards article{

    background:white;

    border-radius:var(--radius);

    padding:35px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.cards article:hover{

    transform:translateY(-8px);

}

.cards h3{

    margin-bottom:20px;

}

.center{

    text-align:center;

    max-width:700px;

    margin:auto;

    color:var(--muted);

}

.contact-box{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:36px;

    padding:40px 20px;
}

footer{

    padding:40px;

    text-align:center;

    color:var(--muted);

}

@media(max-width:900px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:44px;

}

nav{

display:none;

}

.buttons{

justify-content:center;

flex-wrap:wrap;

}

}
