/* ============================================================
   VALENTEX — Premium consulting homepage
   McKinsey / Stripe / Linear / Vercel visual language
   ============================================================ */

:root {
  --c-primary:    #3F51C4;
  --c-primary-dk: #1d3a8a;
  --c-accent:     #5F7CFF;
  --c-bg:         #FFFFFF;
  --c-section:    #F7F8FC;
  --c-text:       #1D1D1F;
  --c-muted:      #666666;
  --c-line:       #E8EAF1;
  --c-line-2:     #D5D9E6;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 48px rgba(31, 41, 92, 0.10), 0 4px 12px rgba(31, 41, 92, 0.06);
  --shadow-xl: 0 30px 80px rgba(31, 41, 92, 0.18);

  --radius:    16px;
  --radius-lg: 24px;

  --container: 1240px;
  --container-narrow: 880px;

  --t-h1: clamp(30px, 4vw, 44px);
  --t-h2: clamp(30px, 3.6vw, 42px);
  --t-h3: 22px;
  --t-body: 18px;
  --t-btn: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 200ms var(--ease, ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-text);
}
h1 { font-size: var(--t-h1); line-height: 1.15; }
h2 { font-size: var(--t-h2); line-height: 1.18; }
h3 { font-size: var(--t-h3); line-height: 1.3; }
p  { margin: 0; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--c-primary-dk);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 200;
  transition: top 200ms ease;
}
.skip-link:focus { top: 16px; }

/* =============== LAYOUT =============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }
.section {
  padding: 120px 0;
  position: relative;
}
.section--white { background: var(--c-bg); }
.section--gray  { background: var(--c-section); }
.section--dark  { background: #0B1029; color: #fff; }

.section__header {
  max-width: 1040px;
  margin: 0 auto 72px;
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 16px;
  padding: 5px 12px;
  background: rgba(95, 124, 255, 0.1);
  border: 1px solid rgba(95, 124, 255, 0.25);
  border-radius: 999px;
}
.section__lead {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--c-muted);
  font-size: 17px;
  line-height: 1.6;
}
.section__header--light h2,
.section__header--light .section__subtitle { color: #fff; }
.section__header--light .section__subtitle { color: rgba(255,255,255,0.7); }

/* Editorial header: large left-aligned title, full width, no lead */
.section__header--editorial {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.section__title--wide {
  max-width: 100%;
  text-align: left;
}

/* Split header: title left, lead right */
.section__header--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  text-align: left;
}
.section__header--split .section__title { text-align: left; }
.section__header--split .section__subtitle { text-align: left; }
.section__header--split .section__lead { text-align: left; margin: 0; max-width: 460px; }
.section__title {
  margin-top: 14px;
  max-width: 1000px;
}
.section__subtitle {
  margin-top: 18px;
  color: var(--c-muted);
  font-size: 19px;
  line-height: 1.55;
}

/* =============== EYEBROW =============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(95, 124, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(95, 124, 255, 0.25);
}

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: var(--t-btn);
  font-weight: 600;
  border-radius: 12px;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease, color 250ms ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 24px rgba(63, 81, 196, 0.28);
}
.btn--primary:hover {
  background: var(--c-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 14px 32px rgba(63, 81, 196, 0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--c-primary-dk);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}
.btn--lg { padding: 18px 28px; font-size: 17px; border-radius: 14px; }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn--full { width: 100%; }

/* =============== NAVBAR =============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 300ms ease, padding 300ms ease, box-shadow 300ms ease;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--c-line), 0 4px 20px rgba(15, 23, 42, 0.04);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  transition: opacity 200ms ease;
}
.nav--scrolled .nav__brand { color: var(--c-text); }

.nav__logo {
  display: block;
  height: auto;
  transition: opacity 200ms ease;
}
/* Default state: nav over dark hero → show light-bg logo (valentex-c, white-on-transparent) */
.nav__logo--over-light { display: none; }
.nav__logo--over-dark  { display: block; }
/* Scrolled state: nav over light bg → show dark-bg logo (valentex-d, navy-on-transparent) */
.nav--scrolled .nav__logo--over-dark  { display: none; }
.nav--scrolled .nav__logo--over-light { display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 200ms ease;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width 250ms ease;
}
.nav__menu a:hover { color: #fff; }
.nav__menu a:hover::after { width: 100%; }
.nav--scrolled .nav__menu a { color: var(--c-text); }
.nav--scrolled .nav__menu a:hover { color: var(--c-primary); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: background 300ms ease;
}
.nav--scrolled .nav__toggle span { background: var(--c-text); }

@media (max-width: 900px) {
  .nav__menu, .nav__inner > .btn { display: none; }
  .nav__toggle { display: flex; }
}

/* =============== LANGUAGE SWITCH =============== */
.lang-switch {
  position: relative;
}
.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.lang-switch__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.nav--scrolled .lang-switch__toggle {
  border-color: rgba(63, 81, 196, 0.18);
  color: var(--c-text);
}
.nav--scrolled .lang-switch__toggle:hover {
  background: rgba(95, 124, 255, 0.06);
  border-color: rgba(63, 81, 196, 0.3);
  color: var(--c-primary-dk);
}
.lang-switch__flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.lang-switch__code {
  font-variant-numeric: tabular-nums;
}
.lang-switch__chevron {
  width: 10px;
  height: 10px;
  transition: transform 250ms ease;
  opacity: 0.6;
}
.lang-switch[aria-expanded="true"] .lang-switch__chevron,
.lang-switch.is-open .lang-switch__chevron {
  transform: rotate(180deg);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #ffffff;
  border: 1px solid rgba(63, 81, 196, 0.12);
  border-radius: 12px;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 24px 48px -12px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 110;
}
.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  transition: background 150ms ease, color 150ms ease;
}
.lang-switch__option:hover {
  background: rgba(95, 124, 255, 0.06);
  color: var(--c-primary-dk);
}
.lang-switch__option--active {
  background: rgba(95, 124, 255, 0.08);
  color: var(--c-primary-dk);
  font-weight: 600;
}
.lang-switch__option .lang-switch__flag {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 720px) {
  .lang-switch__code { display: none; }
  .lang-switch__toggle { padding: 8px 10px; }
  .lang-switch__menu { right: auto; left: 0; }
}

