/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --yellow: #ffd936;
  --green: #536942;
  --sage: #fdf8e4;
  --white: #ffffff;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;

  --font-heading: 'Forum', serif;
  --font-body: 'DM Sans', sans-serif;

  --max-width: 1200px;
  --section-padding: 5rem 1.5rem;
  --nav-height: 72px;

  --transition: 0.25s ease;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-padding); }
.section--sage { background: var(--sage); }
.section--green { background: var(--dark); }
.section--dark { background: var(--dark); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section--green .section-label,
.section--dark .section-label { color: var(--yellow); }
.section--green h2, .section--green h3, .section--green p { color: var(--white); }
.section--green .section-intro { color: rgba(255,255,255,0.75); }

.section-title { margin-bottom: 1.25rem; }
.section-intro {
  max-width: 680px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: transparent;
  color: var(--yellow);
}
.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn--green {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--green:hover {
  background: transparent;
  color: var(--dark);
}
.btn:active { transform: scale(0.97); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-link:hover { color: var(--green); }

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo-mark {
  height: 40px;
  width: auto;
  display: block;
}
.logo-full {
  height: 34px;
  width: auto;
  display: none;
}
/* Always show full logo; on dark transparent hero, give it a white pill so dark text stays legible */
.logo-mark { display: none; }
.logo-full { display: block; }

.site-header:not(.scrolled):not(.light) .logo-full {
  background: rgba(255, 255, 255, 0.93);
  padding: 5px 12px;
  border-radius: 7px;
  backdrop-filter: blur(4px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--yellow); }
.nav-link.active { color: var(--yellow); font-weight: 700; }

/* page with light hero */
.site-header.light .nav-link { color: var(--text); }
.site-header.light .nav-link:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.site-header.scrolled .hamburger span,
.site-header.light .hamburger span { background: var(--dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.52);
  z-index: 1;
}
.hero::after { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 1.5rem;
  color: var(--white);
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== HERO EVENT TAB ===== */
.hero-event-tab {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(15, 20, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 2;
}
.hero-event-tab:hover {
  background: rgba(15, 20, 15, 0.75);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

/* Live dot */
.hero-event-tab .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  position: relative;
}
.hero-event-tab .live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.4);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(0.7); opacity: 0.8; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(0.7); opacity: 0; }
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { opacity: 0.5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===== PAGE HERO (non-homepage) ===== */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 1.5rem 4rem;
  background: var(--sage);
  text-align: center;
}
.page-hero h1 { color: var(--dark); margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== NEWS TICKER ===== */
.news-ticker {
  display: flex;
  align-items: center;
  background: var(--dark);
  height: 2.6rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.news-ticker-label {
  flex-shrink: 0;
  padding: 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
  border-right: 1px solid rgba(255,255,255,0.12);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.news-ticker-viewport {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.news-ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.news-ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  padding: 0 2.5rem;
}
.ticker-sep {
  color: var(--yellow);
  font-size: 1rem;
  opacity: 0.5;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===== MISSION SECTION ===== */
.mission {
  padding: var(--section-padding);
  text-align: center;
}
.mission h2 { max-width: 720px; margin: 0 auto 1.5rem; }
.mission p { max-width: 680px; margin: 0 auto 1rem; color: var(--text-light); font-size: 1.05rem; }

/* ===== STATS ===== */
.stats {
  padding: 5rem 1.5rem;
  background: var(--dark);
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
}

/* ===== WHAT WE DO ===== */
.what-we-do { padding: var(--section-padding); background: var(--sage); }
.what-we-do .container { max-width: var(--max-width); margin: 0 auto; }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.what-visual {
  border-radius: 16px;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
.what-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}
.what-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.what-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--yellow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.what-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.what-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--dark); }
.what-card p { font-size: 0.92rem; color: var(--text-light); }

/* ===== CTA BAND ===== */
/* ===== LINKEDIN CTA ===== */
.linkedin-cta {
  background: #0a66c2;
  padding: 1.5rem 1.5rem;
}
.linkedin-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.linkedin-cta-icon {
  color: #fff;
  flex-shrink: 0;
  display: flex;
}
.linkedin-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #fff;
}
.linkedin-cta-text strong {
  font-size: 1rem;
  font-weight: 700;
}
.linkedin-cta-text span {
  font-size: 0.9rem;
  opacity: 0.85;
}
.linkedin-cta-btn {
  flex-shrink: 0;
  background: #fff;
  color: #0a66c2;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.linkedin-cta-btn:hover { opacity: 0.88; }
@media (max-width: 600px) {
  .linkedin-cta-inner { flex-wrap: wrap; }
  .linkedin-cta-btn { width: 100%; text-align: center; }
}

.cta-band {
  padding: 5rem 1.5rem;
  background: var(--yellow);
  text-align: center;
}
.cta-band h2 { color: var(--dark); margin-bottom: 1rem; }
.cta-band p { color: rgba(0,0,0,0.6); max-width: 560px; margin: 0 auto 2rem; }
.cta-band .section-label { color: var(--dark); opacity: 0.55; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn--dark:hover {
  background: transparent;
  color: var(--dark);
}
.btn--dark-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn--dark-outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* ===== NETWORK PAGE ===== */
.network-benefits {
  padding: var(--section-padding);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid #e8ece5;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); }

.network-how {
  padding: var(--section-padding);
  background: var(--sage);
}
.steps-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.step-body h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-body p { font-size: 0.92rem; color: var(--text-light); }

.network-cta {
  padding: var(--section-padding);
  text-align: center;
  background: var(--yellow);
}
.network-cta h2 { color: var(--dark); margin-bottom: 1rem; }
.network-cta p { color: rgba(0,0,0,0.6); max-width: 520px; margin: 0 auto 2rem; }
.network-cta .section-label { color: rgba(0,0,0,0.45); }

/* ===== JOBS PAGE ===== */
.jobs-list { padding: var(--section-padding); }
.job-card {
  background: var(--white);
  border: 1px solid #e2e8dd;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.job-card:hover { box-shadow: var(--shadow); }
.job-card-header {
  background: var(--sage);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid #e2e8dd;
}
.job-card-header h3 {
  font-size: 1.2rem;
  margin: 0;
}
.job-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.job-card-body { padding: 1.75rem 2rem; }
.job-section { margin-bottom: 1.5rem; }
.job-section h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.job-section ul {
  padding-left: 1.25rem;
}
.job-section ul li {
  list-style: disc;
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.job-section ul li:last-child { margin-bottom: 0; }
.job-apply {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8dd;
}
.job-apply p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0.75rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: var(--section-padding); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-light); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-detail-body strong { display: block; font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-detail-body a { color: var(--green); font-weight: 500; }
.contact-detail-body a:hover { text-decoration: underline; }
.contact-detail-body p { margin: 0; font-size: 0.93rem; }

.contact-form-wrap {
  background: var(--sage);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4dece;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(83,105,66,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  background: #e6f4e0;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1e1500;
  color: rgba(255,255,255,0.6);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p { font-size: 0.88rem; max-width: 240px; }
.footer-member { margin-top: 1.25rem; }
.footer-member-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.55;
  margin-bottom: 0.5rem !important;
}
.footer-member-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
}
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.footer-nav ul li { margin-bottom: 0.45rem; }
.footer-nav ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--yellow); }

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 3rem 1.5rem;
  background: var(--sage);
  border-top: 1px solid rgba(83,105,66,0.1);
  border-bottom: 1px solid rgba(83,105,66,0.1);
}
.partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.partners-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.partner-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.partner-item img {
  height: 36px;
  width: auto;
  max-width: 150px;
  display: block;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.partner-item:hover img {
  opacity: 1;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: var(--section-padding);
  background: var(--white);
}
.testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--yellow);
}
.testimonial-body blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 1rem;
  position: relative;
}
.testimonial-body blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--yellow);
  line-height: 0;
  vertical-align: -0.55em;
  margin-right: 0.15em;
}
.testimonial-cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
}
.testimonial-cite strong {
  font-size: 0.95rem;
  color: var(--dark);
}
.testimonial-cite span {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}

/* ===== EUROPE SECTION (homepage split layout) ===== */
.europe-section {
  padding: var(--section-padding);
  background: var(--white);
}
.europe-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2rem;
}
.europe-split-text h2 { margin-bottom: 1rem; }
.europe-split-text p { color: var(--text-light); }
.europe-split-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

