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

:root {
  --color-bg:          #F7F8FA;
  --color-surface:     #FFFFFF;
  --color-border:      #E2E6ED;
  --color-text:        #1A1F2E;
  --color-text-muted:  #6B7280;
  --color-accent:      #2563EB;
  --color-accent-dark: #1D4ED8;
  --color-accent-light:#EFF6FF;
  --color-navy:        #0F172A;
  --color-slate-100:   #F1F5F9;
  --color-slate-200:   #E2E8F0;
  --color-slate-600:   #475569;
  --color-success:     #059669;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);

  --container:  1200px;
  --header-h:   72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--color-slate-600); }
strong { color: var(--color-text); font-weight: 600; }
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 80px; }
.section--alt { background: var(--color-surface); }
.section--dark { background: var(--color-navy); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #94A3B8; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--color-accent); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: block;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-slate-600);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: var(--color-accent-light);
  color: var(--color-accent);
  text-decoration: none;
}
.nav-link.active { color: var(--color-accent); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-slate-600);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.nav-dropdown-toggle .caret { transition: transform 0.2s; font-size: 0.75rem; }
.nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 6px;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background 0.12s;
}
.nav-dropdown-menu a:hover {
  background: var(--color-slate-100);
  text-decoration: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-surface);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav .mobile-section-title {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--color-text);
  border-radius: var(--radius-md);
  font-weight: 500;
}
.mobile-nav .mobile-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  padding-top: 20px;
  font-family: var(--font-body);
  cursor: default;
}
.mobile-nav a:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  text-decoration: none;
}
.mobile-nav-divider {
  height: 1px;
  background: var(--color-border);
  margin-block: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn--outline:hover { background: var(--color-accent-light); }
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
.btn--sm { padding: 8px 16px; font-size: 0.825rem; }
.hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
  padding-block: 100px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(37,99,235,0.3);
  color: #93C5FD;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,0.4);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #93C5FD; }
.hero-sub { font-size: 1.1rem; color: #94A3B8; margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.hero-stat-label { font-size: 0.825rem; color: #64748B; margin-top: 2px; }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-intro .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-intro h2 { margin-bottom: 16px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  color: var(--color-accent);
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 8px; font-size: 1.125rem; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text { display: flex; flex-direction: column; gap: 20px; }
.feature-text .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-list-item .check {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #fff;
  font-size: 0.75rem;
}
.data-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: var(--color-navy);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.data-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-slate-600);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--color-slate-100); }
.data-table tr:hover td { background: var(--color-accent-light); }
.data-table td:first-child { font-weight: 600; color: var(--color-text); }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--low { background: #D1FAE5; color: #065F46; }
.badge--mid { background: #FEF3C7; color: #92400E; }
.badge--high { background: #FEE2E2; color: #991B1B; }
.info-box {
  background: var(--color-accent-light);
  border: 1px solid #BFDBFE;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-block: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-box p { color: var(--color-accent-dark); margin: 0; font-size: 0.9rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  background: var(--color-surface);
  padding: 32px 24px;
  text-align: center;
}
.stat-cell-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-accent);
}
.stat-cell-label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 4px; }
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.country-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.country-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.country-card-header {
  background: var(--color-navy);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.country-flag {
  font-size: 2rem;
  line-height: 1;
}
.country-name { color: #fff; font-weight: 600; font-size: 1.05rem; }
.country-region { color: #64748B; font-size: 0.8rem; margin-top: 2px; }
.country-card-body { padding: 20px; }
.country-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
}
.country-stat:last-child { border-bottom: none; }
.country-stat-label { color: var(--color-text-muted); }
.country-stat-value { font-weight: 600; color: var(--color-text); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-control {
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit { margin-top: 8px; }
.site-footer {
  background: var(--color-navy);
  color: #94A3B8;
  padding-block: 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-desc { font-size: 0.875rem; color: #64748B; margin-top: 12px; line-height: 1.7; }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: #64748B;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #475569;
}
.footer-bottom a { color: #475569; }
.footer-bottom a:hover { color: #94A3B8; text-decoration: none; }
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; min-width: 240px; font-size: 0.875rem; color: #94A3B8; }
.cookie-text a { color: #93C5FD; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
}
.cookie-btn--accept { background: var(--color-accent); color: #fff; }
.cookie-btn--accept:hover { background: var(--color-accent-dark); }
.cookie-btn--decline { background: rgba(255,255,255,0.08); color: #94A3B8; }
.cookie-btn--decline:hover { background: rgba(255,255,255,0.14); }
.page-hero {
  background: var(--color-navy);
  padding-block: 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: 12px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #94A3B8; max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: 16px;
}
.breadcrumb a { color: #64748B; }
.breadcrumb a:hover { color: #94A3B8; text-decoration: none; }
.breadcrumb-sep { color: #334155; }
.prose {
  max-width: 780px;
}
.prose h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.prose h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 20px; list-style: disc; }
.prose ul li, .prose ol li { color: var(--color-slate-600); margin-bottom: 6px; }
.prose ol { list-style: decimal; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-info { padding: 20px; }
.team-name { font-weight: 600; font-size: 1rem; color: var(--color-text); }
.team-role { font-size: 0.825rem; color: var(--color-text-muted); margin-top: 4px; }
.bar-chart { display: flex; flex-direction: column; gap: 16px; }
.bar-item { display: flex; flex-direction: column; gap: 6px; }
.bar-header { display: flex; justify-content: space-between; font-size: 0.875rem; }
.bar-label { font-weight: 500; color: var(--color-text); }
.bar-value { font-weight: 600; color: var(--color-accent); }
.bar-track {
  height: 10px;
  background: var(--color-slate-200);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 100px;
  transition: width 1s ease;
}
.bar-fill--light { background: #93C5FD; }
.bar-fill--green { background: #34D399; }
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--color-border); margin-bottom: 32px; overflow-x: auto; }
.tab-btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.tab-btn:hover { color: var(--color-accent); background: var(--color-accent-light); }
.tab-btn.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.accordion { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--color-surface);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--color-slate-100); }
.accordion-trigger .acc-icon { transition: transform 0.25s; color: var(--color-accent); }
.accordion-trigger.open .acc-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 20px 18px;
  background: var(--color-surface);
  color: var(--color-slate-600);
  font-size: 0.9rem;
  line-height: 1.7;
}
.accordion-body.open { display: block; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-section { padding-block: 64px; }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding-block: 56px; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero { padding-block: 72px 56px; }
  .hero-stats { gap: 24px; }
  .page-hero { padding-block: 48px; }
  .card-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
