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

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

:root {
  --blue: #1A6EFF;
  --blue-light: #4D8FFF;
  --dark: #0D0D12;
  --gray-bg: #F0F0F5;
  --gray-border: #E4E4E8;
  --text-primary: #0D0D12;
  --text-secondary: #666670;
  --text-muted: #9999A8;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--text-secondary);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* COUNTRY SWITCHER */
.country-switcher {
  display: flex; align-items: center;
  border: 1px solid var(--gray-border); border-radius: 8px;
  overflow: hidden; background: var(--gray-bg);
}
.country-btn {
  padding: 6px 12px; font-size: 13px; font-weight: 500;
  font-family: inherit; cursor: pointer; border: none;
  background: transparent; color: var(--text-secondary);
  transition: all 0.15s; display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.country-btn.active {
  background: var(--dark); color: white;
}
.country-btn:not(.active):hover { background: var(--gray-border); }

.nav-cta {
  background: var(--blue); color: white;
  font-size: 14px; font-weight: 500;
  padding: 8px 18px; border-radius: 8px;
  transition: background 0.15s; white-space: nowrap;
}
.nav-cta:hover { background: #1560e8; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  border: none; transition: all 0.15s; font-family: inherit;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1560e8; }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--gray-border);
}
.btn-outline:hover { border-color: #bbbbc8; background: var(--gray-bg); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 7px; }

/* SECTIONS */
.section { padding: 96px 40px; }
.section-sm { padding: 64px 40px; }
.container { max-width: 1080px; margin: 0 auto; }

/* BADGES */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
}
.badge-blue { background: #E8F0FF; color: var(--blue); }
.badge-green { background: #E6F6EE; color: #1A8A4A; }
.badge-amber { background: #FFF4E0; color: #B87000; }
.badge-red { background: #FFF0EE; color: #D63B2F; }

/* CARDS */
.card {
  background: white; border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color 0.15s;
}
.card:hover { border-color: #bbbbc8; }
.card-featured { border-color: var(--blue); border-width: 1.5px; }

/* SEARCH BAR */
.search-bar {
  display: flex; align-items: center;
  background: white; border: 1.5px solid var(--gray-border);
  border-radius: 12px; overflow: hidden;
  max-width: 600px; width: 100%;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.search-bar input {
  flex: 1; padding: 16px 20px;
  font-size: 15px; font-family: inherit;
  border: none; outline: none; background: transparent;
  color: var(--text-primary);
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  padding: 12px 24px; margin: 6px;
  background: var(--blue); color: white;
  font-size: 15px; font-weight: 500; font-family: inherit;
  border: none; border-radius: 8px; cursor: pointer;
  white-space: nowrap; transition: background 0.15s;
}
.search-bar button:hover { background: #1560e8; }

/* FILTER PILLS */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 400; cursor: pointer;
  border: 1px solid var(--gray-border); background: white;
  color: var(--text-secondary); transition: all 0.15s;
}
.pill:hover { border-color: #bbbbc8; color: var(--text-primary); }
.pill.active {
  background: #E8F0FF; border-color: #b3ccff; color: var(--blue); font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--dark); color: white;
  padding: 56px 40px 32px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-logo { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* SECTION LABELS */
.section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3vw, 38px); font-weight: 300;
  letter-spacing: -0.03em; line-height: 1.2;
}
.section-title strong { font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: auto; min-height: 64px; flex-wrap: wrap; padding: 12px 20px; gap: 12px; }
  .nav-links { display: none; }
  .section { padding: 64px 20px; }
  .section-sm { padding: 48px 20px; }
  footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex; align-items: center;
  border: 1px solid var(--gray-border); border-radius: 8px;
  overflow: hidden; background: var(--gray-bg);
}
.lang-btn {
  padding: 6px 10px; font-size: 12px; font-weight: 600;
  font-family: inherit; cursor: pointer; border: none;
  background: transparent; color: var(--text-secondary);
  transition: all 0.15s; letter-spacing: 0.04em;
}
.lang-btn.active { background: var(--dark); color: white; }
.lang-btn:not(.active):hover { background: var(--gray-border); }
