*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ font-family:"Poppins",sans-serif; color:#2E2353; background:#fff; overflow-x:hidden; }
img{ max-width:100%; display:block; }
a{ text-decoration:none; }

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

header{ position:fixed; top:0; left:0; width:100%; z-index:999; background:#fff; box-shadow:0 3px 12px rgba(0,0,0,.06); }

.topbar{ height:44px; background:#2F2253; color:#fff; display:flex; justify-content:flex-end; align-items:center; }
.topbar .container{ display:flex; justify-content:flex-end; gap:45px; font-size:15px; font-weight:500; }

.navbar{ height:86px; display:flex; align-items:center; justify-content:space-between; }
.logo img{ width:170px; }

.nav-menu{ display:flex; gap:42px; align-items:center; }
.nav-menu a{ color:#2E2353; font-size:18px; font-weight:500; transition:.3s; }
.nav-menu a:hover{ color:#F4C61C; }

.nav-right{ display:flex; align-items:center; gap:30px; }
.language{ display:flex; align-items:center; gap:12px; font-size:18px; font-weight:600; }

.contact-btn{ background:#F4C61C; color:#2E2353; padding:16px 28px; border-radius:6px; font-weight:700; display:flex; align-items:center; gap:10px; transition:.3s; }
.contact-btn:hover{ background:#ffd84d; transform:translateY(-2px); }

.hero{ margin-top:130px; min-height:calc(100vh - 130px); background:url("/images/hero.png") center/cover no-repeat; position:relative; display:flex; align-items:center; }
.hero::before{ content:""; position:absolute; inset:0; background:rgba(18,18,24,.60); }
.hero .container{ position:relative; z-index:2; }

.hero-content{ width:100%; max-width:1100px; margin-left:0; }
.hero-content h1{ color:#fff; font-size:3.6rem; font-weight:800; line-height:1.15; letter-spacing:-1px; text-transform:uppercase; margin-bottom:28px; }
.hero-content h1 span{ display:block; }.hero-content p{ color:#fff; font-size:22px; line-height:1.7; max-width:700px; }
.hero-content strong{ font-weight:700; }

.hero-button{ margin-top:30px; display:inline-flex; align-items:center; gap:12px; background:#F4C61C; color:#2E2353; padding:18px 32px; font-weight:700; border-radius:6px; transition:.3s; }
.hero-button:hover{ background:#ffd84d; transform:translateY(-2px); }

section{ padding:90px 0; }

@media(max-width:1200px){
  .hero-content h1{ font-size:3.2rem; }
  .nav-menu{ gap:28px; }
}

@media(max-width:992px){
  .topbar{ display:none; }
  .hero{ margin-top:86px; min-height:90vh; }
  .nav-menu{ display:none; }
  .navbar{ height:80px; }
  .hero-content h1{ font-size:2.6rem; }
  .hero-content p{ font-size:18px; }
  .hero-button{ padding:16px 28px; }
  .contact-btn{ padding:14px 24px; }
}

@media(max-width:768px){
  .container{ width:92%; }
  .hero{ text-align:center; }
  .hero-content{ max-width:100%; }
  .hero-content h1{ font-size:2.2rem; line-height:1.2; }
  .hero-content p{ font-size:17px; }
  .hero-button{ width:100%; justify-content:center; }
  .contact-btn{ display:none; }
  .language{ display:none; }
}

@media(max-width:480px){
  .hero-content h1{ font-size:1.9rem; }
  .hero-content p{ font-size:16px; }
}