/* ═══════════════════════════════════════════════
   Ai-LEARN Project Website — Stylesheet
   ═══════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────── */
:root {
  --navy:        #0f2b5b;
  --navy-deep:   #091c3e;
  --blue:        #1565c0;
  --sky:         #0288d1;
  --teal:        #00838f;
  --teal-deep:   #006064;
  --green:       #2e7d32;
  --amber:       #f59e0b;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-head:   'Space Grotesk', 'Inter', system-ui, sans-serif;

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

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);

  --transition:  0.25s ease;
  --container:   1160px;
}

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Layout helpers ───────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-light  { background: var(--gray-50); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--navy-deep); }
.section-teal   { background: var(--teal-deep); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-light { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(2, 136, 209, .12);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag-light {
  color: #7dd3fc;
  background: rgba(125, 211, 252, .15);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}
.text-white  { color: var(--white) !important; }
.text-muted-light { color: rgba(255,255,255,.65) !important; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(2,136,209,.35);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,136,209,.45);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(9, 28, 62, .96);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; color: #7dd3fc; }
.logo-dash { color: #7dd3fc; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,.80);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.active { color: #7dd3fc; }
.nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--blue) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1a3a6e 50%, var(--teal-deep) 100%);
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-wave-1, .hero-wave-2 {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.hero-wave-1 {
  width: 900px; height: 900px;
  background: var(--sky);
  top: -300px; right: -200px;
  animation: float 18s ease-in-out infinite;
}
.hero-wave-2 {
  width: 600px; height: 600px;
  background: var(--teal);
  bottom: -200px; left: -100px;
  animation: float 14s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #bfdbfe;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.eu-star { color: #fbbf24; }

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-title-main {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 60%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,.70);
  letter-spacing: .02em;
}

.hero-tagline {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.75);
  max-width: 640px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #7dd3fc;
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.about-text .lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-text p { margin-bottom: 16px; color: var(--gray-600); }

.about-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.topic-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: .8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.fact-card:hover { box-shadow: var(--shadow-md); }
.fact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.fact-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sky);
  margin-bottom: 3px;
}
.fact-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   OBJECTIVES
═══════════════════════════════════════════════ */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.objective-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.objective-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}
.objective-card:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
}
.objective-card:hover::before { opacity: 1; }

.objective-number {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(125, 211, 252, .6);
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.objective-icon { font-size: 2rem; margin-bottom: 16px; }
.objective-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}
.objective-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.60);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.case-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}
.case-region {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 10px;
}
.case-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.case-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 20px;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-tags span {
  background: rgba(94, 234, 212, .15);
  color: #5eead4;
  font-size: .75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, .25);
}

/* ══════════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════════ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}
.partner-lead {
  border-top: 4px solid var(--sky);
}
.partner-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--sky);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.partner-logo-box {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.ihe { background: linear-gradient(135deg, #0f2b5b, #0288d1); }
.upv { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.tuc { background: linear-gradient(135deg, #1a237e, #3949ab); }

.partner-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.partner-meta { display: flex; gap: 10px; }
.partner-country {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 500;
}
.partner-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}
.partner-role {
  font-size: .8rem;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  line-height: 1.5;
}
.partner-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  transition: color var(--transition);
}
.partner-link:hover { color: var(--blue); }

/* ══════════════════════════════════════════════
   WORK PACKAGES
═══════════════════════════════════════════════ */
.wp-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wp-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.wp-item:hover { box-shadow: var(--shadow-md); }
.wp-item.open { box-shadow: var(--shadow-md); }

.wp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.wp-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wp-number {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.wp-1 { background: var(--navy); }
.wp-2 { background: var(--blue); }
.wp-3 { background: var(--teal); }
.wp-4 { background: #7c3aed; }
.wp-5 { background: #b45309; }

.wp-title {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
}
.wp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.wp-lead {
  font-size: .8rem;
  color: var(--gray-500);
  white-space: nowrap;
}
.wp-chevron {
  font-size: 1rem;
  color: var(--gray-400);
  transition: transform var(--transition);
}
.wp-item.open .wp-chevron { transform: rotate(180deg); }

.wp-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--gray-100);
}
.wp-item.open .wp-body { display: block; }
.wp-body p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding-top: 16px;
  margin-bottom: 14px;
}
.wp-outputs {
  font-size: .85rem;
  color: var(--gray-500);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border-left: 3px solid var(--sky);
}

