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

body {
  font-family: Arial, sans-serif;
  color: #0A1020;
  background: #f5f6fa;
  line-height: 1.5;
}

/* CONTAINERS */
.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* TOPBAR */
.topbar {
  background: #0A1020;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

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

.topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__link {
  color: white;
  text-decoration: none;
}

.langbtn {
  background: #FFD700;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

/* NAVIGATION */
.nav {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

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

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  border: 2px solid #0A1020;
}

.brand__text strong {
  font-size: 18px;
  font-weight: bold;
  color: #0A1020;
}

#navTagline {
  font-size: 12px;
  color: #666;
}

/* NAV LINKS */
.nav__links {
  display: flex;
  gap: 20px;
}

.nav__links a {
  color: #0A1020;
  text-decoration: none;
  font-weight: 600;
}

.nav__actions {
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.btn {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.btn--primary {
  background: #0A1020;
  color: white;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #0A1020;
  color: #0A1020;
}

.w100 { width: 100%; }

/* HERO */
.hero {
  background: white;
  padding: 60px 0;
}

.hero__inner {
  display: flex;
  gap: 50px;
}

.pill {
  background: #FFD700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.stats {
  margin-top: 20px;
}

.stat {
  margin-bottom: 10px;
}

/* CONTACT FORM */
.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 14px;
}

.form textarea {
  height: 120px;
}

/* FOOTER */
.footer {
  background: #0A1020;
  color: white;
  padding: 20px 0;
  margin-top: 40px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
  }

  .nav__links {
    display: none;
  }

  #mobileMenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}