@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --blue: #3b9dd7;
  --coral: #e82e61;
  --white: #ffffff;
  --ice: #edeff4;
  --silver: #c9cad3;
  --slate: #313544;
  --dark: #1a1d28;
  --black: #000000;
  --gradient: linear-gradient(135deg, var(--blue), var(--coral));
  --gradient-h: linear-gradient(90deg, var(--blue), var(--coral));
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Base bumped from the browser default 16px to 18px — scales every rem
   value site-wide (~12.5%) for readability, rather than patching sizes
   one rule at a time. */
html { scroll-behavior: smooth; font-size: 112.5%; }
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--dark);
  color: var(--ice);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; transition: color .3s; }
a:hover { color: var(--coral); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(26, 29, 40, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 157, 215, .1);
  transition: padding .3s;
}
.nav.scrolled { padding: .6rem 3rem; }
.nav-logo-link { display: flex; align-items: center; }
.nav-logo-img {
  height: 46px;
  opacity: 1;
  transition: height .3s, opacity .3s;
}
.nav.scrolled .nav-logo-img { height: 38px; }
.nav-logo-img:hover { opacity: .85; }
.nav-logo-text {
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: 6px; text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--silver); font-weight: 500; font-size: .82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  -webkit-text-fill-color: initial;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: .5rem 1.2rem;
  background: var(--gradient);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 1px;
}
.nav-cta:hover { opacity: .9; color: var(--white) !important; }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex; gap: .3rem;
  margin-left: 1rem;
}
.lang-btn {
  padding: .3rem .5rem;
  background: transparent;
  border: 1px solid rgba(201,202,211,.25);
  color: var(--silver);
  font-family: 'Urbanist', sans-serif;
  font-size: .7rem; font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s;
}
.lang-btn.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}
.lang-btn:hover:not(.active) {
  border-color: var(--silver);
  color: var(--white);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .35;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-profile-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 700;
  color: var(--blue);
  margin: 0 auto 1.5rem;
}
.hero h1 {
  font-size: 3.8rem; font-weight: 900;
  line-height: 1.1; margin-bottom: .5rem;
}
.hero h1 .gradient {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 1rem; font-weight: 400;
  color: var(--silver);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-positioning {
  font-size: 1.15rem; color: var(--ice);
  max-width: 650px; margin: 0 auto 1rem;
  line-height: 1.8; font-weight: 300;
}
.hero-proof {
  font-size: .95rem; color: var(--silver);
  font-weight: 500; letter-spacing: 1px;
  margin-bottom: 2.5rem;
}
.hero-proof strong {
  color: var(--white); font-weight: 700;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-family: 'Urbanist', sans-serif;
  font-size: .9rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all .3s;
  border: none; text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 46, 97, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232, 46, 97, .35); color: var(--white); }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--silver);
  color: var(--silver);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar {
  padding: 4.5rem 2rem;
  text-align: center;
  background: var(--white);
}
.trust-label {
  font-size: .75rem; color: var(--slate);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 2.25rem; font-weight: 600;
}
.trust-logos {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
  max-width: 1300px; margin: 0 auto;
}
/* Two explicit rows (split after UNDP: 5, then 3). Cards use flex-grow
   ratios instead of fixed pixel widths, so a row always fills exactly
   100% of the available width — everything fits and centers naturally,
   no horizontal scrolling needed at any viewport. The ratios (1 / 1.5 / 2)
   are what make TLU +50% and PAGM +100% bigger than a plain card, while
   the row as a whole still always fits the window. */
.trust-logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem;
  width: 100%;
}
.trust-item {
  font-size: .85rem; font-weight: 600;
  color: var(--slate); letter-spacing: 1px;
  opacity: .7; transition: opacity .3s;
  white-space: nowrap;
}
.trust-item:hover { opacity: 1; }
/* Real partner logos keep their authentic official colors, sitting
   directly on the white section — no per-logo card/box, just a
   height-matched, proportionally-sized wrapper so every logo aligns on a
   common baseline regardless of its own image's aspect ratio. */
.trust-logo-card {
  display: flex; align-items: center; justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: clamp(56px, 8vw, 128px);
}
.trust-logo-card--lg { flex-grow: 1.5; }
.trust-logo-card--xl { flex-grow: 2; }
.trust-logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: .95;
  transition: opacity .3s, transform .3s;
}
.trust-logo:hover { opacity: 1; transform: translateY(-2px); }