@media (max-width: 922px) {
  .europe-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== SOCIAL PROOF (homepage awards) ===== */
.social-proof {
  padding: var(--section-padding);
  background: var(--white);
}
.award-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.award-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.award-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.award-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== NETWORK PAGE HERO WITH IMAGE ===== */
.page-hero--image {
  position: relative;
  padding: calc(var(--nav-height) + 5rem) 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
  background: #111 url('images/Charging a Plane.jpg') center/cover no-repeat;
}
.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 8, 0.55);
}
.page-hero--image .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero--image h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero--image p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.page-hero--image .section-label { color: var(--yellow); text-align: center; }

/* ===== NETWORK IN ACTION (charger map section) ===== */
.network-in-action {
  padding: var(--section-padding);
  background: var(--sage);
}
.map-image-wrap {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-image-wrap img {
  width: 100%;
  display: block;
}

/* ===== TIMELINE / EVOLUTION SECTION ===== */
.evolution-section {
  padding: var(--section-padding);
  background: var(--white);
}
.evolution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.evolution-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: block;
}
.evolution-text h3 { margin-bottom: 0.75rem; }
.evolution-text p { color: var(--text-light); }

/* ===== PLATFORM SECTION (CPO MSP app) ===== */
.platform-section {
  padding: var(--section-padding);
  background: var(--dark);
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.platform-grid img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.platform-text { color: var(--white); }
.platform-text h2 { color: var(--white); margin-bottom: 1rem; }
.platform-text p { color: rgba(255,255,255,0.72); margin-bottom: 1rem; }
.platform-text .section-label { color: var(--yellow); }

/* ===== TEAM SECTION (jobs page) ===== */
.team-section {
  padding: var(--section-padding);
  background: var(--sage);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}
.team-photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.team-text h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.team-text p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== CONTACT MEETING PHOTO ===== */
.contact-meeting-photo {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-meeting-photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* ===== PROJECT EUROCHARGE SECTION ===== */
.eurocharge-section {
  padding: var(--section-padding);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.eurocharge-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.eurocharge-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.eurocharge-section h2 { color: var(--white); margin-bottom: 1rem; }
.eurocharge-section > .container > p { color: rgba(255,255,255,0.65); max-width: 640px; }
.eurocharge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.eurocharge-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: background var(--transition), border-color var(--transition);
}
.eurocharge-item:hover {
  background: rgba(255,255,255,0.09);
}
.eurocharge-item-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.eurocharge-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.eurocharge-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
  .eurocharge-grid { grid-template-columns: 1fr; }
}

/* Video block inside eurocharge section */
.eurocharge-video-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.eurocharge-video-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.eurocharge-video-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ===== TRANSITION AWARD SECTION ===== */
.transition-award-section {
  padding: var(--section-padding);
  background: var(--dark);
}
.transition-award-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.transition-award-section .section-label { color: var(--yellow); }
.transition-award-section .section-intro { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

/* ===== SHARED VIDEO WRAP ===== */
.video-section {
  padding: var(--section-padding);
  background: var(--sage);
}
.video-section h2 { margin-bottom: 0.5rem; }
.video-section .section-intro { margin-bottom: 2rem; }
.video-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  background: #000;
  line-height: 0;
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
}

/* ===== HERO ENTRANCE ANIMATION ===== */
.hero-content {
  animation: heroIn 1s cubic-bezier(.22,1,.36,1) 0.15s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.scroll-indicator {
  animation: bounce 2s infinite, heroIn 1s cubic-bezier(.22,1,.36,1) 0.7s both;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.js-reveal.from-left  { transform: translateX(-44px); }
.js-reveal.from-right { transform: translateX(44px); }
.js-reveal.scale-in   { transform: scale(0.88) translateY(16px); }
.js-reveal.revealed   { opacity: 1; transform: none; }

/* Stagger siblings inside a js-stagger parent */
.js-stagger > .js-reveal:nth-child(1) { transition-delay: 0.00s; }
.js-stagger > .js-reveal:nth-child(2) { transition-delay: 0.09s; }
.js-stagger > .js-reveal:nth-child(3) { transition-delay: 0.18s; }
.js-stagger > .js-reveal:nth-child(4) { transition-delay: 0.27s; }
.js-stagger > .js-reveal:nth-child(5) { transition-delay: 0.36s; }
.js-stagger > .js-reveal:nth-child(6) { transition-delay: 0.45s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-content { animation: none; }
}

/* ===== ABOUT / TEAM PAGE ===== */
.about-section {
  padding: var(--section-padding);
  background: var(--white);
}
.about-section--sage {
  background: var(--sage);
}
.about-section h2 {
  margin-bottom: 2.5rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.people-grid--centered {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  max-width: 640px;
}

.person-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-section--sage .person-card {
  background: var(--white);
}
.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

/* Avatar */
.person-avatar-link {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.25rem;
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}
.person-avatar-link--no-link {
  cursor: default;
}
.person-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition);
}

/* LinkedIn hover overlay */
.person-avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 119, 181, 0.88);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.person-avatar-link:hover .person-avatar-overlay {
  opacity: 1;
}
.person-avatar-link:hover .person-avatar {
  transform: scale(1.04);
}

/* Body text */
.person-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.person-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 400;
  transition: color var(--transition);
}
a.person-name:hover {
  color: var(--green);
}
.person-name--plain {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
}
.person-title {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}
.person-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0.5rem 0 0.75rem;
  text-align: left;
}
.person-pilot-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  background: rgba(83, 105, 66, 0.12);
  color: var(--green);
  border: 1px solid rgba(83, 105, 66, 0.25);
  margin-bottom: 0.65rem;
}
.person-pilot-badge--training {
  background: rgba(255, 217, 54, 0.18);
  color: #7a6200;
  border-color: rgba(255, 217, 54, 0.5);
}
.person-prev {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.person-prev-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(83, 105, 66, 0.1);
  color: var(--green);
  border: 1px solid rgba(83, 105, 66, 0.2);
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 922px) {
  .what-grid { grid-template-columns: 1fr; }
  .what-visual { min-height: 260px; order: -1; }
  .what-visual img { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .evolution-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-grid img { max-width: 220px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #111;
    gap: 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    z-index: 999;
    /* slide-down animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link {
    color: rgba(255,255,255,0.75) !important;
    padding: 1.1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    transition: background var(--transition), color var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .nav-link::before {
    content: '⚡';
    font-size: 0.85rem;
    opacity: 0.25;
    flex-shrink: 0;
    transition: opacity var(--transition);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white) !important;
  }
  .nav-link:hover::before { opacity: 1; }
  .nav-link.active { color: var(--yellow) !important; }
  .nav-link.active::before { opacity: 1; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 544px) {
  :root { --section-padding: 3.5rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .job-card-header { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .award-grid { grid-template-columns: 1fr; }
}

/* ===== NEWS CARDS (shared) ===== */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.news-card-img { width:100%; height:200px; object-fit:cover; display:block; background:var(--sage); }
.news-card-img-placeholder { width:100%; height:200px; background:var(--sage); display:flex; align-items:center; justify-content:center; font-size:2.5rem; }
.news-card-body { padding:1.25rem 1.5rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.news-card-meta { display:flex; align-items:center; gap:.75rem; margin-bottom:.6rem; }
.news-badge { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; padding:.2rem .6rem; border-radius:4px; background:var(--sage); color:var(--green); }
.news-badge--Award       { background:#fffbe6; color:#a07c00; }
.news-badge--Partnership { background:#e8f0fe; color:#1a56ba; }
.news-badge--Product     { background:#e6f4ea; color:#1e6e3e; }
.news-badge--Event       { background:#fce8d5; color:#b54a00; }
.news-badge--Press       { background:#f0e6fa; color:#6b28a8; }
.news-badge--Update      { background:#f0f0f0; color:#555; }
.news-card-date { font-size:.82rem; color:var(--text-light); }
.news-card-title { font-family:var(--font-heading); font-size:clamp(1.1rem,2vw,1.25rem); color:var(--dark); margin-bottom:.6rem; line-height:1.3; }
.news-card-intro { font-size:.9rem; color:var(--text-light); line-height:1.6; flex:1; margin-bottom:0; }

/* ===== SEARCH ===== */
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color var(--transition);
  line-height: 0;
}
.search-btn:hover { color: var(--yellow); }
.site-header.light .search-btn { color: var(--text); }
.site-header.light .search-btn:hover { color: var(--green); }
.site-header.scrolled .search-btn { color: var(--text); }
.site-header.scrolled .search-btn:hover { color: var(--green); }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  margin: 0 1.5rem;
  box-shadow: 0 12px 56px rgba(0,0,0,0.25);
  overflow: hidden;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
}
.search-input-wrap svg { flex-shrink: 0; color: var(--text-light); }
#search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: none;
}
#search-input::placeholder { color: var(--text-light); }
.search-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  padding: 0 2px;
  transition: color var(--transition);
}
.search-close:hover { color: var(--dark); }
.search-results { max-height: 420px; overflow-y: auto; }
.search-result-item {
  display: block;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background var(--transition);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--sage); }
.search-result-page {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.1rem;
}
.search-result-title {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.93rem;
}
.search-no-results,
.search-hint {
  padding: 1.25rem;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
}
@media (max-width: 768px) {
  .search-overlay { padding-top: 80px; }
}

/* ===== UPCOMING EVENTS ===== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-card {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.event-card--next {
  border-left-color: var(--yellow);
}
.event-flag {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1;
}
.event-info { min-width: 0; }
.event-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}
.event-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}
.event-countdown {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
}
.event-name {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.event-location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}
.event-note {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0.5rem 0 0;
  padding: 0.55rem 0.85rem;
  background: rgba(83,105,66,0.07);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}
.event-team {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.event-team-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.event-attendees {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.event-attendee {
  background: var(--sage);
  color: var(--green);
  border: 1.5px solid rgba(83,105,66,0.25);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
}
.event-attendee--link:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

@media (max-width: 640px) {
  .event-card {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
  }
  .event-team {
    grid-column: 2;
    align-items: flex-start;
    margin-top: 0.75rem;
  }
  .event-attendees { justify-content: flex-start; }
}

/* ===== FUN FACT BAR ===== */
.funfact-bar {
  background: linear-gradient(135deg, #0d160d 0%, #121f12 100%);
  padding: 3.5rem 0 2.5rem;
  border-top: 3px solid var(--yellow);
}
.funfact-bar .container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.funfact-top {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.funfact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.funfact-text {
  font-family: 'Forum', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #fff;
  line-height: 1.4;
  max-width: 480px;
}
.funfact-logo-wrap { margin-left: auto; flex-shrink: 0; display: flex; align-items: center; }
.funfact-logo-wrap a { display: block; transition: opacity 0.2s; }
.funfact-logo-wrap a:hover { opacity: 0.7; }
.funfact-logo-wrap img { height: 34px; width: auto; object-fit: contain; display: block; }
.funfact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .funfact-tiles { grid-template-columns: 1fr; } }
.funfact-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.funfact-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--yellow);
  border-radius: 3px 0 0 3px;
}
.funfact-tile-num {
  font-family: 'Forum', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.01em;
}
.funfact-tile-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.4rem;
}
.funfact-tile-period {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
}
.funfact-bottom {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.funfact-bottom a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.funfact-live-dot {
  width: 6px; height: 6px;
  background: #4caf50;
  border-radius: 50%;
  animation: funfact-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes funfact-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@media (max-width: 640px) { .funfact-logo-wrap { margin-left: 0; } }

/* ===== AIRCRAFT TIMELINE (Long-Term Market) ===== */
.home-timeline {
  background: linear-gradient(160deg, #0f1a0f 0%, #1a1a1a 60%, #0d1520 100%);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}
.home-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(83,105,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.home-timeline .section-label { color: var(--yellow); }
.home-timeline h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; margin-bottom: 0.75rem; }
.home-tl-intro { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 620px; margin-bottom: 1rem; line-height: 1.7; }
.home-tl-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-style: italic; margin-bottom: 3.5rem; }
.home-tl-runway { position: relative; margin-bottom: 0; }
.home-tl-ground {
  width: 100%; height: 2px;
  background: linear-gradient(to right, rgba(255,217,54,0.8) 0%, rgba(255,217,54,0.5) 40%, rgba(255,217,54,0.15) 100%);
  position: relative; margin-bottom: 0;
}
.home-tl-ground::before {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.06);
}
.home-tl-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: stretch; padding-bottom: 0;
}
.home-tl-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 0.5rem; position: relative;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.home-tl-item.tl-visible { opacity: 1; transform: translateY(0); }
.home-tl-item:nth-child(1) { transition-delay: 0s; }
.home-tl-item:nth-child(2) { transition-delay: 0.15s; }
.home-tl-item:nth-child(3) { transition-delay: 0.3s; }
.home-tl-item:nth-child(4) { transition-delay: 0.45s; }
.home-tl-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 1.25rem 1rem 1rem; margin-bottom: 1.25rem; width: 100%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex: 1;
}
.home-tl-item:hover .home-tl-card { background: rgba(255,255,255,0.08); border-color: rgba(255,217,54,0.3); transform: translateY(-4px); }
.home-tl-plane-wrap {
  height: 140px; display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 1rem; overflow: hidden; border-radius: 10px;
  background: rgba(255,255,255,0.03); padding: 0.75rem;
}
.home-tl-plane {
  height: 120px; width: 100%; object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s ease, filter 0.3s ease;
}
.home-tl-item:hover .home-tl-plane { transform: translateY(-8px); filter: drop-shadow(0 12px 28px rgba(255,217,54,0.25)); }
.home-tl-kwh { font-family: var(--font-heading); font-size: 1.6rem; color: var(--yellow); line-height: 1; margin-bottom: 0.15rem; }
.home-tl-type { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.home-tl-name { font-weight: 700; font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.3; }
.home-tl-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--yellow); border: 2px solid #1a1a1a;
  box-shadow: 0 0 0 2px var(--yellow); margin: 0 auto;
  position: relative; z-index: 2; transition: box-shadow 0.3s;
}
.home-tl-item:nth-child(2) .home-tl-dot,
.home-tl-item:nth-child(3) .home-tl-dot,
.home-tl-item:nth-child(4) .home-tl-dot { background: rgba(255,217,54,0.4); box-shadow: 0 0 0 2px rgba(255,217,54,0.4); }
.home-tl-item:hover .home-tl-dot { box-shadow: 0 0 0 4px rgba(255,217,54,0.25), 0 0 16px rgba(255,217,54,0.4); }
.home-tl-year { font-family: var(--font-heading); font-size: 0.95rem; color: rgba(255,217,54,0.7); margin-top: 0.9rem; }
.home-tl-tag {
  display: inline-block; margin-top: 0.5rem; font-size: 0.67rem; font-weight: 700;
  padding: 0.18rem 0.55rem; border-radius: 100px;
  background: rgba(83,105,66,0.35); color: #a8c490; border: 1px solid rgba(83,105,66,0.4);
}
.home-tl-tag--now { background: rgba(255,217,54,0.12); color: var(--yellow); border-color: rgba(255,217,54,0.3); }
@media (max-width: 768px) {
  .home-tl-track { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .home-tl-ground { display: none; }
}

/* 6-column timeline (id=toekomst) — responsive overrides */
#toekomst .home-tl-track { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1000px) {
  #toekomst .home-tl-track { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (max-width: 600px) {
  #toekomst .home-tl-track { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  #toekomst .home-tl-card { padding: 0.85rem 0.65rem 0.75rem; }
  #toekomst .home-tl-plane-wrap { height: 90px; padding: 0.5rem; margin-bottom: 0.6rem; }
  #toekomst .home-tl-plane { height: 72px; }
  #toekomst .home-tl-kwh { font-size: 1.2rem; }
  #toekomst .home-tl-type { font-size: 0.62rem; }
  #toekomst .home-tl-name { font-size: 0.72rem; }
  #toekomst .home-tl-year { font-size: 0.78rem; margin-top: 0.6rem; }
  #toekomst .home-tl-tag { font-size: 0.6rem; padding: 0.12rem 0.4rem; margin-top: 0.35rem; }
}

/* ===== PROVEN IN THE FIELD ===== */
.home-track { background: var(--sage); padding: 5rem 0; }
.home-track h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--dark); margin-bottom: 0.75rem; }
.home-track-intro { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin-bottom: 3rem; line-height: 1.7; }
.p-flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .p-flagship-grid { grid-template-columns: 1fr; } }
.p-flagship-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.p-flagship-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.p-flagship-body { padding: 1.5rem; }
.p-flagship-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; background: var(--yellow); color: var(--dark);
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem;
}
.p-flagship-body h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--dark); margin-bottom: 0.4rem; }
.p-flagship-sub { font-size: 0.8rem; font-weight: 600; color: var(--green); margin-bottom: 0.75rem; }
.p-flagship-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.p-flagship-specs { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #eee; }
.p-flagship-spec { font-size: 0.8rem; color: var(--text-light); }
.p-flagship-spec strong { display: block; font-size: 0.92rem; color: var(--dark); font-weight: 700; }
.p-proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.p-proof-item { background: #fff; border-radius: var(--radius); padding: 1.5rem; border-left: 3px solid var(--yellow); }
.p-proof-num { font-family: var(--font-heading); font-size: 2rem; color: var(--green); line-height: 1; margin-bottom: 0.4rem; }
.p-proof-title { font-weight: 700; font-size: 0.92rem; color: var(--dark); margin-bottom: 0.4rem; }
.p-proof-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.p-proof-badge {
  display: inline-block; margin-top: 0.6rem; font-size: 0.72rem; font-weight: 700;
  background: var(--yellow); color: var(--dark); padding: 0.18rem 0.55rem; border-radius: 4px;
}
@media (max-width: 768px) { .p-proof-grid { grid-template-columns: 1fr; } }

/* ===== NETWORK AMBITION (From NL to Europe) ===== */
.p-ambition { background: #fff; padding: 5rem 0; }
.p-ambition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
@media (max-width: 700px) { .p-ambition-grid { grid-template-columns: 1fr; } }
.p-ambition-block { border-radius: 16px; overflow: hidden; border: 1px solid #eee; display: flex; flex-direction: column; }
.p-ambition-block-header { padding: 1.5rem 1.75rem 1rem; }
.p-ambition-block--today .p-ambition-block-header { background: var(--sage); }
.p-ambition-block--future .p-ambition-block-header { background: var(--dark); }
.p-ambition-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.6rem;
}
.p-ambition-block--today .p-ambition-tag { background: var(--green); color: #fff; }
.p-ambition-block--future .p-ambition-tag { background: var(--yellow); color: var(--dark); }
.p-ambition-block-header h3 { font-family: var(--font-heading); font-size: 1.5rem; line-height: 1.25; }
.p-ambition-block--today .p-ambition-block-header h3 { color: var(--dark); }
.p-ambition-block--future .p-ambition-block-header h3 { color: #fff; }
.p-ambition-block-header p { font-size: 0.9rem; margin-top: 0.4rem; line-height: 1.6; }
.p-ambition-block--today .p-ambition-block-header p { color: var(--text-light); }
.p-ambition-block--future .p-ambition-block-header p { color: rgba(255,255,255,0.6); }
.p-ambition-block-img { flex: 1; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: #f9f9f6; }
.p-ambition-block--future .p-ambition-block-img { background: #111; }
.p-ambition-block-img img { width: 100%; max-width: 380px; height: auto; border-radius: 8px; }