/* =============== HERO =============== */
.hero {
  position: relative;
  padding: 180px 0 0;
  color: #fff;
  background: linear-gradient(180deg, #0B1029 0%, #131A3A 50%, #1A2250 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.world {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.world--img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.world--routes {
  z-index: 1;
}
.world--routes .world__route {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawRoute 5s ease-in-out infinite;
}
.world--routes .world__route:nth-of-type(1) { animation-delay: 0s; }
.world--routes .world__route:nth-of-type(2) { animation-delay: 0.7s; }
.world--routes .world__route:nth-of-type(3) { animation-delay: 1.4s; }
.world--routes .world__route:nth-of-type(4) { animation-delay: 2.1s; }
.world--routes .world__route:nth-of-type(5) { animation-delay: 2.8s; }
.world--routes .world__route:nth-of-type(6) { animation-delay: 3.5s; }
@keyframes drawRoute {
  0%   { stroke-dashoffset: 220; opacity: 0; }
  20%  { opacity: 1; }
  60%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -220; opacity: 0; }
}
.world--routes .world__node {
  animation: nodePulse 3s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.world--routes .world__node:nth-of-type(odd)  { animation-delay: 0s; }
.world--routes .world__node:nth-of-type(even) { animation-delay: 1.5s; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.6); opacity: 1; }
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #5F7CFF 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero__glow--2 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, #3F51C4 0%, transparent 70%);
  bottom: -300px; right: -200px;
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 100px;
}
.hero__content { max-width: none; }
.hero__title {
  margin-top: 22px;
  color: #fff;
  max-width: none;
  margin-bottom: 56px;
}
.hero__title-accent {
  background: linear-gradient(120deg, #5F7CFF 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  margin-top: 24px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 560px;
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  height: 480px;
}
.hero__orb {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(95, 124, 255, 0.4) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  z-index: 1;
  animation: floatY 6s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.float-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(95, 124, 255, 0.18);
  color: var(--c-primary);
  display: grid;
  place-items: center;
}
.float-card__icon svg { width: 22px; height: 22px; }
.float-card__label { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.float-card__metric {
  font-size: 18px; font-weight: 700; color: #fff; line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.float-card__metric span { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; margin-left: 4px; }

.float-card--1 { top: 6%;  left: 8%;  animation-delay: 0s;   }
.float-card--2 { top: 28%; right: 4%; animation-delay: 1.4s; }
.float-card--3 { bottom: 28%; left: 6%; animation-delay: 2.6s; }
.float-card--4 { bottom: 4%; right: 12%; animation-delay: 0.8s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@media (max-width: 1024px) {
  .hero { padding-top: 140px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero__visual { height: 360px; max-width: 480px; margin: 0 auto; }
}

/* =============== AUDIENCE GRID (Quiénes confían) =============== */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Quienes section: bg image with 50% opacity overlay */
#quienes { position: relative; overflow: hidden; isolation: isolate; }
#quienes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../img/bgsec2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Cobertura section: bg image with 50% opacity overlay */
#cobertura { position: relative; overflow: hidden; isolation: isolate; }
#cobertura::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../img/bgsec4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Contacto section: bg image with 50% opacity overlay (same as Quienes) */
#contacto { position: relative; overflow: hidden; isolation: isolate; }
#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../img/bgsec2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Metodologia section: bg image with 50% opacity overlay */
#metodologia { position: relative; overflow: hidden; isolation: isolate; }
#metodologia::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../img/bgsec3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

/* Servicios header: title spans full header width so centering is mathematically exact */
#servicios .section__title { max-width: 100%; }

/* Servicios section: very subtle radial blue gradient overlay (center -> transparent) */
#servicios { position: relative; overflow: hidden; isolation: isolate; }
#servicios::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 70% 50% at 50% 45%, rgba(95, 124, 255, 0.06) 0%, rgba(95, 124, 255, 0.025) 35%, transparent 70%);
  pointer-events: none;
}

/* Cadena section: same subtle radial blue gradient overlay */
#cadena { position: relative; overflow: hidden; isolation: isolate; }
#cadena::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, rgba(95, 124, 255, 0.14) 0%, rgba(95, 124, 255, 0.07) 35%, rgba(95, 124, 255, 0.02) 65%, transparent 85%);
  pointer-events: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* All four cards identical: navy gradient, white text, same height */
.aud-card {
  background: linear-gradient(135deg, #15296a 0%, #1d3a8a 50%, #253fa0 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(21, 41, 106, 0.28), 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Optional background image — layered behind a navy overlay (75%) so the image peeks through subtly */
.aud-card--with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--aud-card-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
  transition: opacity 350ms ease, transform 600ms ease;
  transform: scale(1.02);
}
.aud-card--with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 41, 106, 0.75) 0%, rgba(29, 58, 138, 0.75) 50%, rgba(37, 63, 160, 0.75) 100%);
  z-index: 0;
  pointer-events: none;
}
.aud-card--with-image > * {
  position: relative;
  z-index: 1;
}
.aud-card--with-image:hover::before {
  opacity: 0.60;
  transform: scale(1.05);
}

/* Per-card images. Note: paths are relative to the CSS file location
   (../../ from index.html — but the CSS resolves them relative to itself).
   Using "../img/" works regardless of where the site is hosted, because the
   CSS is at /assets/css/styles.css and images are at /assets/img/. */
.aud-card--img-exporter { --aud-card-img: url("../img/perfilexportador.webp"); }
.aud-card--img-importer { --aud-card-img: url("../img/Empresas%20que%20buscan%20optimizar%20su%20abastecimiento%20internacional.webp"), url("../img/perfilexportador.webp"); }
.aud-card--img-freezone { --aud-card-img: url("../img/Operadores%20de%20zonas%20francas.webp"), url("../img/perfilexportador.webp"); }
.aud-card--img-investor { --aud-card-img: url("../img/Inversionistas.webp"), url("../img/perfilexportador.webp"); }
.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(29, 58, 138, 0.32), 0 4px 12px rgba(15, 23, 42, 0.1);
}

.aud-card__title {
  font-size: 22px;
  letter-spacing: -0.018em;
  line-height: 1.3;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.aud-card__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* List with bullet dots — used on cards 01 (always) */
.aud-card__list {
  list-style: none;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.aud-card__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  align-items: baseline;
}
.aud-card__list li::before {
  content: '·';
  color: #5F7CFF;
  font-weight: 700;
  text-align: center;
}

/* Example line pinned to bottom — used on cards 02/03/04 */
.aud-card__example {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 12px;
  margin: auto 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 720px) {
  .audience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .aud-card__title { font-size: 20px; }
}

/* =============== SERVICES LIST (editorial index) =============== */
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}

.svc {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(63, 81, 196, 0.08);
  position: relative;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.svc:hover {
  transform: translateY(-2px);
}

.svc:hover::before {
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-accent) 100%);
}

