:root {
  --blue: #1d4ed8;
  --blue-deep: #123e8a;
  --yellow: #facc15;
  --red: #dc2626;
  --orange: #f59e0b;
  --warm: #fff1db;
  --text: #1f2937;
  --muted: #5b6473;
  --surface: #ffffff;
  --surface-soft: #f5f7ff;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 18px 40px rgba(31, 41, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(18, 62, 138, 0.06);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.15);
}

.brand-name,
.brand-country {
  display: block;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.brand-country {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--muted);
}

.menu a {
  transition: color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: white;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-deep);
  border: 1px solid rgba(18, 62, 138, 0.15);
}

.hero {
  padding: 72px 0 48px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.20), transparent 30%),
              radial-gradient(circle at bottom right, rgba(29, 78, 216, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  background: linear-gradient(135deg, rgba(255,247,235,0.94), rgba(232,244,255,0.92));
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
  padding: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #9a4d00;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: #0f172a;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 650px;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-trust-bar div {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.trust-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-trust-bar strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.5rem;
  margin-bottom: 3px;
}

.hero-trust-bar small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.hero-list li::before {
  content: "✓";
  color: var(--red);
  margin-right: 10px;
}

.hero-panel {
  background: linear-gradient(160deg, rgba(250, 204, 21, 0.15), rgba(29, 78, 216, 0.05));
  border: 1px solid rgba(18, 62, 138, 0.08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.flag-card {
  background: rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  padding: 18px 18px 10px;
  border: 1px solid var(--border);
}

.flag {
  display: grid;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.04);
}

.band {
  display: block;
  height: 52px;
}

.band.yellow { background: var(--yellow); }
.band.blue { background: var(--blue); }
.band.red { background: var(--red); }

.flag-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stats-grid div {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats-grid strong {
  font-size: 1.55rem;
  color: var(--blue-deep);
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.04), rgba(255, 255, 255, 0));
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.section-heading {
  margin-bottom: 28px;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #0f172a;
}

.split p,
.info-card p,
.program-card p,
.footer p,
.footer-list {
  color: var(--muted);
  line-height: 1.8;
}

.card-grid,
.program-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.program-card,
.impact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.impact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,243,220,0.95));
}

.impact-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #0f172a;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(250, 204, 21, 0.25));
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.info-card h3,
.program-card h3,
.footer h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #0f172a;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  background: linear-gradient(135deg, #123e8a 0%, #0f172a 58%, #f59e0b 150%);
  border-radius: 30px;
  padding: 36px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  box-shadow: 0 24px 50px rgba(17, 47, 112, 0.2);
}

.cta-box .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.cta-box h2 {
  margin-top: 12px;
  color: white;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .hero-grid,
  .split,
  .card-grid,
  .program-grid,
  .impact-grid,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-shell {
    padding: 18px;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 28px 20px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
