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

/* ============================================================
   Tokens
   ============================================================ */
:root {
  --navy: #0f1b2d;
  --navy-2: #16273d;
  --blue: #2f74bd;
  --blue-strong: #255e9c;
  --blue-bright: #3a86d4;
  --sky: #eaf2fb;
  --sky-2: #f2f7fc;

  --ink: #101d30;
  --muted: #55637a;
  --faint: #8a97ab;
  --line: #e7ecf3;
  --line-2: #d6deea;

  --bg: #f7fafd;
  --card: #ffffff;

  --success: #1d9e75;

  --grad: linear-gradient(135deg, var(--blue-bright), var(--blue-strong));
  --grad-navy: linear-gradient(150deg, #16273d, #0d1826 70%);

  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 10px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(16, 29, 48, 0.05);
  --shadow-sm: 0 4px 14px rgba(16, 29, 48, 0.06);
  --shadow-md: 0 16px 40px rgba(16, 29, 48, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 29, 48, 0.16);
  --shadow-blue: 0 12px 26px rgba(47, 116, 189, 0.30);

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lead: 1.15rem;

  --gap-split: 60px;
  --container: min(1160px, calc(100vw - 48px));
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: #fff;
  background: var(--blue);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
}

address {
  font-style: normal;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Typography
   ============================================================ */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: var(--s-5);
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: var(--s-4);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: var(--s-1);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: var(--s-4);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin: 0 0 var(--s-5);
  padding: 7px 15px 7px 12px;
  color: var(--blue-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0 22px;
  color: #fff;
  background: var(--grad);
  border: 0;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-blue);
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(47, 116, 189, 0.36);
  filter: saturate(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  height: 42px;
  padding-inline: 18px;
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-xs);
}

.btn-ghost:hover {
  color: var(--blue-strong);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  filter: none;
}

.btn-light {
  color: var(--navy);
  background: #fff;
  border: 0;
  box-shadow: none;
}

.btn-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  filter: none;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 253, 0.8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(16, 29, 48, 0.06);
}

.nav-shell {
  width: var(--container);
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--s-6);
}

.brand {
  width: 150px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  border-radius: var(--r-sm);
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(47, 116, 189, 0.08);
}

.site-nav a[aria-current="page"] {
  color: var(--blue-strong);
  background: var(--sky);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.nav-actions select {
  height: 44px;
  padding: 0 32px 0 14px;
  color: var(--ink);
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2355637a' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 160ms ease;
}

.nav-actions select:hover {
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(47, 116, 189, 0.16), transparent 62%),
    linear-gradient(180deg, #eef5fc, var(--bg) 60%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 134, 212, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--gap-split);
  align-items: center;
  padding: var(--s-9) 0;
}

.hero-text {
  min-width: 0;
}

.hero-text h1 {
  max-width: 13ch;
}

.hero-title-route {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 46ch;
  margin-bottom: var(--s-6);
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.hero-photo,
.hero-card {
  min-width: 0;
}

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  position: relative;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--grad);
}

.hero-card-title {
  margin: 6px 0 var(--s-2);
  color: var(--navy);
  font-size: var(--fs-base);
  font-weight: 600;
}

.hero-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.hero-card-list li:first-child {
  border-top: 0;
}

.hero-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  color: #fff;
  background: var(--grad);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-blue);
}

.hero-card-ico svg {
  width: 20px;
  height: 20px;
}

.hero-card-foot {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-2);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   Stats — dark band
   ============================================================ */
.stats-band {
  position: relative;
  color: #fff;
  background: var(--grad-navy);
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 260px at 12% 0%, rgba(58, 134, 212, 0.22), transparent 60%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: var(--s-8) 0;
}

.stat-card {
  padding: var(--s-1) var(--s-6);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.stat-card span {
  display: block;
  margin-top: var(--s-3);
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: var(--s-9) 0;
}

.muted-section {
  background:
    radial-gradient(800px 320px at 90% 0%, rgba(47, 116, 189, 0.07), transparent 60%),
    linear-gradient(180deg, var(--sky-2), var(--bg));
  border-block: 1px solid var(--line);
}

.split-grid,
.contact-layout,
.countries-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap-split);
  align-items: center;
}

.split-copy > p {
  color: var(--muted);
  font-size: var(--fs-lead);
}

.check-list {
  margin: var(--s-6) 0 0;
  padding: 0;
  display: grid;
  gap: var(--s-2);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: var(--s-4) 0 var(--s-4) 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat,
    var(--grad);
  box-shadow: var(--shadow-blue);
}

/* Home image stack */
.image-stack {
  position: relative;
  min-height: 500px;
}

.image-main,
.image-side {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.image-main {
  height: 440px;
  box-shadow: var(--shadow-lg);
}

.image-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 210px;
  border: 6px solid var(--card);
  box-shadow: var(--shadow-md);
}

.promise-card {
  position: absolute;
  left: -26px;
  bottom: 44px;
  width: min(320px, 80%);
  padding: var(--s-5);
  color: #fff;
  background: var(--grad-navy);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--grad);
}