/* ══════════════════════════════════════════════
   TIMELINE / DELIVERABLES
═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky), var(--teal), var(--gray-200));
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  padding-left: 48px;
  margin: 40px 0 24px;
  position: relative;
}
.timeline-year::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 2px;
  background: var(--sky);
  transform: translateY(-50%);
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 20px;
  position: relative;
}
.timeline-dot {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-300);
  z-index: 1;
  margin-top: 16px;
  transition: all var(--transition);
}
.timeline-item[data-status="done"] .timeline-dot {
  background: var(--green);
  border-color: var(--green);
}
.timeline-item[data-status="active"] .timeline-dot {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(2,136,209,.2);
}
.timeline-item.milestone .timeline-dot {
  border-color: var(--amber);
  background: var(--amber);
}

.timeline-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition);
}
.timeline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.timeline-item.milestone .timeline-card {
  border-left: 3px solid var(--amber);
  background: #fffbeb;
}
.timeline-date {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sky);
  margin-bottom: 4px;
}
.timeline-title {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 10px;
}
.timeline-wp {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.wp-tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
}
.wp-tag.wp-1 { background: var(--navy); }
.wp-tag.wp-2 { background: var(--blue); }
.wp-tag.wp-3 { background: var(--teal); }
.wp-tag.wp-4 { background: #7c3aed; }
.wp-tag.wp-5 { background: #b45309; }

/* ══════════════════════════════════════════════
   TOOLS
═══════════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tool-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tool-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.tool-active { border-color: rgba(125,211,252,.4); }

.tool-status {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}
.tool-status-active { background: rgba(52,211,153,.2); color: #6ee7b7; }
.tool-status-soon   { background: rgba(251,191,36,.15); color: #fcd34d; }

.tool-icon { font-size: 2.5rem; }
.tool-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.tool-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  flex: 1;
}
.tool-wp { display: flex; gap: 6px; flex-wrap: wrap; }
.tool-link {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  color: #7dd3fc;
  margin-top: 4px;
  transition: color var(--transition);
}
.tool-link:hover { color: var(--white); }
.tool-link-disabled {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.3);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════════ */
.results-placeholder { max-width: 720px; margin: 0 auto; }
.results-status {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.results-icon { font-size: 3rem; margin-bottom: 16px; }
.results-status h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.results-status p { color: var(--gray-500); font-size: .95rem; }

.expected-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.result-pending { opacity: .75; }
.result-check {
  font-size: 1.1rem;
  color: var(--gray-300);
  flex-shrink: 0;
  margin-top: 1px;
}
.result-item strong {
  display: block;
  font-size: .9rem;
  color: var(--gray-700);
  margin-bottom: 2px;
}
.result-item span { font-size: .8rem; color: var(--gray-400); }

.results-cta {
  text-align: center;
  font-size: .875rem;
  color: var(--gray-400);
}
.results-cta a { color: var(--sky); font-weight: 600; }

/* ══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.contact-inst {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sky);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}
.contact-card a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  transition: color var(--transition);
}
.contact-card a:hover { color: var(--blue); }

/* ══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p { font-size: .85rem; line-height: 1.65; }

.footer-links h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.eu-flag {
  background: #003399;
  color: #ffcc00;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: .65rem;
  letter-spacing: .2em;
  margin-bottom: 12px;
  font-weight: 700;
}
.eu-disclaimer {
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(255,255,255,.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .objectives-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-facts { flex-direction: row; flex-wrap: wrap; }
  .fact-card { flex: 1; min-width: 200px; }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(9, 28, 62, .98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; width: 100%; }
  .nav-toggle { display: flex; }

  .hero-stats {
    gap: 8px;
    padding: 16px 20px;
  }
  .stat { padding: 0 16px; }
  .stat-divider { height: 30px; }

  .partners-grid,
  .cases-grid,
  .tools-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .timeline::before { left: 12px; }
  .timeline-dot { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .objectives-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
  .hero-stats { gap: 16px; }
  .stat { padding: 0 12px; }
}