/* Mobile: collapse the 5+3 row split into a uniform 2-per-row grid —
   "display: contents" removes the row wrappers from the box model so
   their children become direct grid items of .trust-logos. */
@media (max-width: 640px) {
  .trust-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.25rem; }
  .trust-logos-row { display: contents; }
  .trust-logo-card, .trust-logo-card--lg, .trust-logo-card--xl {
    flex-grow: 0; height: clamp(48px, 18vw, 90px);
  }
}

/* ── SECTIONS ── */
section { padding: 4rem 3rem; max-width: 1200px; margin: 0 auto; scroll-margin-top: 0px; }
.section-label {
  font-size: .7rem; color: var(--blue);
  letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; margin-bottom: .5rem;
}
.section-title {
  font-size: 2.4rem; font-weight: 800;
  line-height: 1.2; margin-bottom: .75rem;
}
.section-title .gradient {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc {
  color: var(--silver); font-size: 1rem;
  max-width: 600px; line-height: 1.7;
  margin-bottom: 2rem;
}
.section-desc.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ── PROBLEMS ── */
.problems-section { background: rgba(49,53,68,.1); max-width: 100%; padding: 6rem 3rem; }
.problems-inner { max-width: 1200px; margin: 0 auto; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.problem-card {
  background: rgba(26, 29, 40, .6);
  border: 1px solid rgba(232, 46, 97, .12);
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
}
.problem-card:hover {
  border-color: rgba(232, 46, 97, .3);
  transform: translateY(-3px);
}
.problem-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(232, 46, 97, .1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
/* Brand icon set — extracted as vector SVGs from the official Lappsus
   brandbook (Brandbook/Brand package/Icons/Icons redactabil.ai), not
   generic emoji. Inlined directly in the markup (rather than referenced
   via CSS mask-image) because file:// pages block cross-resource SVG
   masking as a security precaution — inline SVG has no such restriction
   and colors via currentColor, so one asset still serves every accent. */
.icon-svg {
  display: inline-block;
  width: 24px; height: 24px;
  flex-shrink: 0;
}
.problem-icon .icon-svg { color: var(--coral); width: 22px; height: 22px; }
.problem-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: .6rem;
}
.problem-card p {
  font-size: .88rem; color: var(--silver);
  line-height: 1.7;
}
.problems-transition {
  text-align: center;
  font-size: 1.3rem; font-weight: 600;
  color: var(--white);
}
.problems-transition .gradient {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(49, 53, 68, .25);
  border: 1px solid rgba(59, 157, 215, .1);
  border-radius: 12px;
  padding: 1.75rem 1.75rem;
  transition: all .3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: rgba(59, 157, 215, .3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 157, 215, .08);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-icon.blue { background: rgba(59,157,215,.12); }
.service-icon.coral { background: rgba(232,46,97,.12); }
.service-icon.purple { background: rgba(168,85,247,.12); }
.service-icon .icon-svg { width: 28px; height: 28px; }
.service-icon.blue .icon-svg { color: var(--blue); }
.service-icon.coral .icon-svg { color: var(--coral); }
.service-icon.purple .icon-svg { color: #a855f7; }
.contact-path h3 .icon-svg {
  width: 20px; height: 20px;
  color: var(--blue);
  vertical-align: -4px;
  margin-right: .3rem;
}
.service-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.service-card p {
  font-size: .87rem; color: var(--silver);
  line-height: 1.6; flex: 1;
}
.service-card .btn {
  margin-top: 1rem;
  padding: .6rem 1.2rem;
  font-size: .75rem;
  align-self: flex-start;
}

/* ── IMPACT STRIP ── */
.impact-strip {
  background: var(--gradient);
  padding: 4rem 3rem;
  max-width: 100%;
  scroll-margin-top: 70px;
}
.impact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  text-align: center;
}
.impact-item { color: var(--white); }
.impact-number {
  font-size: 2.5rem; font-weight: 900;
  line-height: 1;
}
.impact-label {
  font-size: .72rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: .4rem; opacity: .85;
}

/* ── CASE STUDIES ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.case-card {
  background: rgba(49, 53, 68, .25);
  border: 1px solid rgba(59, 157, 215, .1);
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
  cursor: pointer;
}
.case-card:hover {
  border-color: rgba(59, 157, 215, .25);
  transform: translateY(-2px);
}
.case-badge {
  display: inline-block;
  font-size: .65rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.case-badge.national { background: rgba(59,157,215,.12); color: var(--blue); }
.case-badge.international { background: rgba(168,85,247,.12); color: #a855f7; }
.case-badge.institutional { background: rgba(34,197,94,.12); color: #22c55e; }
.case-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: .8rem;
}
.case-meta {
  font-size: .8rem; color: var(--coral);
  font-weight: 500; margin-bottom: 1rem;
}
.case-detail {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59,157,215,.1);
}
.case-card.expanded .case-detail { display: block; }
.case-detail-row {
  margin-bottom: .8rem;
}
.case-detail-label {
  font-size: .7rem; color: var(--blue);
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: .3rem;
}
.case-detail-text {
  font-size: .88rem; color: var(--silver);
  line-height: 1.7;
}
.case-expand {
  font-size: .78rem; color: var(--blue);
  font-weight: 600; margin-top: .8rem;
  display: inline-block;
}

/* ── JOURNEY (Timeline + Graph) ── */
.journey-section { max-width: 100%; padding: 4rem 3rem; background: rgba(49,53,68,.08); scroll-margin-top: 70px; }
.journey-inner { max-width: 1200px; margin: 0 auto; }

.view-toggle { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.view-btn {
  padding: .6rem 1.5rem;
  border: 1px solid var(--slate);
  background: transparent;
  color: var(--silver);
  font-family: 'Urbanist', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 6px; cursor: pointer; transition: all .3s;
}
.view-btn.active, .view-btn:hover {
  background: var(--gradient); color: var(--white); border-color: transparent;
}
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: .35rem .9rem;
  border: 1px solid var(--slate);
  background: transparent;
  color: var(--silver);
  font-family: 'Urbanist', sans-serif;
  font-size: .75rem; font-weight: 500;
  border-radius: 20px; cursor: pointer; transition: all .3s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--blue); color: var(--blue);
  background: rgba(59,157,215,.08);
}

.timeline-container { position: relative; padding-left: 3rem; }
.timeline-container::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--coral));
}
.timeline-item {
  position: relative; margin-bottom: 2rem; padding-left: 2rem;
  opacity: 0; transform: translateX(-20px);
  animation: fadeSlideIn .5s forwards;
}
@keyframes fadeSlideIn { to { opacity: 1; transform: translateX(0); } }
.timeline-dot {
  position: absolute; left: -2.95rem; top: .4rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--dark); z-index: 1;
}
.timeline-item[data-type="education"] .timeline-dot { border-color: var(--coral); }
.timeline-item[data-type="project"] .timeline-dot { border-color: #a855f7; }
.timeline-item[data-type="event"] .timeline-dot { border-color: #22c55e; }
.timeline-card {
  background: rgba(49, 53, 68, .4);
  border: 1px solid rgba(59,157,215,.1);
  border-radius: 10px; padding: 1.3rem;
  transition: all .3s;
}
.timeline-card:hover {
  border-color: rgba(59,157,215,.3);
  transform: translateY(-2px);
}
.timeline-date {
  font-size: .7rem; color: var(--blue);
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.timeline-card h3 {
  font-size: 1rem; font-weight: 700;
  margin: .3rem 0 .15rem; color: var(--white);
}
.timeline-org { font-size: .82rem; color: var(--coral); font-weight: 500; margin-bottom: .4rem; }
.timeline-desc { font-size: .84rem; color: var(--silver); line-height: 1.7; }
.timeline-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .6rem; }
.tag {
  font-size: .65rem; padding: .15rem .5rem;
  border-radius: 20px;
  background: rgba(59,157,215,.1); color: var(--blue); font-weight: 500;
}
.tag.coral { background: rgba(232,46,97,.1); color: var(--coral); }
.tag.purple { background: rgba(168,85,247,.1); color: #a855f7; }
.tag.green { background: rgba(34,197,94,.1); color: #22c55e; }

.graph-container {
  display: none; width: 100%; height: 600px;
  background: rgba(49,53,68,.2);
  border: 1px solid rgba(59,157,215,.1);
  border-radius: 12px; position: relative; overflow: hidden;
}
.graph-container.active { display: block; }
.graph-canvas { width: 100%; height: 100%; }
.graph-legend {
  position: absolute; bottom: 1rem; left: 1rem;
  display: flex; gap: 1rem; font-size: .7rem; color: var(--silver);
}
.graph-legend-item { display: flex; align-items: center; gap: .35rem; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── SPEAKING ── */
.speaking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.speaking-card {
  background: rgba(49,53,68,.25);
  border: 1px solid rgba(59,157,215,.08);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all .3s;
}
.speaking-card:hover {
  border-color: rgba(59,157,215,.25);
  transform: translateY(-3px);
}
.speaking-card .event-year {
  font-size: .65rem; color: var(--blue);
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: .5rem;
}
.speaking-card h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--white); margin-bottom: .3rem;
}
.speaking-card p {
  font-size: .78rem; color: var(--silver);
}
.speaking-cta { text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(49,53,68,.2);
  border: 1px solid rgba(59,157,215,.08);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 3rem; color: rgba(59,157,215,.15);
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-text {
  font-size: .9rem; color: var(--silver);
  line-height: 1.8; font-style: italic;
  margin-bottom: 1.2rem; padding-top: 1rem;
}
.testimonial-author {
  font-size: .8rem; font-weight: 600;
  color: var(--white);
}
.testimonial-role {
  font-size: .72rem; color: var(--silver);
}

/* ── CONTACT ── */
.contact-section {
  max-width: 100%; padding: 4rem 3rem;
  background: rgba(49,53,68,.1);
  scroll-margin-top: 70px;
}
.contact-inner {
  max-width: 1000px; margin: 0 auto;
  text-align: center;
}
.contact-headline {
  font-size: 2.5rem; font-weight: 800;
  margin-bottom: .5rem;
}
.contact-headline .gradient {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-sub {
  color: var(--silver); font-size: 1rem;
  margin-bottom: 3rem; max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.contact-paths {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
  text-align: left;
}
.contact-path {
  background: rgba(49,53,68,.3);
  border: 1px solid rgba(59,157,215,.1);
  border-radius: 12px; padding: 2rem;
  transition: all .3s;
}
.contact-path:hover { border-color: rgba(59,157,215,.25); }
.contact-path h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: .5rem;
}
.contact-path p {
  font-size: .88rem; color: var(--silver);
  line-height: 1.7; margin-bottom: 1rem;
}
.contact-form {
  max-width: 500px; margin: 0 auto;
  text-align: left;
}
.contact-form h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.2rem;
  text-align: center;
}
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(49,53,68,.4);
  border: 1px solid rgba(59,157,215,.12);
  border-radius: 8px;
  padding: .8rem 1rem;
  color: var(--ice);
  font-family: 'Urbanist', sans-serif;
  font-size: .9rem;
  transition: border-color .3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--silver); opacity: .6;
}
/* Honeypot field: off-screen for humans, still reachable by form-filling bots. */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-status {
  font-size: .85rem;
  margin-bottom: 1rem;
  min-height: 1.2em;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { color: var(--blue); }
.form-status.error { color: var(--coral); }

/* ── FOOTER ── */
.footer {
  text-align: center; padding: 2.5rem 3rem;
  border-top: 1px solid rgba(59,157,215,.08);
  color: var(--silver); font-size: .78rem;
}
.footer-links {
  display: flex; justify-content: center;
  gap: 2rem; margin-bottom: 1rem;
}
.footer-links a {
  color: var(--silver); font-size: .78rem;
  letter-spacing: 1px; text-transform: uppercase;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .impact-inner { grid-template-columns: repeat(3, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: .8rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: .7rem; letter-spacing: 1px; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-positioning { font-size: 1rem; }
  section { padding: 4rem 1.5rem; }
  .problems-section, .journey-section, .contact-section { padding: 4rem 1.5rem; }
  .services-grid, .cases-grid, .testimonials-grid, .problems-grid {
    grid-template-columns: 1fr;
  }
  .impact-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .impact-number { font-size: 1.8rem; }
  .contact-paths { grid-template-columns: 1fr; }
  .graph-container { height: 400px; }
  .speaking-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .impact-inner { grid-template-columns: repeat(2, 1fr); }
  .speaking-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .lang-switcher { margin-left: auto; }
}