.svc::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 36%;
  border-radius: 2px;
  background: transparent;
  transition: background 400ms ease, height 400ms ease;
}

.svc__num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--c-line-2);
  font-variant-numeric: tabular-nums;
  transition: color 400ms ease;
  margin-top: 4px;
  background: linear-gradient(180deg, var(--c-line-2) 0%, rgba(63, 81, 196, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.svc__num--img {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  background: transparent;
  -webkit-text-fill-color: initial;
  font-size: 0;
  letter-spacing: 0;
  box-shadow: 0 8px 24px rgba(63, 81, 196, 0.22), 0 1px 3px rgba(15, 23, 42, 0.08);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms ease;
}
.svc:hover .svc__num--img {
  transform: scale(1.05);
  box-shadow: 0 14px 32px rgba(63, 81, 196, 0.32), 0 2px 4px rgba(15, 23, 42, 0.1);
}
.svc__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.14) 0%, rgba(63, 81, 196, 0.06) 100%);
  border: 1px solid rgba(95, 124, 255, 0.25);
  box-shadow: 0 4px 12px rgba(63, 81, 196, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: background 350ms ease, border-color 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}
.svc__icon {
  width: 22px;
  height: 22px;
  color: var(--c-primary);
  transition: color 300ms ease, transform 300ms ease;
}
.svc:hover .svc__num {
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.svc:hover .svc__icon-wrap {
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.24) 0%, rgba(63, 81, 196, 0.14) 100%);
  border-color: rgba(95, 124, 255, 0.55);
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 10px 22px rgba(63, 81, 196, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.svc:hover .svc__icon { transform: scale(1.06); }

.svc__body { max-width: 640px; }

.svc__title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
  color: var(--c-text);
  line-height: 1.25;
  transition: color 400ms ease;
}
.svc:hover .svc__title { color: var(--c-primary-dk); }

.svc__text {
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 58ch;
}

.svc__tags {
  list-style: none;
  margin: 6px 0 0;
  padding: 0 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  border-left: 1px solid rgba(63, 81, 196, 0.12);
  min-width: 220px;
  max-width: 100%;
  transition: border-color 400ms ease;
}
.svc:hover .svc__tags { border-left-color: rgba(63, 81, 196, 0.25); }
.svc__tags li {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  padding: 5px 12px;
  background: linear-gradient(180deg, var(--c-bg) 0%, rgba(247, 248, 252, 0.6) 100%);
  border: 1px solid rgba(63, 81, 196, 0.1);
  border-radius: 6px;
  line-height: 1.4;
  letter-spacing: 0.005em;
  transition: all 350ms ease;
}
.svc:hover .svc__tags li {
  background: linear-gradient(180deg, rgba(95, 124, 255, 0.08) 0%, rgba(63, 81, 196, 0.04) 100%);
  border-color: rgba(63, 81, 196, 0.2);
  color: var(--c-text);
}

.svc__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  white-space: nowrap;
  padding: 12px 18px;
  align-self: start;
  margin-top: 8px;
  border-radius: 8px;
  background: rgba(95, 124, 255, 0.06);
  border: 1px solid rgba(95, 124, 255, 0.18);
  transition: color 300ms ease, transform 300ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.svc__cta:hover {
  color: white;
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateX(2px);
  box-shadow: 0 8px 18px rgba(63, 81, 196, 0.25);
}

/* Services footer CTA */
.services-foot {
  margin-top: 80px;
  padding: 40px 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #15296a 0%, #1d3a8a 50%, #253fa0 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(21, 41, 106, 0.45);
}
.services-foot::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(95, 124, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.services-foot__text {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.services-foot .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--c-primary);
  border: 1px solid transparent;
}
.services-foot .btn:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1100px) {
  .svc {
    grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  }
  .svc__cta { grid-column: 2 / 4; margin-top: 12px; }
}
@media (max-width: 900px) {
  .svc {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 20px;
    padding: 32px 0;
  }
  .svc__tags {
    grid-column: 2;
    border-left: none;
    border-top: 1px solid var(--c-line);
    padding-left: 0;
    padding-top: 16px;
    margin-top: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 12px;
    max-height: none;
    min-width: 0;
  }
  .svc__cta { grid-column: 2; opacity: 1; transform: none; margin-top: 8px; }
  .svc__num { font-size: 36px; }
  .svc__title { font-size: 20px; }
}
@media (max-width: 560px) {
  .svc { grid-template-columns: 56px minmax(0, 1fr); gap: 16px; }
  .svc__num { font-size: 28px; }
}

