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

:root {
  --navy:       #0E3470;
  --navy-dark:  #154A88;
  --orange:     #F37321;
  --orange-dark:#D45F10;
  --slate:      #5a6472;
  --bg:         #ffffff;
  --bg-soft:    #f5f6f8;
  --bg-subtle:  #eceef2;
  --border:     #dde0e7;
  --border-dark:#c2c7d0;
  --ink:        #1a1f2e;
  --ink-mid:    #4a5160;
  --ink-light:  #8a91a0;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--orange);
}
.site-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.site-logo {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-img { height: 40px; width: auto; }
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: #fff; letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.15;
}
.logo-text span { color: var(--orange); }

.site-nav { display: flex; gap: .05rem; flex-wrap: wrap; }
.site-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  padding: .45rem .85rem; border-radius: 3px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-nav a.active { color: #fff; border-bottom: 2px solid var(--orange); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, rgba(232,80,26,.12) 100%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.breadcrumb {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: .45rem; margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .cur { color: var(--orange); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: #fff;
  line-height: 1; margin-bottom: .8rem;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  color: rgba(255,255,255,.7); font-size: .95rem;
  line-height: 1.7; max-width: 600px; font-weight: 400;
}

/* ── MAIN ── */
.main {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 5rem;
}

/* ── SECTION TITLES ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .5rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; color: var(--navy);
  line-height: 1.05; margin-bottom: 1rem;
}
.section-body {
  font-size: .92rem; color: var(--ink-mid);
  line-height: 1.75; max-width: 680px;
  font-weight: 400;
}

/* ── DIVIDER ── */
.section-divider {
  border: none; border-top: 2px solid var(--border);
  margin: 3rem 0;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem; margin-top: 1.8rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 6px;
  padding: 1.6rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 30px rgba(26,58,107,.1); transform: translateY(-2px); }
.card-icon { font-size: 1.8rem; margin-bottom: .9rem; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--navy); margin-bottom: .5rem;
}
.card-text { font-size: .85rem; color: var(--ink-mid); line-height: 1.6; font-weight: 400; }

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; margin: 2rem 0;
}
.stat-box {
  background: var(--bg-soft); padding: 1.8rem 1.4rem; text-align: center;
}
.stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--orange); line-height: 1; display: block;
  letter-spacing: .02em;
}
.stat-key {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); margin-top: .4rem; display: block;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); border: none; border-radius: 4px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .75rem 1.6rem; cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  border: 2px solid var(--navy); border-radius: 4px;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .7rem 1.5rem; cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--navy);
  border-radius: 6px; padding: 2rem 2.2rem;
  color: #fff;
}
.highlight-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--orange); margin-bottom: .6rem;
}
.highlight-box p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.75); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--orange);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .logo-text { font-size: .95rem; }
.footer-desc {
  font-size: .8rem; color: rgba(255,255,255,.45);
  line-height: 1.65; margin-top: .8rem; font-weight: 300;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .9rem;
}
.footer-col a {
  display: block; font-size: .8rem;
  color: rgba(255,255,255,.55); text-decoration: none;
  margin-bottom: .4rem; transition: color .15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.2rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.3); letter-spacing: .05em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp .35s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-nav a { font-size: .72rem; padding: .4rem .55rem; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem .5rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 520px) {
  .hamburger { display: flex; }
  .site-nav.nav-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    padding: 1.2rem 1.4rem;
    z-index: 98;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: .2rem;
    overflow-y: auto;
  }
  .site-nav.nav-open a {
    padding: .85rem 1rem;
    border-radius: 4px;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
}

/* ── COUNTRY SWITCH BUTTON ── */
.country-switch {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: .5rem;
}
.country-switch:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ── COUNTRY SWITCHER DROPDOWN ── */
.country-switcher {
  position: relative;
  flex-shrink: 0;
  margin-left: .5rem;
}
.switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.switcher-btn:hover,
.country-switcher.open .switcher-btn {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.country-switcher.open .switcher-btn {
  border-radius: 10px 10px 0 0;
  border-bottom-color: transparent;
}
.switcher-chevron {
  font-size: .65rem;
  transition: transform .15s;
  display: inline-block;
}
.country-switcher.open .switcher-chevron {
  transform: rotate(180deg);
}
.switcher-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px 0 8px 8px;
  overflow: hidden;
  min-width: 140px;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  z-index: 200;
}
.country-switcher.open .switcher-dropdown {
  display: block;
}
.switcher-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: background .12s, color .12s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.switcher-option:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.switcher-option.current {
  color: var(--orange);
  cursor: default;
}
.switcher-option.current:hover {
  background: none;
}

/* ── LOGO WITH IMAGE ── */
.logo-country-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-left: .3rem;
  align-self: flex-end;
  padding-bottom: 2px;
}
.site-logo {
  gap: .6rem;
  align-items: center;
}

/* ── SAFARI FIX — visited link color override ── */
a.site-logo,
a.site-logo:link,
a.site-logo:visited,
a.site-logo:hover,
a.site-logo:active {
  color: #fff;
  text-decoration: none;
  -webkit-text-fill-color: #fff;
}
a.site-logo .logo-country-badge,
a.site-logo:visited .logo-country-badge {
  color: rgba(255,255,255,.55);
  -webkit-text-fill-color: rgba(255,255,255,.55);
}

/* ── SAFARI FIX — dropdown button rendering ── */
.switcher-btn {
  -webkit-appearance: none;
  appearance: none;
}

/* ── SAFARI FIX — switcher dropdown link color ── */
a.switcher-option,
a.switcher-option:link,
a.switcher-option:visited,
a.switcher-option:hover,
a.switcher-option:active {
  color: rgba(255,255,255,.65);
  -webkit-text-fill-color: rgba(255,255,255,.65);
  text-decoration: none;
}
a.switcher-option:hover {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
