/* =====================================================
   Internship Abroad — EU Institutional Site
   styles.css — Design System
   Version 1.0 — March 2026
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #4a4eb5;
  --primary-dark: #3a3e99;
  --primary-light: #e8e9f8;
  --accent: #0a7d56;
  --accent-light: #e6f4ef;
  --warm-bg: #faf8f5;
  --warm-bg-alt: #f5f3ef;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-muted: #7a7a9a;
  --border: #e2e0ea;
  --border-light: #eeecf5;
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.07), 0 1px 2px rgba(26,26,46,0.05);
  --shadow-md: 0 4px 12px rgba(26,26,46,0.08), 0 2px 4px rgba(26,26,46,0.05);
  --shadow-lg: 0 12px 32px rgba(26,26,46,0.10), 0 4px 8px rgba(26,26,46,0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --container-wide: 1400px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* === UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.header-logo:hover { text-decoration: none; }

.logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-text-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--primary); background: var(--primary-light); }
.header-nav a.active { color: var(--primary); background: var(--primary-light); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  line-height: 1.4;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-dark); color: white; }

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary-light); }

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: #096644; color: white; }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { background: var(--border-light); color: var(--text); }

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .mobile-nav-cta { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* === PAGE OFFSET === */
.page-content { padding-top: 72px; }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--text);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(74,78,181,0.6) 60%, rgba(10,125,86,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: white;
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stat-bar {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* === SECTION BASE === */
section { padding: 5rem 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

/* === STAT CARDS === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.stat-card:hover { box-shadow: var(--shadow-md); }

.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.stat-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* === RESEARCH STAT BLOCKS === */
.research-stat {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-left: 3px solid var(--primary);
  background: var(--warm-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1rem;
}
.research-stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.research-stat-text h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text); }
.research-stat-text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.research-stat-text cite { font-size: 0.72rem; color: var(--text-muted); font-style: italic; display: block; margin-top: 0.4rem; }

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon--accent { background: var(--accent-light); }
.feature-icon--accent svg { color: var(--accent); }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* === AUDIENCE ROUTING CARDS === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; }

.audience-card--universities { background: linear-gradient(135deg, #4a4eb5 0%, #3a3e99 100%); }
.audience-card--governments { background: linear-gradient(135deg, #0a7d56 0%, #086644 100%); }
.audience-card--partners { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }

.audience-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.audience-card-icon svg { width: 28px; height: 28px; color: white; }

.audience-card h3 { color: white; font-size: 1.5rem; margin-bottom: 0.5rem; }
.audience-card p { color: rgba(255,255,255,0.8); font-size: 0.925rem; margin-bottom: 1.5rem; line-height: 1.6; }
.audience-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.18);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

/* === IMAGE + TEXT SPLIT === */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
@media (max-width: 900px) { .split-section { grid-template-columns: 1fr; gap: 2rem; } .split-section--reverse { direction: ltr; } }

.split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* === NETWORK MAP / EUROPE MAP === */
.network-container { position: relative; }

.europe-map {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.market-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.market-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); text-decoration: none; color: var(--text); }

.market-card-flag { font-size: 1.8rem; flex-shrink: 0; }
.market-card-info h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.market-card-info p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.3; }

/* === PROGRAMME BADGES === */
.programme-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.programme-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.programme-badge--eu { background: #fef3c7; border-color: #fbbf24; color: #92400e; }
.programme-badge--uk { background: #dbeafe; border-color: #93c5fd; color: #1e40af; }
.programme-badge--ch { background: #fce7f3; border-color: #f9a8d4; color: #831843; }
.programme-badge--id { background: #dcfce7; border-color: #86efac; color: #14532d; }

/* === QUOTE / PULLQUOTE === */
.pullquote {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pullquote p { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.25rem; color: var(--text); line-height: 1.5; font-style: italic; margin-bottom: 0; }
.pullquote cite { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; display: block; font-style: normal; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--warm-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.9rem;
  color: white;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-dot--accent { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.timeline-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.9rem; }

/* === PROCESS STEPS === */
.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.step-connector { width: 2px; flex: 1; background: var(--border); min-height: 20px; }

.step-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.95rem; }

/* === COMPARISON TABLE === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--primary);
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}
.comparison-table td {
  padding: 0.9rem 1.25rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--warm-bg); }
.comparison-table .col-ia { color: var(--primary); font-weight: 600; }
.comparison-table .col-uni { color: var(--accent); font-weight: 500; }
.comparison-table td:first-child { font-weight: 600; color: var(--text); }

/* === FORM === */
.form-section {
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid .full-width { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }

/* === UNIVERSITY NETWORK LIST === */
.university-country-section { margin-bottom: 2.5rem; }
.university-country-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.university-country-header h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text);
}
.university-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.university-tag {
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* === DESTINATIONS SECTION === */
.destinations-region { margin-bottom: 3rem; }
.destinations-region h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.destination-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.destination-pill span:first-child { font-size: 1.1rem; }

/* === STATS BAR (hero-style) === */
.stats-banner {
  background: var(--primary);
  padding: 2.5rem 0;
}
.stats-banner-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 768px) { .stats-banner-inner { grid-template-columns: repeat(2, 1fr); } }

.stats-banner-item h3 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 0.3rem;
}
.stats-banner-item p { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* === ACCORDION / FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  gap: 1rem;
}
.faq-question:hover { background: var(--warm-bg); }
.faq-question svg { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: 0.9rem; }
.faq-item.open .faq-answer { display: block; }

/* === PAGE HERO (subpages) === */
.page-hero {
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: white; max-width: 700px; margin-bottom: 1rem; }
.page-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
}
.page-hero-stat-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.page-hero-stat-item { display: flex; flex-direction: column; gap: 0.15rem; }
.page-hero-stat-item strong { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.8rem; color: white; }
.page-hero-stat-item span { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* === INFO CARDS (governments page, etc.) === */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.info-card-icon svg { width: 22px; height: 22px; color: var(--primary); }
.info-card h4 { font-size: 1rem; margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.info-card p { font-size: 0.875rem; line-height: 1.6; }

/* === PROGRAMME CARDS === */
.programme-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.programme-card-flag { font-size: 2rem; }
.programme-card h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
.programme-card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.programme-meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
}
.programme-card p { font-size: 0.875rem; flex: 1; }
.programme-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

/* === PARTNER TYPE CARDS === */
.partner-type-card {
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.partner-type-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.partner-type-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-section .btn-secondary { border-color: rgba(255,255,255,0.4); color: white; background: transparent; }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.12); }
.cta-section .btn-outline-light { border-color: rgba(255,255,255,0.4); }

/* === FOOTER === */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.65; max-width: 300px; }
.footer-brand-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-brand-powered a {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-decoration: none;
}
.footer-brand-powered a:hover { color: white; text-decoration: underline; }

.footer-col h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col ul a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border); }

/* === BADGE === */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.badge--new { background: #dcfce7; color: #14532d; }
.badge--live { background: #fef3c7; color: #92400e; }
.badge--eu { background: var(--primary-light); color: var(--primary); }

/* === SCROLL ANIMATION === */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 3.5rem 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stat-bar { gap: 1.5rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-section { padding: 1.75rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .stats-banner-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stat-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.65rem; }
}

/* === NETWORK DOT MAP === */
.network-dotmap {
  position: relative;
  background: var(--warm-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dotmap-container {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  background:
    radial-gradient(circle at 45% 45%, rgba(74,78,181,0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 55%, rgba(10,125,86,0.04) 0%, transparent 40%);
}
.dotmap-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.dotmap-node:hover { text-decoration: none; z-index: 10; }
.dotmap-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary), 0 2px 8px rgba(74,78,181,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dotmap-global .dotmap-dot {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 2px 8px rgba(10,125,86,0.25);
}
.dotmap-node:hover .dotmap-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 3px var(--primary), 0 4px 16px rgba(74,78,181,0.35);
}
.dotmap-global:hover .dotmap-dot {
  box-shadow: 0 0 0 3px var(--accent), 0 4px 16px rgba(10,125,86,0.35);
}
.dotmap-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.92);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
.dotmap-region {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 768px) {
  .dotmap-container { padding-bottom: 70%; }
  .dotmap-dot { width: 10px; height: 10px; }
  .dotmap-label { font-size: 0.65rem; }
}
@media (max-width: 480px) {
  .dotmap-container { padding-bottom: 90%; }
  .dotmap-label { display: none; }
  .dotmap-node:hover .dotmap-label { display: block; opacity: 1; transform: translateY(0); }
}

/* Blog index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); text-decoration: none; }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--warm-bg); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.875rem; line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }
