/* ===== DESIGN TOKENS ===== */
:root {
  --teal: #1DA8C0;
  --teal-dark: #1590A6;
  --teal-light: #E8F7FA;
  --green: #52B840;
  --green-dark: #429932;
  --green-light: #EBF7E8;
  --orange: #E8542B;
  --orange-dark: #C94420;
  --orange-light: #FDF0EC;
  --navy: #1B2B5C;
  --navy-light: #2D3F7A;

  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #D8DCE6;
  --gray-400: #8B92A9;
  --gray-600: #565E78;
  --gray-800: #2A3147;
  --gray-900: #161C2D;

  --white: #FFFFFF;

  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(27,43,92,0.08), 0 1px 2px rgba(27,43,92,0.06);
  --shadow-md: 0 4px 16px rgba(27,43,92,0.10), 0 2px 6px rgba(27,43,92,0.06);
  --shadow-lg: 0 8px 32px rgba(27,43,92,0.12), 0 4px 12px rgba(27,43,92,0.08);
  --shadow-xl: 0 20px 60px rgba(27,43,92,0.16);

  --transition: 200ms ease;
  --transition-slow: 400ms ease;

  --max-w: 1200px;
  --nav-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 640px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 660px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,168,192,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Tags */
.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Color helpers */
.teal-bg { background: var(--teal); color: var(--white); }
.green-bg { background: var(--green); color: var(--white); }
.orange-bg { background: var(--orange); color: var(--white); }

/* ===== NAVIGATION ===== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,43,92,0.08);
}

.nav-header.scrolled .nav-link {
  color: var(--navy);
}

.nav-header.scrolled .nav-cta {
  background: var(--teal);
  color: var(--white);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  transition: filter var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: rgba(255,255,255,0.15);
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.3);
  margin-left: 8px;
}

.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--white) !important;
  color: var(--teal) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-header.scrolled .nav-toggle span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #2D3F7A 40%, #1B4A6B 70%, #0E3A52 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -150px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--green);
  bottom: 100px;
  left: -80px;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  top: 40%;
  right: 15%;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}

.badge-eu { font-size: 16px; }

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-title-accent {
  color: var(--teal);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.country-flag {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-card-teal { background: var(--teal-light); }
.about-card-green { background: var(--green-light); }
.about-card-orange { background: var(--orange-light); }

.about-card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.about-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.about-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Target Groups */
.target-groups { border-top: 1px solid var(--gray-200); padding-top: 56px; }

.target-groups-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

.target-groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.target-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.target-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.target-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-card-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.target-age {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px !important;
}

.target-card-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.activity-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.activity-card-featured .activity-phase { color: rgba(255,255,255,0.6); }
.activity-card-featured h3 { color: var(--white); }
.activity-card-featured p { color: rgba(255,255,255,0.78); }
.activity-card-featured strong { color: var(--white); }
.activity-card-featured .activity-list li { color: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.15); }
.activity-card-featured .activity-list li::before { background: var(--teal) !important; }
.activity-card-featured .activity-stat-num { color: var(--teal); }
.activity-card-featured .activity-stat-label { color: rgba(255,255,255,0.6); }

.activity-phase {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.activity-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.teal-icon { background: var(--teal-light); color: var(--teal); }
.green-icon { background: var(--green-light); color: var(--green); }
.orange-icon { background: var(--orange-light); color: var(--orange); }

.activity-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.activity-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.activity-list {
  margin-bottom: 28px;
}

.activity-list li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.activity-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.activity-card-featured .activity-stat { border-color: rgba(255,255,255,0.15); }

.activity-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.activity-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
}

/* Schedule */
.schedule-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.schedule-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.schedule-day { border-radius: var(--radius-md); overflow: hidden; }

.day-header {
  padding: 14px 12px;
  text-align: center;
}

.teal-header { background: var(--teal); color: var(--white); }
.green-header { background: var(--green); color: var(--white); }
.orange-header { background: var(--orange); color: var(--white); }

.day-date {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
}

.day-name {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.3;
}

.day-sessions {
  padding: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.day-sessions li {
  font-size: 12px;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.4;
}

.day-sessions li:last-child { border-bottom: none; }

/* ===== FINDINGS ===== */
.findings-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.finding-highlight-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}

.teal-card { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.orange-card { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.green-card { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.navy-card { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }

.fhc-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.fhc-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 10px;
  line-height: 1.4;
}

.fhc-note {
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.findings-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.findings-col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.findings-col-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.teal-dot { background: var(--teal); }
.green-dot { background: var(--green); }

.finding-item { margin-bottom: 16px; }

.finding-bar-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700, var(--gray-800));
  margin-bottom: 6px;
}

.finding-bar-wrap {
  height: 28px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}

.finding-bar {
  height: 100%;
  width: var(--w);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  transition: width 1s ease;
}

.teal-bar { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.green-bar { background: linear-gradient(90deg, var(--green), var(--green-dark)); }

.finding-bar span {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.finding-quote {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.finding-quote blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.6;
}

.finding-quote cite {
  font-size: 12px;
  color: var(--gray-400);
  font-style: normal;
}

.finding-insight {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--green-light);
  border-radius: var(--radius-md);
}

.insight-icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }

.finding-insight p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Key Messages */
.findings-key-messages {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
}

.findings-key-messages h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}

.key-messages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.key-message {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.km-icon {
  font-size: 28px;
  line-height: 1;
}

.key-message strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.key-message p {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.partner-card-lead {
  border-color: var(--teal);
  border-top: 4px solid var(--teal);
}

.partner-flag {
  font-size: 40px;
  margin-bottom: 12px;
}

.partner-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.partner-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.partner-city {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.partner-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.partner-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.expertise-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 3px 10px;
  border-radius: 100px;
}

.partnership-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: var(--gray-600);
}

.pn-icon {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.partnership-note p { font-size: 15px; line-height: 1.7; }
.partnership-note strong { color: var(--navy); }

/* ===== OUTPUTS ===== */
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.output-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.output-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.output-card-featured {
  border-color: var(--orange);
  border-top: 4px solid var(--orange);
  grid-column: span 1;
}

.output-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.output-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.output-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.output-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.output-langs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.lang-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.output-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.output-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark, var(--green));
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 100px;
}

.output-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}

.output-link:hover, .output-link:focus-visible {
  color: var(--teal-dark);
  gap: 8px;
}

.license-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--green-light);
  border: 1px solid rgba(82,184,64,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.license-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.license-note strong { color: var(--navy); }

/* ===== YCDAY ===== */
.yc-day-section {
  background: linear-gradient(135deg, #EBF7FA 0%, #F0F7EB 100%);
}

.ycday-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.ycday-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ycday-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ycday-card-center {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.ycday-card-center h3 { color: var(--white); font-size: 17px; }

.ycday-flag {
  font-size: 36px;
  margin-bottom: 12px;
}

.ycday-icon {
  color: var(--teal);
  margin-bottom: 16px;
}

.ycday-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.ycday-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.ycday-card-center p { color: rgba(255,255,255,0.7); }

.ycday-list {
  margin-top: 8px;
}

.ycday-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ycday-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.ycday-list li:last-child { border-bottom: none; }

.ycday-latvia {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ycday-latvia:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ycday-latvia .ycday-flag { margin-bottom: 0; }

.ycday-latvia h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.ycday-latvia p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 680px;
}

/* ===== CONTACT ===== */
.section-contact {
  background: linear-gradient(135deg, var(--navy) 0%, #2D3F7A 100%);
}

.light-label { color: rgba(255,255,255,0.7) !important; background: rgba(255,255,255,0.12) !important; }
.light-title { color: var(--white) !important; }
.light-subtitle { color: rgba(255,255,255,0.72) !important; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: background var(--transition), transform var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.contact-icon {
  color: var(--teal);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-org {
  font-size: 14px;
  color: rgba(255,255,255,0.85) !important;
}

.contact-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
  font-style: italic;
}

.contact-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition);
  margin-top: 4px;
}

.contact-link:hover, .contact-link:focus-visible {
  color: #5DCDE0;
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1.4fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { margin-bottom: 12px; max-height: 50px; width: auto; }
.footer-tagline { font-size: 14px; line-height: 1.65; margin-bottom: 16px; max-width: 260px; }

.footer-countries { display: flex; gap: 12px; font-size: 20px; }

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li, .footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover, .footer-links a:focus-visible {
  color: var(--white);
}

.eu-logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.eu-stars {
  font-size: 11px;
  color: #FFD700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
}

.eu-logo-placeholder span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.eu-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-bottom { padding: 20px 0; }

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 800px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-copyright a {
  color: var(--teal);
  text-decoration: underline;
}

/* ===== FLAG ICON SIZING ===== */
.fi {
  /* flag-icons default is 1.33em wide; override per context below */
  border-radius: 2px;
  flex-shrink: 0;
}

/* Language switcher flags */
.lang-btn .fi {
  width: 18px;
  height: 13px;
  background-size: cover;
}

/* Hero countries */
.country-flag .fi {
  width: 20px;
  height: 15px;
  background-size: cover;
  vertical-align: middle;
}

/* Hero EU badge */
.badge-eu .fi {
  width: 20px;
  height: 15px;
  background-size: cover;
  vertical-align: middle;
}

/* Partner cards & YouthConnect Day cards (large flags) */
.fi-flag-lg {
  display: block;
  width: 48px;
  height: 36px;
  background-size: cover;
}

/* Footer country flags */
.footer-countries .fi {
  width: 24px;
  height: 18px;
  background-size: cover;
}

/* Footer partner logo fallback flags */
.plf-flag.fi {
  width: 20px;
  height: 15px;
  background-size: cover;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.lang-btn:hover, .lang-btn:focus-visible {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.lang-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.nav-header.scrolled .lang-btn {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-600);
}

.nav-header.scrolled .lang-btn:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.nav-header.scrolled .lang-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ===== SPECIFICITY FIX: dark-background text always white ===== */
.activity-card-featured h3 { color: var(--white) !important; }
.activity-card-featured p  { color: rgba(255,255,255,0.78) !important; }
.ycday-card-center h3      { color: var(--white) !important; font-size: 17px; }
.ycday-card-center p       { color: rgba(255,255,255,0.70) !important; }
.findings-key-messages h3  { color: var(--white) !important; }
.contact-card h3           { color: var(--white) !important; }

/* ===== OUTPUTS GRID (3 cards centred) ===== */
.outputs-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* ===== FOOTER PARTNERS ===== */
.footer-partners h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-partner-logos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-partner-logo-link {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.footer-partner-logo-link:hover {
  opacity: 0.85;
}

.partner-logo-img {
  max-height: 56px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity var(--transition);
}

.footer-partner-logo-link:hover .partner-logo-img {
  opacity: 1;
}

.partner-logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
}

.plf-flag { font-size: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .activity-card:last-child { grid-column: span 2; }
  .findings-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .key-messages-grid { grid-template-columns: repeat(2, 1fr); }
  .outputs-grid,
  .outputs-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-day:nth-child(4),
  .schedule-day:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
  }

  .nav-menu.open { display: flex; }
  .nav-menu .nav-link { color: var(--navy); width: 100%; padding: 12px 16px; }
  .nav-menu .nav-cta { background: var(--teal); color: var(--white) !important; }
  .nav-toggle { display: flex; }

  .hero-stats-inner { gap: 0; }
  .hero-stat { padding: 8px 12px; }
  .hero-stat-divider { display: none; }

  .target-groups-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card:last-child { grid-column: span 1; }
  .findings-section-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .outputs-grid,
  .outputs-grid-3 { grid-template-columns: 1fr; }
  .footer-partner-logos { flex-direction: row; flex-wrap: wrap; }
  .lang-switcher { gap: 3px; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 5px 7px; }
  .contact-grid { grid-template-columns: 1fr; }
  .ycday-grid { grid-template-columns: 1fr; }
  .key-messages-grid { grid-template-columns: 1fr 1fr; }
  .findings-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .schedule-section { padding: 24px 20px; }
  .ycday-latvia { flex-direction: column; align-items: flex-start; }
  .findings-key-messages { padding: 32px 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 26px; }
  .key-messages-grid { grid-template-columns: 1fr; }
  .findings-intro-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .hero-stat-divider { display: none; }
  .hero-stats-inner { justify-content: space-around; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