/* =============== STATS BAND =============== */
.stats-band {
  background: linear-gradient(135deg, #15296a 0%, #1d3a8a 50%, #253fa0 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  color: #fff;
}
.stat {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

/* =============== CASE CARDS =============== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.case-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(63, 81, 196, 0.08);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.case-card__year {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.case-card__title { font-size: 20px; line-height: 1.3; }
.case-card__text { color: var(--c-muted); font-size: 15px; line-height: 1.55; }
.case-card__meta {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-card__meta > div { margin: 0; }
.case-card__meta dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.case-card__meta dd {
  margin: 0;
  font-size: 13px;
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.4;
}

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

/* =============== TIMELINE =============== */
.timeline {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(63, 81, 196, 0.1) 0%,
    rgba(63, 81, 196, 0.35) 30%,
    rgba(95, 124, 255, 0.5) 50%,
    rgba(63, 81, 196, 0.35) 70%,
    rgba(63, 81, 196, 0.1) 100%);
}
.timeline::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 9px;
  background-image: radial-gradient(circle, rgba(95, 124, 255, 0.25) 1.5px, transparent 1.5px);
  background-size: 12px 9px;
  background-repeat: repeat-x;
  opacity: 0.5;
  pointer-events: none;
}
.timeline__item {
  position: relative;
  padding: 0 14px;
  text-align: center;
  z-index: 1;
}
.timeline__node {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dk) 100%);
  border: 2px solid #ffffff;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: #fff;
  position: relative;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), border-color 400ms ease, background 400ms ease, color 400ms ease, box-shadow 400ms ease;
  box-shadow:
    0 8px 24px -4px rgba(63, 81, 196, 0.45),
    0 2px 6px rgba(63, 81, 196, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.timeline__node svg {
  width: 36px;
  height: 36px;
  color: #ffffff;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline__item:hover .timeline__node svg {
  transform: scale(1.1) rotate(-3deg);
}
.timeline__node::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(95, 124, 255, 0.18);
  transition: transform 400ms ease, opacity 400ms ease, border-color 400ms ease;
  opacity: 0;
  transform: scale(0.7);
}
.timeline__item:hover .timeline__node::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(95, 124, 255, 0.4);
}
.timeline__item:hover .timeline__node {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary) 100%);
  color: #fff;
  border-color: #ffffff;
  transform: scale(1.08);
  box-shadow:
    0 14px 32px -4px rgba(63, 81, 196, 0.55),
    0 4px 10px rgba(63, 81, 196, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.timeline__item--featured .timeline__node {
  background: linear-gradient(135deg, #5f7cff 0%, var(--c-primary) 50%, var(--c-primary-dk) 100%);
  color: #fff;
  border-color: #ffffff;
  box-shadow:
    0 10px 28px -4px rgba(63, 81, 196, 0.5),
    0 3px 8px rgba(63, 81, 196, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 0 8px rgba(95, 124, 255, 0.08);
}
.timeline__item--featured .timeline__node::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(95, 124, 255, 0.35);
}
.timeline__content {
  padding: 24px 8px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(63, 81, 196, 0.08);
  margin: 0 -8px;
  transition: background 400ms ease, border-color 400ms ease, transform 400ms ease, box-shadow 400ms ease;
}
.timeline__item:hover .timeline__content {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border-color: rgba(63, 81, 196, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(63, 81, 196, 0.15);
}
.timeline__content h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
  color: var(--c-text);
  transition: color 400ms ease;
}
.timeline__item:hover .timeline__content h3 {
  color: var(--c-primary-dk);
}
.timeline__content p {
  color: var(--c-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  letter-spacing: -0.005em;
}

/* =============== COVERAGE (dark) =============== */
.coverage__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.coverage__bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.18;
}
.coverage__inner { position: relative; }

.country-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.country-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
  min-height: 76px;
}
.country-cell:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(95, 124, 255, 0.4);
  transform: translateY(-2px);
}
.country-cell__flag {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}
.country-cell__name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  flex: 1;
  line-height: 1.3;
}
.coverage-foot {
  margin: 32px 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

/* Country regions (extended coverage lists) */
.coverage-region {
  margin-top: 56px;
  /* Match the surrounding container width — no max-width override here */
}
.coverage-region__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
}
.coverage-subregion__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 28px 0 14px;
}
.coverage-subregion__title:first-of-type {
  margin-top: 8px;
}
.country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.country-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}
.country-row:hover {
  background: rgba(95, 124, 255, 0.12);
  border-color: rgba(95, 124, 255, 0.45);
  transform: translateX(2px);
}
.country-row__flag {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.country-row__name {
  line-height: 1.2;
}
.country-row__arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  transition: color 250ms ease, transform 250ms ease;
}
.country-row:hover .country-row__arrow {
  color: var(--c-accent, #5F7CFF);
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .country-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .country-list { grid-template-columns: 1fr; }
}

/* =============== SUPPLY CHAIN (TIMELINE) =============== */
.supply-tl {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
}

/* Vertical rail */
.supply-tl::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(95, 124, 255, 0.12) 0%,
    rgba(63, 81, 196, 0.22) 50%,
    rgba(95, 124, 255, 0.12) 100%);
  border-radius: 2px;
}

.supply-tl__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 24px 28px 56px;
  margin: 0;
  position: relative;
  background: transparent;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 350ms ease, border-color 350ms ease, transform 350ms ease, box-shadow 350ms ease;
}

.supply-tl__row:hover {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border-color: rgba(63, 81, 196, 0.12);
  transform: translateX(4px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -8px rgba(63, 81, 196, 0.08);
}

/* Connector dot on the rail */
.supply-tl__row::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(63, 81, 196, 0.3);
  box-shadow: 0 0 0 4px #ffffff, 0 2px 8px rgba(63, 81, 196, 0.15);
  transition: background 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
  z-index: 1;
}
.supply-tl__row:hover::before {
  background: var(--c-primary);
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px rgba(63, 81, 196, 0.18), 0 2px 12px rgba(63, 81, 196, 0.4);
}

/* Icon */
.supply-tl__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.12) 0%, rgba(63, 81, 196, 0.06) 100%);
  border: 1px solid rgba(95, 124, 255, 0.2);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px rgba(63, 81, 196, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 350ms ease, box-shadow 350ms ease, background 350ms ease, border-color 350ms ease;
  flex-shrink: 0;
  margin-top: 0;
}
.supply-tl__row:hover .supply-tl__icon {
  transform: rotate(-3deg) translateY(-2px);
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.22) 0%, rgba(63, 81, 196, 0.12) 100%);
  border-color: rgba(95, 124, 255, 0.45);
  box-shadow: 0 10px 20px -6px rgba(63, 81, 196, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.supply-tl__icon svg { width: 28px; height: 28px; max-width: 28px; max-height: 28px; flex-shrink: 0; }

/* Body */
.supply-tl__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  min-width: 0;
}

/* Visual side panel (right column) */
.supply-tl__visual {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  height: 140px;
  display: grid;
  place-items: center;
  color: var(--c-primary);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.supply-tl__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(95, 124, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  transition: background 350ms ease;
}
.supply-tl__visual svg {
  width: 104px;
  height: 104px;
  position: relative;
  z-index: 1;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  display: block;
  flex-shrink: 0;
}
.supply-tl__row:hover .supply-tl__visual::before {
  background: radial-gradient(circle at 50% 50%, rgba(95, 124, 255, 0.1) 0%, transparent 70%);
}
.supply-tl__row:hover .supply-tl__visual svg {
  transform: scale(1.06);
}
.supply-tl__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}
.supply-tl__text {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 62ch;
}

