/*
Theme Name: VEO Landing Theme
Theme URI: https://example.com/veo-landing-theme
Author: Agencia Profesional
Author URI: https://example.com
Description: Tema WordPress institucional para VEO con landing React, Tailwind, diseño bento y mapa interactivo de Panamá.
Version: 1.3.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veo-landing-theme
Tags: one-column, custom-menu, accessibility-ready, responsive-layout
*/

:root {
  --veo-navy: #001a49;
  --veo-blue: #075fdb;
  --veo-blue-2: #0a369d;
  --veo-sky: #5aa7ff;
  --veo-ice: #eef5ff;
  --veo-orange: #ff7a00;
  --veo-green: #0da7a1;
  --veo-purple: #6b3fd1;
  --veo-text: #071b4d;
  --veo-muted: #5b6f93;
  --veo-line: #dce8f8;
  --veo-bg: #f3f7fd;
  --veo-radius: 14px;
  --veo-radius-lg: 18px;
  --veo-shadow: 0 22px 55px rgba(0, 35, 92, 0.12);
  --veo-soft-shadow: 0 16px 34px rgba(0, 35, 92, 0.08);
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--veo-text);
  background: #fff;
  font-family: var(--font-main);
  line-height: 1.45;
  text-rendering: geometricPrecision;
}

body.admin-bar .site-header {
  top: 32px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

mark {
  background: transparent;
  color: var(--veo-orange);
}

.veo-wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 26, 73, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  width: 90%;
  max-width: 1200px;
  min-height: 54px;
  margin: 0 auto;
}

.site-header__brand,
.site-header__institution {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header__brand-mark {
  position: relative;
  color: var(--veo-blue);
  font-size: 1.86rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.9;
}

.site-header__brand-mark::after {
  content: "";
  position: absolute;
  right: -0.17em;
  top: 0.19em;
  width: 0.5em;
  height: 0.5em;
  border: 0.12em solid var(--veo-orange);
  border-left-color: transparent;
  border-radius: 999px;
}

.site-header__brand-copy,
.site-header__institution {
  color: var(--veo-blue-2);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 1.75vw, 1.8rem);
  color: var(--veo-navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-header__nav a {
  position: relative;
  padding: 0.25rem 0;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--veo-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__seal {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(0, 26, 73, 0.2);
  border-radius: 999px;
  color: var(--veo-blue);
  font-size: 0.62rem;
  font-weight: 900;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

.menu-toggle__box {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}

.menu-toggle__inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.menu-toggle__inner,
.menu-toggle__inner::before,
.menu-toggle__inner::after {
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: var(--veo-navy);
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.menu-toggle__inner::before,
.menu-toggle__inner::after {
  content: "";
  display: block;
}

.menu-toggle__inner::before {
  top: -7px;
}

.menu-toggle__inner::after {
  bottom: -7px;
}

.menu-toggle.is-active .menu-toggle__inner {
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__inner::before {
  top: 0;
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.site-footer {
  background: #000a1d;
  color: #fff;
  padding: 4rem 0 2rem;
  font-size: 0.85rem;
}

.site-footer__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-contact h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 800;
  color: #fff;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.footer-brand-social {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand-mark {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.footer-brand-copy {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  line-height: 1.2;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  color: var(--veo-navy, #001a49);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

.veo-noscript {
  width: min(760px, calc(100% - 48px));
  margin: 4rem auto;
  padding: 2rem;
  border-radius: var(--veo-radius-lg);
  background: #fff;
  box-shadow: var(--veo-shadow);
}

.veo-overline,
.section-title__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--veo-blue);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1.1;
  text-transform: uppercase;
}

.veo-overline {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.veo-overline--light,
.section-title--light .section-title__eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.veo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0 1.28rem;
  border: 1px solid var(--veo-blue);
  border-radius: 7px;
  background: var(--veo-blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 95, 219, 0.25);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.veo-btn:hover,
.veo-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--veo-navy);
  border-color: var(--veo-navy);
  box-shadow: 0 16px 32px rgba(0, 26, 73, 0.3), 0 0 0 4px rgba(7, 95, 219, 0.1);
}

.veo-btn--white {
  border-color: rgba(7, 95, 219, 0.12);
  background: #fff;
  color: var(--veo-blue);
  box-shadow: 0 12px 26px rgba(0, 26, 73, 0.14);
}

.veo-btn--outline {
  margin-top: 1.6rem;
  border-color: rgba(7, 95, 219, 0.25);
  background: #fff;
  color: var(--veo-blue);
  box-shadow: none;
}

.veo-arrow {
  font-size: 1.05rem;
  line-height: 1;
}

.veo-icon {
  width: 1em;
  height: 1em;
  font-size: 1em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.veo-hero {
  position: relative;
  isolation: isolate;
  min-height: 400px;
  height: 70vh;
  max-height: 640px;
  padding: 58px 0 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 26, 73, 0.97) 0%, rgba(0, 26, 73, 0.9) 30%, rgba(0, 26, 73, 0.35) 58%, rgba(0, 26, 73, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 26, 73, 0.06), rgba(0, 26, 73, 0.28)),
    url("https://placehold.co/1920x1080/001A49/FFFFFF?text=Hero+Imagen") center / cover no-repeat;
}

.veo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 18% 22%, rgba(7, 95, 219, 0.36), transparent 20rem);
}

.veo-hero__copy {
  max-width: 560px;
}

.veo-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.veo-hero h1 span {
  color: var(--veo-orange);
  background: linear-gradient(135deg, var(--veo-orange), #ff9100, var(--veo-orange));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.veo-hero__lead {
  max-width: 540px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.veo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.veo-hero__ribbon-container {
  position: relative;
}

.stats-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  background: #ffffff;
  clip-path: polygon(3.5rem 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 3rem;
  padding-right: max(1.5rem, calc((100vw - 1120px) / 2));
}

.stats-ribbon__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 80px;
  padding: 0.85rem 1.6rem;
  border-right: 1px solid var(--veo-line);
}

.stats-ribbon__item:last-child {
  border-right: none;
}

.stats-ribbon__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--veo-blue);
  font-weight: 900;
}