.promise-card img {
  width: 34px;
  margin-bottom: var(--s-3);
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.promise-card p {
  margin: 0;
  font-weight: 500;
}

/* CTA */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #fff;
  background: var(--grad-navy);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% 20%, rgba(58, 134, 212, 0.28), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-6);
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: var(--s-2);
  color: #fff;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* ============================================================
   Cards
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  counter-reset: service;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h2 {
  margin-bottom: var(--s-2);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.card-index {
  counter-increment: service;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: var(--s-5);
  color: #fff;
  border-radius: var(--r-md);
  background: var(--grad);
  box-shadow: var(--shadow-blue);
  font-size: 1.1rem;
  font-weight: 700;
}

.card-index::before {
  content: counter(service, decimal-leading-zero);
}

.countries-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3);
}

.country-card {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-xs);
  font-weight: 500;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.country-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.country-card img {
  width: 50px;
  height: 34px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: var(--shadow-xs);
}

.map-panel {
  margin: 0;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.map-panel img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}

/* ============================================================
   Panels / contact / forms
   ============================================================ */
.training-panel,
.contact-card,
.form-card,
.recruiter-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.training-panel {
  display: grid;
  align-content: center;
  gap: var(--s-3);
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(47, 116, 189, 0.12), transparent 65%),
    var(--sky);
  border-color: transparent;
  box-shadow: none;
}

.training-panel.compact {
  margin-top: var(--s-5);
}

.training-panel p,
.contact-card address {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: var(--s-4);
}

.contact-card a,
.footer-contact a,
.member-links a,
.text-link {
  color: var(--blue-strong);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.text-link:hover {
  color: var(--blue);
}

.form-card {
  display: grid;
  gap: var(--s-4);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3);
}

.form-card label {
  display: grid;
  gap: var(--s-2);
  color: var(--ink);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 116, 189, 0.14);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-weight: 500;
}

/* ============================================================
   Team
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-7);
}

.filter-pill {
  height: 42px;
  padding: 0 18px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.filter-pill:hover {
  color: var(--blue-strong);
  border-color: var(--blue);
}

.filter-pill.active {
  color: #fff;
  border-color: transparent;
  background: var(--grad);
  box-shadow: var(--shadow-blue);
}

.department-block + .department-block {
  margin-top: var(--s-8);
}

.department-heading {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid var(--line);
}

.department-heading .section-kicker {
  margin: 0;
}

.department-heading h2 {
  margin: 0;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-4);
}

.member-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.member-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.member-card img {
  width: 84px;
  height: 104px;
  object-fit: cover;
  background: var(--sky);
  border-radius: var(--r-md);
}

.member-card p {
  margin-bottom: var(--s-3);
  color: var(--muted);
  font-weight: 500;
}

.member-links {
  display: grid;
  gap: var(--s-1);
  font-size: var(--fs-sm);
}

.recruiter-card {
  display: grid;
  gap: var(--s-5);
}

.recruiter-profile {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: var(--s-5);
  align-items: start;
}

.recruiter-profile img {
  width: 96px;
  height: 116px;
  object-fit: cover;
  background: var(--sky);
  border-radius: var(--r-md);
}

.recruiter-profile p {
  margin-bottom: var(--s-3);
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: var(--s-8) 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--grad-navy);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 8% 0%, rgba(58, 134, 212, 0.18), transparent 60%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}

.footer-logo {
  width: 158px;
  margin-bottom: var(--s-4);
  padding: 10px 12px;
  background: #fff;
  border-radius: var(--r-sm);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: var(--s-3);
  align-content: start;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.social-link img {
  width: 22px;
  height: 22px;
}

/* ============================================================
   Back to top + reveal
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--grad);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-1);
    padding: var(--s-3);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    height: 46px;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--s-7);
    padding: var(--s-8) 0;
  }

  .hero-text {
    max-width: 640px;
  }

  .hero-text h1 {
    max-width: none;
  }

  .hero-photo img {
    height: 380px;
  }

  .service-grid,
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .contact-layout,
  .countries-layout {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-6) 0;
  }

  .stat-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .image-stack {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1160px);
    --gap-split: 32px;
  }

  .nav-shell {
    height: 66px;
    grid-template-columns: auto 1fr auto;
    gap: var(--s-3);
  }

  .brand {
    width: 122px;
  }

  .nav-actions {
    gap: var(--s-2);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-content {
    padding: var(--s-7) 0;
    gap: var(--s-6);
  }

  .hero-photo img {
    height: 240px;
  }

  .hero-card {
    padding: var(--s-5);
  }

  .stats-grid,
  .service-grid,
  .countries-grid,
  .members-grid,
  .footer-grid,
  .form-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: var(--s-4) 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-card:first-child {
    border-top: 0;
  }

  .section {
    padding: var(--s-8) 0;
  }

  .cta-inner {
    text-align: left;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main {
    height: 280px;
  }

  .image-side,
  .promise-card {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    margin-top: var(--s-4);
    border: 0;
  }

  .image-side {
    height: 220px;
  }

  .department-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }

  .member-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .member-card img {
    width: 76px;
    height: 94px;
  }
}