/* Meta row */
.supply-tl__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid rgba(63, 81, 196, 0.1);
  padding-top: 16px;
}
.supply-tl__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  border-left: 1px solid rgba(63, 81, 196, 0.15);
  min-width: 0;
}
.supply-tl__meta-item:first-child {
  padding-left: 0;
  border-left: none;
}
.supply-tl__meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.supply-tl__meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

/* Footer CTA banner */
.supply-foot {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: linear-gradient(135deg, #15296a 0%, #1d3a8a 50%, #253fa0 100%);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -10px rgba(21, 41, 106, 0.45),
    0 32px 64px -16px rgba(21, 41, 106, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.supply-foot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 100% 50%, rgba(95, 124, 255, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.supply-foot__copy { flex: 1; }
.supply-foot__title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.supply-foot__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}
.supply-foot .btn--primary {
  background: #ffffff;
  color: var(--c-primary);
  flex-shrink: 0;
}
.supply-foot .btn--primary:hover {
  background: #ffffff;
  color: var(--c-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.25);
}
.supply-foot .btn--primary .btn__arrow { color: var(--c-primary); }
.supply-foot .btn--primary:hover .btn__arrow { transform: translateX(3px); }

@media (max-width: 900px) {
  .supply-tl::before { left: 32px; }
  .supply-tl__row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 20px 16px;
  }
  .supply-tl__visual {
    grid-column: 2;
    width: 100%;
    height: 160px;
    margin-top: 8px;
  }
  .supply-tl__visual svg { width: 120px; height: 120px; }
  .supply-tl__row::before { left: 27px; }
  .supply-tl__num span { font-size: 36px; }
  .supply-tl__title { font-size: 18px; }
  .supply-tl__text { font-size: 15px; }
  .supply-tl__meta { flex-direction: column; gap: 12px; }
  .supply-tl__meta-item {
    padding: 0;
    border-left: none;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(63, 81, 196, 0.1);
  }
  .supply-tl__meta-item:last-child { border-bottom: none; padding-bottom: 0; }
  .supply-foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .supply-foot__title { font-size: 19px; }
}

/* =============== CTA BAND =============== */
.cta-band {
  background: linear-gradient(135deg, #15296a 0%, #1d3a8a 50%, #253fa0 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../img/bgsec6.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 70%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-band__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(95, 124, 255, 1);
  margin: 0 0 20px;
  padding: 6px 14px;
  background: rgba(95, 124, 255, 0.12);
  border: 1px solid rgba(95, 124, 255, 0.3);
  border-radius: 999px;
}
.cta-band__title {
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.cta-band__text {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  line-height: 1.55;
  max-width: 600px;
}
.cta-band__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============== FAQ =============== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 300ms ease, box-shadow 300ms ease, background 300ms ease, transform 300ms ease;
}
.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #5f7cff 0%, #3f51c4 100%);
  border-radius: 0 2px 2px 0;
  transform: translateY(-50%);
  transition: height 350ms ease;
  pointer-events: none;
}
.faq__item:hover {
  border-color: rgba(63, 81, 196, 0.2);
  box-shadow: 0 8px 24px -8px rgba(63, 81, 196, 0.1);
  transform: translateY(-1px);
}
.faq__item[open] {
  border-color: rgba(63, 81, 196, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -8px rgba(63, 81, 196, 0.12),
    0 24px 64px -16px rgba(63, 81, 196, 0.06);
}
.faq__item[open]::before { height: 70%; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 200ms ease;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-primary); }
.faq__item[open] summary { color: var(--c-primary); }
.faq__icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.12) 0%, rgba(63, 81, 196, 0.06) 100%);
  border: 1px solid rgba(95, 124, 255, 0.25);
  flex-shrink: 0;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-primary);
  border-radius: 1.5px;
  transition: transform 300ms ease, opacity 300ms ease;
}
.faq__icon::before {
  /* horizontal bar (always visible) */
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  /* vertical bar (hidden when open) */
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: rotate(90deg);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: #ffffff;
}
.faq__item[open] .faq__icon::after {
  /* rotate the vertical bar to overlay the horizontal one -> becomes a single line */
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__item summary:hover .faq__icon {
  background: rgba(95, 124, 255, 0.2);
  border-color: rgba(95, 124, 255, 0.45);
}
.faq__item[open] summary:hover .faq__icon {
  background: var(--c-primary-dk);
}
.faq__answer {
  padding: 0 28px 28px;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid rgba(95, 124, 255, 0.1);
  margin-top: -8px;
  padding-top: 20px;
  max-width: 65ch;
}

/* =============== CONTACT =============== */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  background:
    radial-gradient(ellipse 60% 80% at 30% 0%, rgba(95, 124, 255, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(63, 81, 196, 0.1);
  border-radius: 24px;
  padding: 56px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -8px rgba(63, 81, 196, 0.1),
    0 24px 64px -16px rgba(63, 81, 196, 0.08);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(95, 124, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 100%;
  pointer-events: none;
  opacity: 0.6;
}
.contact__left,
.contact__form {
  position: relative;
  z-index: 1;
}
.contact__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  padding: 7px 12px;
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.12) 0%, rgba(63, 81, 196, 0.06) 100%);
  border: 1px solid rgba(95, 124, 255, 0.25);
  border-radius: 999px;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}