.stats-ribbon__icon .veo-icon {
  width: 1.05rem;
  height: 1.05rem;
  font-size: 1.05rem;
}

.stats-ribbon strong,
.stats-ribbon small {
  display: block;
}

.stats-ribbon strong {
  color: var(--veo-navy);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}

.stats-ribbon small {
  margin-top: 0.18rem;
  color: var(--veo-muted);
  font-size: 0.66rem;
  font-weight: 800;
}

.veo-section {
  padding: 86px 0;
}

.section-title h2 {
  margin: 0;
  color: var(--veo-navy);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-title--light h2 {
  color: #fff;
}

.section-title__copy {
  max-width: 340px;
  margin: 1.1rem 0 0;
  color: var(--veo-muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
}

.section-title--light .section-title__copy {
  color: rgba(255, 255, 255, 0.86);
}

.promise-section {
  padding-top: 88px;
  background: #fff;
}

.promise-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 3.7rem;
  align-items: center;
}

.promise-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.promise-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.promise-list__item p {
  margin: 0;
  color: var(--veo-navy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.icon-dot {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.icon-dot .veo-icon {
  width: 1.08rem;
  height: 1.08rem;
  font-size: 1.08rem;
}

.icon-dot--blue {
  background: var(--veo-blue);
}

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

.icon-dot--orange {
  background: var(--veo-orange);
}

.icon-dot--purple {
  background: var(--veo-purple);
}

.promise-main {
  display: grid;
  gap: 2rem;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.process-line__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-line__step::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 34px);
  width: calc(100% - 34px);
  border-top: 3px dotted rgba(7, 95, 219, 0.55);
}

.process-line__step:last-child::after {
  display: none;
}

.process-line__orb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  color: var(--veo-blue);
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(0, 35, 92, 0.12);
}

.process-line__orb .veo-icon {
  width: 1.55rem;
  height: 1.55rem;
  font-size: 1.55rem;
}

.process-line small {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  margin: -0.55rem auto 0;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--veo-blue-2);
  font-size: 0.64rem;
  font-weight: 900;
}

.process-line p {
  margin: 0.42rem 0 0;
  color: var(--veo-navy);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.18;
}

.promise-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 160px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--veo-navy);
  box-shadow: var(--veo-soft-shadow);
}

.promise-banner__image {
  min-height: 160px;
  background-position: center;
  background-size: cover;
}

.promise-banner__copy {
  display: flex;
  align-items: center;
  padding: 1.8rem;
  background: linear-gradient(90deg, rgba(0, 26, 73, 0.82), var(--veo-navy));
}

.promise-banner h3 {
  margin: 0;
  color: #fff;
  font-size: 1.68rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.promise-banner h3 span {
  color: var(--veo-orange);
}

.delays-section {
  padding: 74px 0;
  background: var(--veo-navy);
  color: #fff;
}

.delays-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.delays-layout mark {
  color: var(--veo-orange);
}

.delays-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.delay-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  color: var(--veo-navy);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.delay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 50px rgba(0, 26, 73, 0.25);
}

.delay-card__image {
  height: 145px;
  background-position: center;
  background-size: cover;
}

.delay-card__icon {
  position: absolute;
  top: 118px;
  left: 1.35rem;
  box-shadow: 0 10px 20px rgba(0, 26, 73, 0.18);
}

.delay-card h3 {
  margin: 2.25rem 1.35rem 0;
  color: var(--veo-navy);
  font-size: 1rem;
  font-weight: 900;
}

.delay-card p {
  margin: 0.45rem 1.35rem 1.3rem;
  color: var(--veo-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.solution-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    linear-gradient(106deg, #fff 0%, #fff 32%, rgba(255, 255, 255, 0.85) 37%, rgba(0, 26, 73, 0.95) 38%, #001a49 100%);
}

.solution-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.solution-card {
  position: relative;
  z-index: 2;
  padding: 1.8rem;
  border: 1px solid var(--veo-line);
  border-radius: 3px;
  background: #fff;
  box-shadow: var(--veo-shadow);
}

.solution-card h2 {
  margin: 0;
  color: var(--veo-navy);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.veo-logo-inline {
  display: inline-flex;
  align-items: center;
  color: var(--veo-blue);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.veo-logo-inline__o {
  display: inline-grid;
  width: 0.78em;
  height: 0.78em;
  margin-left: 0.05em;
  place-items: center;
  border: 0.13em solid var(--veo-orange);
  border-left-color: transparent;
  border-radius: 999px;
}

.veo-logo-inline__o::after {
  content: "";
  width: 0.18em;
  height: 0.18em;
  border-radius: 999px;
  background: var(--veo-blue);
}

.solution-card p {
  margin: 1rem 0 0;
  color: var(--veo-navy);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.58;
}

.solution-badge {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.9rem;
  border: 1px solid var(--veo-line);
  border-radius: 5px;
  background: #fff;
}

.solution-badge > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--veo-blue);
  border-radius: 999px;
  color: var(--veo-blue);
  font-weight: 900;
}

.solution-badge > span .veo-icon {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}

.solution-badge strong,
.solution-badge small {
  display: block;
}

.solution-badge strong {
  color: var(--veo-navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.solution-badge small {
  margin-top: 0.16rem;
  color: var(--veo-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.solution-map {
  min-height: 275px;
  border-radius: 0;
  background-position: center;
  background-size: cover;
  box-shadow: inset 60px 0 70px rgba(0, 26, 73, 0.32);
}

.map-section {
  padding: 74px 0;
  background: #eef4fb;
}

.map-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 220px;
  gap: 1.7rem;
  align-items: center;
}

.map-layout .section-title__copy {
  max-width: 235px;
}

.map-card {
  padding: 0;
}

.map-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.45rem 0.85rem;
}

.map-card__header > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--veo-blue);
  color: #fff;
}

.map-card__header strong,
.map-card__header small {
  display: block;
}

.map-card__header strong {
  color: var(--veo-navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.map-card__header small {
  margin-top: 0.1rem;
  color: var(--veo-muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.map-visual {
  position: relative;
  overflow: visible;
  min-height: 245px;
}

.panama-svg {
  width: 100%;
  min-height: 245px;
}

.map-province {
  stroke: #fff;
  stroke-width: 5;
  stroke-linejoin: round;
  cursor: pointer;
  filter: drop-shadow(0 8px 12px rgba(0, 35, 92, 0.12));
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 180ms ease, stroke 180ms ease, filter 180ms ease, transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.map-province--range-1 {
  fill: #b9ddff;
}

.map-province--range-2 {
  fill: #89c3fb;
}

.map-province--range-3 {
  fill: #3f8ce1;
}

.map-province--range-4 {
  fill: #1d6fcb;
}

.map-province--range-5 {
  fill: #075fdb;
}

.map-province:hover,
.map-province:focus-visible,
.map-province.is-active {
  fill: var(--veo-orange);
  stroke: #fff;
  outline: none;
  filter: drop-shadow(0 18px 20px rgba(255, 122, 0, 0.28));
  transform: translateY(-7px) scale(1.035);
}

.map-shadow-path {
  fill: none;
  stroke: rgba(7, 95, 219, 0.12);
  stroke-width: 20;
  stroke-linecap: round;
}

.map-islands circle {
  fill: #3f8ce1;
  stroke: #fff;
  stroke-width: 3;
}

.project-bubble {
  pointer-events: none;
  transition: transform 180ms ease;
}

.project-bubble circle {
  fill: #fff;
  stroke: rgba(7, 95, 219, 0.18);
  stroke-width: 4;
  filter: drop-shadow(0 10px 14px rgba(0, 35, 92, 0.18));
}

.project-bubble text {
  fill: var(--veo-blue-2);
  font-size: 14px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: central;
}

.project-bubble.is-active {
  transform: translateY(-9px) scale(1.08);
}

.project-bubble.is-active circle {
  fill: var(--veo-orange);
  stroke: #fff;
}

.project-bubble.is-active text {
  fill: #fff;
}

.map-floating-card {
  position: absolute;
  top: clamp(18px, var(--y), calc(100% - 70px));
  left: clamp(18px, var(--x), calc(100% - 218px));
  z-index: 3;
  width: 210px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(7, 95, 219, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 36px rgba(0, 26, 73, 0.16);
  backdrop-filter: blur(12px);
  transform: translate(12px, -38%);
  transition: top 160ms ease, left 160ms ease;
}

.map-floating-card strong,
.map-floating-card span,
.map-floating-card small {
  display: block;
}

.map-floating-card strong {
  color: var(--veo-navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.map-floating-card span {
  margin-top: 0.15rem;
  color: var(--veo-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.map-floating-card small {
  margin-top: 0.22rem;
  color: #7a8fb0;
  font-size: 0.66rem;
  font-weight: 750;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--veo-navy);
}

.map-legend__swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-style: normal;
}

.map-legend__swatch::before {
  content: "";
  width: 24px;
  height: 8px;
  border-radius: 999px;
  background: #b9ddff;
}

.map-legend__swatch--1::before {
  background: #8dc3ff;
}

.map-legend__swatch--2::before {
  background: #5fa8f6;
}

.map-legend__swatch--3::before {
  background: #2f7ed8;
}

.map-legend__swatch--4::before {
  background: #075fdb;
}

.map-metrics {
  display: grid;
  gap: 0.75rem;
}

.map-metric {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  padding: 1rem;
  background: #fff;
  box-shadow: var(--veo-soft-shadow);
}

.map-metric span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--veo-blue);
  color: #fff;
  font-weight: 900;
}

.map-metric span:first-child .veo-icon {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}

.map-metric strong,
.map-metric small {
  display: block;
}

.map-metric strong {
  color: var(--veo-navy);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.15;
}

.map-metric small {
  margin-top: 0.14rem;
  color: var(--veo-muted);
  font-size: 0.66rem;
  font-weight: 800;
}
.comparison-section {
  padding: 72px 0;
  background: #fff;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.comparison-panel {
  padding: 1.2rem 1.45rem;
  border: 1px solid var(--veo-line);
  background: #fff;
  box-shadow: var(--veo-soft-shadow);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: #edf1f7;
  color: var(--veo-muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-label--now {
  margin-top: 1.5rem;
  background: var(--veo-blue);
  color: #fff;
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.62rem;
}

.comparison-row--active {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.comparison-node {
  display: grid;
  min-height: 68px;
  place-items: center;
  gap: 0.35rem;
  padding: 0.62rem;
  border: 1px solid var(--veo-line);
  border-radius: 8px;
  background: #fff;
  color: var(--veo-muted);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}

.comparison-node:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 26, 73, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.comparison-row--active .comparison-node {
  color: var(--veo-navy);
}

.comparison-node span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--veo-blue);
  font-weight: 900;
}

.comparison-node span .veo-icon {
  width: 0.96rem;
  height: 0.96rem;
  font-size: 0.96rem;
}

.comparison-node p {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.18;
}

.comparison-panel > p {
  margin: 0.85rem 0 0;
  color: var(--veo-muted);
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
}

.comparison-panel__strong {
  color: var(--veo-navy) !important;
}

.trust-section {
  padding: 72px 0;
  background: var(--veo-bg);
}

.trust-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.trust-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border: 1px solid var(--veo-line);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--veo-soft-shadow);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 50px rgba(0, 26, 73, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.trust-card__image {
  height: 110px;
  background-position: center;
  background-size: cover;
}

.trust-card__icon {
  position: absolute;
  top: 82px;
  left: 1.2rem;
  box-shadow: 0 12px 24px rgba(0, 26, 73, 0.15);
}

.trust-card h3 {
  margin: 2.45rem 1.15rem 0;
  color: var(--veo-navy);
  font-size: 0.96rem;
  font-weight: 900;
}

.trust-card p {
  margin: 0.42rem 1.15rem 1.15rem;
  color: var(--veo-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.impact-section {
  padding: 72px 0 84px;
  background: #fff;
}

.impact-gallery-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.impact-title h2 {
  margin: 0;
  color: var(--veo-navy);
  font-size: 2.04rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.impact-title h2 span {
  color: var(--veo-orange);
}

.impact-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-card {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--veo-soft-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 26, 73, 0.2);
  z-index: 2;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 26, 73, 0.83) 100%);
}

.gallery-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.8rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.impact-metrics {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 0;
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--veo-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--veo-soft-shadow);
}

.impact-metrics__intro,
.impact-metric {
  padding: 1.45rem 1.6rem;
}

.impact-metric {
  border-left: 1px solid var(--veo-line);
  text-align: center;
}

.impact-metrics__intro {
  background: #f6faff;
}

.impact-metrics__intro h3 {
  margin: 0;
  color: var(--veo-navy);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.08;
}

.impact-metrics__intro p {
  margin: 0.7rem 0 0;
  color: var(--veo-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.impact-metric strong,
.impact-metric span,
.impact-metric small {
  display: block;
}

.impact-metric strong {
  color: var(--veo-blue);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.impact-metric span {
  margin-top: 0.62rem;
  color: var(--veo-navy);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
}

.impact-metric small {
  margin-top: 0.52rem;
  color: #8aa0bf;
  font-size: 0.58rem;
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 74% 52%, rgba(255, 122, 0, 0.22), transparent 17rem),
    radial-gradient(circle at 32% 42%, rgba(7, 95, 219, 0.38), transparent 20rem),
    linear-gradient(180deg, #001a49 0%, #000a1d 100%);
  color: #fff;
  text-align: center;
}

.final-cta::before {
  display: none;
}

.final-cta .veo-wrap {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.final-cta h2 span {
  color: var(--veo-orange);
}

.final-cta p {
  max-width: 560px;
  margin: 1rem auto 1.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
  }

  .site-header__brand {
    position: relative;
    z-index: 1001;
  }

  .site-header__institution {
    display: none;
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.25rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }


  .veo-hero__grid,
  .promise-layout,
  .delays-layout,
  .solution-layout,
  .map-layout,
  .comparison-layout,
  .trust-layout,
  .impact-gallery-layout {
    grid-template-columns: 1fr;
  }

  .hero-status {
    max-width: 420px;
  }

  .stats-ribbon {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -2rem;
    transform: none;
  }

  .map-layout {
    align-items: stretch;
  }

  .map-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 0;
  }
}

@media (max-width: 760px) {
  .veo-wrap,
  .site-header__inner,
  .site-footer__inner {
    width: 90%;
  }

  .site-header__institution {
    display: none;
  }

  .veo-hero {
    min-height: auto;
    height: auto;
    padding: 44px 0 56px;
    background-position: 62% center;
  }

  .veo-hero h1 {
    font-size: 1.85rem;
    line-height: 1.05;
  }

  .veo-hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }
  
  .veo-hero__actions .veo-btn {
    text-align: center;
    justify-content: center;
  }

  .hero-status,
  .stats-ribbon {
    display: none;
  }

  .veo-section,
  .delays-section,
  .map-section,
  .comparison-section,
  .trust-section,
  .impact-section {
    padding: 48px 0;
  }

  .section-title h2 {
    font-size: 1.85rem;
  }

  .trust-layout,
  .comparison-layout,
  .impact-gallery-layout,
  .map-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-line,
  .delays-cards,
  .trust-cards,
  .impact-gallery,
  .impact-metrics,
  .map-metrics,
  .comparison-row,
  .comparison-row--active {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 0;
    margin-top: 2rem;
  }

  .process-line__step {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .process-line__step::after {
    display: none;
  }

  .promise-banner {
    grid-template-columns: 1fr;
  }

  .promise-banner__copy {
    min-height: 130px;
  }

  .solution-section {
    background: linear-gradient(180deg, #fff 0%, #fff 34%, #001a49 34%, #001a49 100%);
  }

  .solution-map {
    min-height: 220px;
  }

  .map-floating-card {
    display: none;
  }

  .impact-metric {
    border-left: 0;
    border-top: 1px solid var(--veo-line);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-footer__top {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-brand-social {
    align-items: flex-start;
    text-align: left;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-brand-copy {
    border-left: none;
    padding-left: 0;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Static Pages Styles (Legal, Terms, FAQ) */
.veo-inner-page {
  padding: 6rem 0 8rem;
  background-color: #fff;
  min-height: 60vh;
}

.veo-inner-page__inner {
  max-width: 800px;
  margin: 0 auto;
}

.veo-inner-page__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--veo-navy, #001a49);
  margin-bottom: 3rem;
}

.veo-inner-page__title strong {
  font-weight: 900;
}

.veo-inner-page__content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
  margin: 2.5rem 0 1rem;
}

.veo-inner-page__content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.veo-inner-page__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Accordion */
.veo-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.veo-accordion {
  border-bottom: 1px solid #eaeaea;
}

.veo-accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--veo-navy, #001a49);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.veo-accordion.is-open .veo-accordion__btn {
  color: var(--veo-blue, #075fdb);
}

.veo-accordion__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--veo-navy, #001a49);
}

.veo-accordion.is-open .veo-accordion__icon {
  color: var(--veo-blue, #075fdb);
}

.veo-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.veo-accordion__inner {
  padding-bottom: 2rem;
}

.veo-faq-question {
  font-size: 1.05rem;
  font-weight: 800;
  color: #333;
  margin: 1.5rem 0 0.75rem;
}

.veo-accordion__inner p,
.veo-accordion__inner ul,
.veo-accordion__inner ol {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.veo-accordion__inner ul,
.veo-accordion__inner ol {
  padding-left: 1.5rem;
}

.veo-accordion__inner li {
  margin-bottom: 0.5rem;
}