.contact__chip:hover {
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.2) 0%, rgba(63, 81, 196, 0.12) 100%);
  border-color: rgba(95, 124, 255, 0.45);
  transform: translateY(-1px);
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 28px;
  border-top: 1px solid rgba(95, 124, 255, 0.1);
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(95, 124, 255, 0.08);
  transition: padding 200ms ease;
}
.contact__info-item:last-child { border-bottom: none; }
.contact__info-item:hover { padding-left: 4px; }
.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.14) 0%, rgba(63, 81, 196, 0.06) 100%);
  border: 1px solid rgba(95, 124, 255, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--c-primary);
  transition: transform 250ms ease, background 250ms ease;
}
.contact__info-item:hover .contact__info-icon {
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.22) 0%, rgba(63, 81, 196, 0.12) 100%);
  transform: rotate(-4deg) scale(1.05);
}
.contact__info-icon svg { width: 24px; height: 24px; }
.contact__info-icon svg.mail-anim,
.contact__info-icon svg.wa-anim,
.contact__info-icon svg.pin-anim { width: 28px; height: 28px; }

/* ===== Mail envelope animation (Lottie-style, pure CSS) ===== */
.mail-anim {
  overflow: visible;
  /* The SVG is small (20x20). Let it scale up so the animation reads at icon size */
  transform: scale(1.4);
  transform-origin: center;
}
.mail-anim__body {
  fill: rgba(95, 124, 255, 0.08);
  stroke-width: 1.4;
}
.mail-anim__flap {
  fill: rgba(95, 124, 255, 0.12);
  stroke-width: 1.4;
  transform-origin: 12px 6.5px;
  animation: mailFlap 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.mail-anim__letter {
  transform-origin: 12px 12px;
  opacity: 0;
  animation: mailLetter 4.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes mailFlap {
  /* Closed */
  0%, 6%   { transform: rotate(0deg) scaleY(1); }
  /* Opens upward */
  14%      { transform: rotate(0deg) scaleY(1); }
  26%, 42% { transform: rotate(-178deg) scaleY(0.92); }
  /* Closes back */
  54%, 100% { transform: rotate(0deg) scaleY(1); }
}
@keyframes mailLetter {
  /* Hidden inside */
  0%, 18%  { transform: translateY(4px) scale(0.94); opacity: 0; }
  /* Sliding out smoothly */
  30%      { transform: translateY(-1px) scale(1); opacity: 1; }
  40%      { transform: translateY(-3px) scale(1); opacity: 1; }
  /* Holds floating */
  46%      { transform: translateY(-3px) scale(1); opacity: 1; }
  /* Fades back inside */
  54%, 100% { transform: translateY(4px) scale(0.94); opacity: 0; }
}
/* Pause / slow on hover — gives the user time to inspect */
.contact__info-item:hover .mail-anim__flap,
.contact__info-item:hover .mail-anim__letter {
  animation-duration: 6s;
}

/* ===== WhatsApp pulse animation ===== */
.wa-anim {
  overflow: visible;
}
.wa-anim__pulse {
  transform-origin: 12px 12px;
  transform-box: fill-box;
}
.wa-anim__pulse--1 {
  animation: waPulse 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.wa-anim__pulse--2 {
  animation: waPulse 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.3s;
}
.wa-anim__dot {
  transform-origin: 18px 6px;
  transform-box: fill-box;
  animation: waDot 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes waPulse {
  0%        { transform: scale(0.6); opacity: 0.6; }
  60%       { opacity: 0; }
  100%      { transform: scale(1.6); opacity: 0; }
}
@keyframes waDot {
  0%, 70%   { transform: scale(1); opacity: 1; }
  80%       { transform: scale(0.6); opacity: 0.4; }
  90%       { transform: scale(1.4); opacity: 1; }
  100%      { transform: scale(1); opacity: 1; }
}

/* ===== Pin (location) animation ===== */
.pin-anim {
  overflow: visible;
}
.pin-anim__pulse {
  transform-origin: 12px 10px;
  transform-box: fill-box;
}
.pin-anim__pulse--1 {
  animation: pinPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pin-anim__pulse--2 {
  animation: pinPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.5s;
}
.pin-anim__dot {
  transform-origin: 12px 10px;
  transform-box: fill-box;
  animation: pinBreath 3s ease-in-out infinite;
}
.pin-anim__spark {
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
}
.pin-anim__spark--1 {
  animation: pinSpark 3s ease-out infinite;
}
.pin-anim__spark--2 {
  animation: pinSpark 3s ease-out infinite;
  animation-delay: 1.5s;
}
@keyframes pinPulse {
  0%        { transform: scale(0.7); opacity: 0.45; }
  70%       { opacity: 0; }
  100%      { transform: scale(2.6); opacity: 0; }
}
@keyframes pinBreath {
  0%, 100%  { transform: scale(1); }
  50%       { transform: scale(0.78); }
}
@keyframes pinSpark {
  0%, 60%   { opacity: 0; transform: scale(0.6) translate(0, 0); }
  72%       { opacity: 0.85; transform: scale(1) translate(0, 0); }
  85%       { opacity: 0; transform: scale(1.15) translate(0, -1.2px); }
  100%      { opacity: 0; transform: scale(0.6) translate(0, 0); }
}

/* Hover: slow down for inspection */
.contact__info-item:hover .wa-anim__pulse,
.contact__info-item:hover .wa-anim__dot,
.contact__info-item:hover .pin-anim__pulse,
.contact__info-item:hover .pin-anim__dot,
.contact__info-item:hover .pin-anim__spark {
  animation-duration: 5s;
}
.contact__info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.contact__info-item a {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  transition: color 200ms ease;
}
.contact__info-item a:hover { color: var(--c-primary); }
.contact__info-item .contact__info-text {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(63, 81, 196, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px -4px rgba(63, 81, 196, 0.06);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fafbff;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
  outline: none;
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(95, 124, 255, 0.35);
  background: #ffffff;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(63, 81, 196, 0.12);
}
.contact__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.contact__submit svg { transition: transform 250ms ease; }
.contact__submit:hover svg { transform: translateX(3px); }
.form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
  text-align: center;
  margin-top: -2px;
}

/* Honeypot — hidden from real users, visible to bots */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Submit button states */
.contact__submit .contact__submit-loading {
  display: none;
  align-items: center;
  gap: 8px;
}
.contact__submit.is-loading .contact__submit-label,
.contact__submit.is-success .contact__submit-label,
.contact__submit.is-error .contact__submit-label {
  display: none;
}
.contact__submit.is-loading .contact__submit-loading {
  display: inline-flex;
}
.contact__submit.is-loading { opacity: 0.85; cursor: progress; }
.contact__submit.is-loading svg { transform: none !important; }

.contact__submit.is-success { background: linear-gradient(135deg, #16a34a, #15803d); }
.contact__submit.is-error   { background: linear-gradient(135deg, #dc2626, #b91c1c); }

.contact__submit:disabled { cursor: not-allowed; }

/* Spinner */
.spin { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Status message */
.contact__status {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 10px;
  min-height: 0;
  display: none;
  border: 1px solid transparent;
}
.contact__status:not(:empty) { display: block; }
.contact__status--success {
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
  border-color: rgba(22, 163, 74, 0.25);
}
.contact__status--error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  border-color: rgba(220, 38, 38, 0.25);
}
.contact__status--info {
  background: rgba(63, 81, 196, 0.08);
  color: #1e3a8a;
  border-color: rgba(63, 81, 196, 0.25);
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; padding: 48px; gap: 48px; }
}
@media (max-width: 600px) {
  .contact { padding: 32px 24px; }
  .contact__form { grid-template-columns: 1fr; }
}

/* =============== FOOTER =============== */
.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0B1029;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 24px;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../img/footer.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.footer__logo img { display: block; height: auto; }
.footer__pitch { font-size: 15px; line-height: 1.6; max-width: 320px; }
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a { font-size: 15px; color: rgba(255,255,255,0.7); transition: color 200ms ease; }
.footer__col a:hover { color: #fff; }

/* Contact list with icons */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-item {
  display: block;
}
.footer__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.45;
  padding: 6px 0;
  border-radius: 8px;
  transition: color 220ms ease, transform 220ms ease;
}
.footer__contact-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.footer__contact-link:hover .footer__contact-icon {
  background: linear-gradient(135deg, rgba(95, 124, 255, 0.28) 0%, rgba(63, 81, 196, 0.18) 100%);
  border-color: rgba(95, 124, 255, 0.5);
  color: #ffffff;
  transform: scale(1.06);
}
.footer__contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(95, 124, 255, 0.9);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.footer__contact-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}
.footer__contact-text {
  display: block;
  padding-top: 5px;
  word-break: break-word;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =============== REVEAL ANIMATIONS =============== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger > * {
  opacity: 1;
  transform: none;
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}
.js-reveal .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.js-reveal .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .float-card, .world__node, .world__route { animation: none; }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 88px 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat { border-right: none; }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .timeline::before { display: none; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .section__header { margin-bottom: 48px; }
  .section__header--split { grid-template-columns: 1fr; gap: 24px; }
  .section__header--editorial { margin-bottom: 48px; }
  .country-grid { grid-template-columns: 1fr; }
}

/* Focus ring */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}