/* ============================================================
   VIRTUA ASESORES — Main Stylesheet
   Fonts: DM Serif Display (headings) · DM Sans (body)
   Nav: Dark Navy #152040 · SEO · A11y · Responsive
   ============================================================ */

/* 1. Design Tokens */
:root {
  --c-navy:        #152040;
  --c-navy-mid:    #1d3160;
  --c-navy-light:  #253f72;
  --c-navy-card:   rgba(255,255,255,0.07);
  --c-gold:        #8b7535;
  --c-gold-light:  #a8923f;
  --c-gold-hover:  #7a6428;
  --c-white:       #ffffff;
  --c-bg-light:    #f4f7fb;
  --c-bg-section:  #f8fafc;
  --c-text-dark:   #152040;
  --c-text-mid:    #374151;
  --c-text-muted:  #6b7280;
  --c-border:      #e5e9ef;
  --c-success:     #059669;

  --font-head: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.125rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 14px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --shadow-xl:  0 20px 48px rgba(0,0,0,.16), 0 8px 20px rgba(0,0,0,.10);

  --tr-fast: 150ms ease;
  --tr-base: 260ms ease;
  --tr-slow: 420ms ease;

  --container-max: 1180px;
  --container-px:  1.5rem;
  --nav-h: 72px;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-text-dark);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 400; }
h5,h6 { font-family: var(--font-body); font-weight: 700; }
p { line-height: 1.75; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 1rem;
  background: var(--c-navy); color: var(--c-white);
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  z-index: 9999; font-size: .875rem; font-weight: 600;
}
.skip-link:focus { left: 1rem; }

/* 3. Layout */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section     { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }

/* ============================================================
   NAVIGATION — Dark Navy
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.nav.scrolled {
  background: var(--c-navy);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--tr-fast);
}
.nav__logo:hover { opacity: .85; }
.nav__logo-img { height: 34px; width: auto; display: block; }

/* Desktop menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: .125rem;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem .9rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: var(--radius-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
}
.nav__link:hover       { color: #fff; background: rgba(255,255,255,.1); }
.nav__link.active      { color: #fff; }
.nav__link .chevron {
  width: 12px; height: 12px;
  transition: transform var(--tr-base);
  flex-shrink: 0;
}
.nav__item:hover .chevron,
.nav__item.open  .chevron { transform: rotate(180deg); }

/* Gold CTA in nav */
.nav__link--cta {
  background: var(--c-gold);
  color: var(--c-white) !important;
  padding: .5rem 1.25rem;
  font-weight: 600;
  gap: .5rem;
  margin-left: .5rem;
  border-radius: var(--radius-sm);
}
.nav__link--cta:hover {
  background: var(--c-gold-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,117,53,.35);
}
.nav__link--cta .arrow-icon { transition: transform var(--tr-fast); }
.nav__link--cta:hover .arrow-icon { transform: translate(2px,-2px); }

/* Dropdown — stays white for legibility over content */
.nav__dropdown {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(.96);
  transform-origin: top center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 280px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr-base), transform var(--tr-base), visibility var(--tr-base);
}
.nav__item:hover .nav__dropdown,
.nav__item.open  .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav__dd-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--tr-fast), color var(--tr-fast);
  color: var(--c-text-mid); font-size: .9rem;
}
.nav__dd-item:hover { background: var(--c-bg-light); color: var(--c-navy); }
.nav__dd-icon {
  width: 34px; height: 34px;
  background: var(--c-bg-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--c-navy);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.nav__dd-item:hover .nav__dd-icon { background: var(--c-navy); color: #fff; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; border: none; background: none;
  border-radius: var(--radius-sm);
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8125rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600; font-size: .9375rem;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--tr-base), border-color var(--tr-base),
              color var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn svg { transition: transform var(--tr-base); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, #b09040 0%, #8b7535 60%, #7a6428 100%);
  color: var(--c-white); border-color: rgba(139,117,53,.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #c0a848 0%, #9a8240 60%, #8a7030 100%);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,117,53,.45);
}
.btn--outline-white {
  background: transparent; color: var(--c-white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8);
}
.btn--light {
  background: linear-gradient(135deg, #c0a848 0%, #8b7535 100%);
  color: var(--c-white); border-color: rgba(168,146,63,.4);
}
.btn--light:hover {
  background: linear-gradient(135deg, #caa850 0%, #9a8240 100%);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,117,53,.45);
}
.btn--gold {
  background: var(--c-gold); color: var(--c-white); border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,117,53,.35);
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   LABELS / PILLS
   ============================================================ */
.label {
  display: inline-flex; align-items: center;
  padding: .3125rem .9375rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .775rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 1.125rem;
}
.label--white {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
}
.label--dark {
  background: #e8edf5; border: 1px solid #d0d9e8; color: var(--c-navy);
}
.label--gold {
  background: rgba(139,117,53,.12); border: 1px solid rgba(139,117,53,.25);
  color: var(--c-gold);
}

/* ============================================================
   HOME HERO — Background Image + Ken Burns + Navy Overlay
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 5rem) 0 7rem;
  background: var(--c-navy);
}

/* Background image layer with Ken Burns */
.hero__bg-picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
  display: block;
  filter: grayscale(100%);
  opacity: .38;
}

/* Navy overlay — dense left (text readable) → transparent right (image visible) */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(21,32,64,.90) 0%,
    rgba(21,32,64,.70) 32%,
    rgba(21,32,64,.18) 60%,
    rgba(21,32,64,.38) 100%
  );
  z-index: 1;
}

/* Subtle geometric accent */
.hero__geo {
  position: absolute;
  bottom: -5%; right: -3%;
  width: 48%;
  height: 110%;
  border-left: 1px solid rgba(255,255,255,.04);
  transform: skewX(-14deg) translateX(18%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { color: var(--c-white); }

.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .8rem; color: rgba(255,255,255,.88);
  margin-bottom: 1.5rem;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  background: #e2c870; border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}
.hero__title em { font-style: italic; color: rgba(255,255,255,.72); }

.hero__description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 490px;
  margin-bottom: 2.25rem;
}
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Stat cards — FREE-FORM overlapping composition (matches design) */
.hero__stats {
  position: relative;
  height: 520px;
  width: 100%;
}

/* Floating mini badge — top right */
.stat-badge {
  position: absolute;
  top: 0; right: 0;
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  color: var(--c-white);
  font-size: .8rem; line-height: 1.3;
  width: fit-content;
  z-index: 5;
  animation: fadeInUp .55s ease both;
  animation-delay: .5s;
  white-space: nowrap;
}
.stat-badge__icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.14); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: rgba(255,255,255,.9);
}
.stat-badge strong { display: block; font-weight: 700; font-size: .875rem; }

.stat-card {
  position: absolute;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.375rem;
  color: var(--c-white);
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

/* ── stat-cards are nth-child(1–4) ─────────────
   Padding is UNIFORM (2rem all sides, all cards).
   Text overlap protection is handled via max-width on label elements.
   ────────────────────────────────────────────────────────────────────── */

/* Card A — glass, top-left  (+16% Rentabilidad) */
.stat-card:nth-child(1) {
  top: 14%; left: 0;
  width: 54%;
  padding: 2rem;
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
  z-index: 2;
}
/* Card B — dark navy, top-right (+12 años) */
.stat-card:nth-child(2) {
  top: 8%; right: 0;
  width: 61%;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(14,26,53,.92) 0%, rgba(21,40,72,.88) 100%);
  border-color: rgba(255,255,255,.1);
  z-index: 4;
}
/* Card C — dark navy, bottom-left (+21 transacciones) */
.stat-card:nth-child(3) {
  bottom: 0; left: 0;
  width: 57%;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(14,26,53,.92) 0%, rgba(21,40,72,.88) 100%);
  border-color: rgba(255,255,255,.1);
  z-index: 3;
}
/* Card D — glass, bottom-right (+50 Empresas) */
.stat-card:nth-child(4) {
  bottom: 8%; right: 0;
  width: 53%;
  padding: 2rem;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  z-index: 5;
}

/* Text protection: constrain labels to the visible (non-overlapped) area.
   Card A is overlapped from the right by Card B (~72% into card A).
   Card C is overlapped from the right by Card D (~83% into card C). */
.stat-card:nth-child(1) .stat-card__label { max-width: 70%; }
.stat-card:nth-child(3) .stat-card__label { max-width: 85%; }

/* Levitation — same duration on all cards, staggered delays only */
@media (min-width: 769px) {
  .stat-card:nth-child(1) { animation: cardLevitate 5s ease-in-out infinite 0s; }
  .stat-card:nth-child(2) { animation: cardLevitate 5s ease-in-out infinite 1.25s; }
  .stat-card:nth-child(3) { animation: cardLevitate 5s ease-in-out infinite 0.6s; }
  .stat-card:nth-child(4) { animation: cardLevitate 5s ease-in-out infinite 2s; }
}

/* Hover — identical on all 4 cards */
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0,0,0,.45);
  animation-play-state: paused;
}

.stat-card__sublabel {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
}
.stat-card__icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: rgba(255,255,255,.88);
  animation: float 5s ease-in-out infinite;
}
.stat-card:nth-child(1) .stat-card__icon { background: rgba(168,146,63,.25); color: #e2c870; }
.stat-card:nth-child(2) .stat-card__icon { animation-delay: 1.25s; background: rgba(255,255,255,.1); }
.stat-card:nth-child(3) .stat-card__icon { animation-delay: 0.6s;  background: rgba(255,255,255,.1); }
.stat-card:nth-child(4) .stat-card__icon { animation-delay: 2s;    background: rgba(168,146,63,.3); color: #e2c870; }

.stat-card__number {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 400;
  line-height: 1; margin-bottom: .5rem;
}
.stat-card:nth-child(1) .stat-card__number { font-size: 3.5rem; }
.stat-card:nth-child(4) .stat-card__number { color: #e2c870; }

.stat-card__label {
  font-size: .875rem; color: rgba(255,255,255,.62); line-height: 1.55;
}
.stat-card:nth-child(1) .stat-card__label,
.stat-card:nth-child(4) .stat-card__label { color: rgba(255,255,255,.55); }

/* Corner icon — glass cards (A and D) */
.stat-card__corner-icon {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168,146,63,.2); color: #e2c870;
}

/* ============================================================
   KEN BURNS + ANIMATIONS
   ============================================================ */
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0%,    0%   ); }
  33%  { transform: scale(1.06) translate(-1.5%, -0.5%); }
  66%  { transform: scale(1.04) translate(0.5%,  -1%  ); }
  100% { transform: scale(1.08) translate(-1%,   0.5% ); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0);    }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}
@keyframes cardLevitate {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-5px); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0  0px 0px rgba(139,117,53,0);   }
  50%       { box-shadow: 0 0 22px 6px rgba(139,117,53,.22); }
}
@keyframes shimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%);  }
}
@keyframes slideInScale {
  from { opacity: 0; transform: translateY(28px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
@keyframes spinSlow {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Hero load animations */
.hero__tag         { animation: fadeInUp .55s ease both; animation-delay: .1s; }
.hero__title       { animation: fadeInUp .6s  ease both; animation-delay: .2s; }
.hero__description { animation: fadeInUp .6s  ease both; animation-delay: .32s; }
.hero__actions     { animation: fadeInUp .6s  ease both; animation-delay: .42s; }
.hero__stats       { animation: fadeInRight .7s ease both; animation-delay: .3s; }

/* Scroll-reveal */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:   0ms; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 120ms; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 360ms; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 600ms; }

/* Stagger-wide: slower, more dramatic sequencing */
.stagger-wide > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.stagger-wide.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:   0ms; }
.stagger-wide.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 160ms; }
.stagger-wide.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 320ms; }
.stagger-wide.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 480ms; }
.stagger-wide.visible > *:nth-child(n+5) { opacity:1; transform:none; transition-delay: 480ms; }

/* ============================================================
   HERO CLIENTS (strip inside hero, bottom)
   ============================================================ */
.hero__clients {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.375rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, transparent 0%, rgba(14,26,53,.45) 100%);
}
.hero__clients-inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: nowrap; overflow: hidden;
}
.hero__clients-label {
  font-size: .725rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.38); flex-shrink: 0;
}
.hero__marquee {
  overflow: hidden; flex: 1; min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.hero__marquee__track {
  display: flex; align-items: center; gap: 2.75rem;
  width: max-content;
  animation: heroMarquee 80s linear infinite;
}
.hero__marquee__track:hover { animation-play-state: paused; }
.hero__client-name {
  font-size: .9375rem; font-weight: 700;
  letter-spacing: .04em; color: rgba(255,255,255,.42);
  white-space: nowrap;
  transition: color var(--tr-fast);
}
.hero__client-name:hover { color: rgba(255,255,255,.84); }
@keyframes heroMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CLIENTS STRIP (standalone white strip — kept for other pages)
   ============================================================ */
.clients-strip {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: 1.25rem 0;
}
.clients-strip__inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.clients-strip__label {
  font-family: var(--font-body);
  font-size: .8125rem; font-weight: 500; color: var(--c-text-muted);
  white-space: nowrap; flex-shrink: 0;
}
.clients-strip__logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.clients-strip__logo {
  font-family: var(--font-body);
  font-size: .9375rem; font-weight: 700; color: var(--c-text-muted);
  letter-spacing: .03em; opacity: .6;
  transition: opacity var(--tr-fast), color var(--tr-fast);
}
.clients-strip__logo:hover { opacity: 1; color: var(--c-navy); }

/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */
.about { background: linear-gradient(160deg, #ffffff 0%, #f3f7fd 55%, #eaf0fa 100%); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 52%; height: 120%;
  background: radial-gradient(ellipse at right center, rgba(21,32,64,.055) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.about .container { position: relative; z-index: 1; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  font-weight: 400;
  position: relative;
}
.about__desc {
  font-size: 1rem; color: var(--c-text-mid);
  line-height: 1.8; margin-bottom: 2rem;
}
.about__quote {
  background: var(--c-bg-section);
  border-left: 3px solid var(--c-navy);
  padding: 1.375rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 2.5rem;
}
.about__quote blockquote {
  font-size: .9375rem; font-style: italic;
  color: var(--c-text-mid); line-height: 1.75; margin-bottom: .875rem;
}
.about__quote cite {
  font-size: .875rem; font-weight: 600; color: var(--c-navy);
  font-style: normal; display: flex; align-items: center; gap: .5rem;
}
.about__quote-co {
  font-size: .75rem; letter-spacing: .08em;
  color: var(--c-text-muted); margin-left: auto;
  text-transform: uppercase; font-weight: 700;
}
.feature-cards,
.about__features { display: flex; flex-direction: column; gap: 1rem; }
.feature-card {
  display: flex; gap: 1rem; padding: 1.375rem;
  background: linear-gradient(135deg, #152040 0%, #1a2d55 100%);
  border-radius: var(--radius-md);
  color: var(--c-white);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-card__title {
  font-family: var(--font-body);
  font-size: .9375rem; font-weight: 700; margin-bottom: .35rem;
}
.feature-card__text { font-size: .875rem; color: rgba(255,255,255,.68); line-height: 1.65; }

/* Feature card variety — nth-child accent colours */
.feature-card:nth-child(2) {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1d3160 100%);
}
.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #0d1b38 0%, #152040 100%);
  border: none;
}
.feature-card__icon { animation: float 4.5s ease-in-out infinite; }
.feature-card:nth-child(2) .feature-card__icon { animation-delay: 1.5s; }
.feature-card:nth-child(3) .feature-card__icon { animation-delay: 3s; }

/* Section header (centered) */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-desc {
  font-size: 1.0625rem; color: var(--c-text-mid);
  max-width: 640px; margin: 0 auto; line-height: 1.8;
}

/* ============================================================
   SERVICES GRID (Home)
   ============================================================ */
.services { background: linear-gradient(170deg, #f8fafc 0%, #eef4fb 60%, #e6eef8 100%); position: relative; overflow: hidden; }
.services::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -8%;
  width: 48%; height: 120%;
  background: radial-gradient(ellipse at left bottom, rgba(21,32,64,.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.services > .container { position: relative; z-index: 1; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
/* Stagger — even cards pushed down for a livelier grid */
.services__grid .service-card:nth-child(even) { transform: translateY(1.5rem); }
.services__grid .service-card:nth-child(even):hover {
  transform: translateY(calc(1.5rem - 6px));
  box-shadow: var(--shadow-xl);
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: block; text-decoration: none;
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-navy), var(--c-navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-base);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21,32,64,.15);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--c-bg-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy); margin-bottom: 1.375rem;
  transition: background var(--tr-base), color var(--tr-base), transform var(--tr-base);
}
.service-card:hover .service-card__icon {
  background: var(--c-navy); color: #fff; transform: scale(1.05);
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 400; color: var(--c-navy); margin-bottom: .75rem;
}
.service-card__desc {
  font-size: .9375rem; color: var(--c-text-mid); line-height: 1.75; margin-bottom: 1.25rem;
}
.service-card__list { display: flex; flex-direction: column; gap: .45rem; }
.service-card__list li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: var(--c-text-mid);
}
.service-card__list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--c-navy); border-radius: 50%;
  margin-top: .55em; flex-shrink: 0;
}
.services__cta { text-align: center; }

/* ============================================================
   RESULTS — Dynamic & Modern Redesign
   ============================================================ */
.results {
  background: linear-gradient(150deg, #0e1a35 0%, #152040 40%, #1a2b50 70%, #152040 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

/* Decorative circles background */
.results::before,
.results::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.results::before {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  border: 1px solid rgba(255,255,255,.035);
}
.results::after {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  border: 1px solid rgba(255,255,255,.03);
  background: radial-gradient(circle, rgba(139,117,53,.06) 0%, transparent 70%);
}

.results__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative; z-index: 1;
}
.results__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.875rem);
  color: var(--c-white); margin-bottom: .75rem; font-weight: 400;
}
.results__subtitle {
  font-size: 1rem; color: rgba(255,255,255,.58);
}

/* Stats grid */
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative; z-index: 1;
  margin-bottom: 3rem;
  align-items: stretch;
}
/* Stagger result stats — varied heights for visual rhythm */
.result-stat:nth-child(2) { transform: translateY(1.75rem); }
.result-stat:nth-child(3) { transform: translateY(.875rem); }
.result-stat:nth-child(4) { transform: translateY(-.5rem);  }

.result-stat {
  position: relative;
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  overflow: hidden;
  transition: transform var(--tr-slow), box-shadow var(--tr-slow), background var(--tr-slow);
  cursor: default;
}

/* Bottom accent line — gold */
.result-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--tr-base);
}
/* Top glow on hover */
.result-stat::after {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(ellipse, rgba(139,117,53,.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--tr-slow);
  pointer-events: none;
}
.result-stat:hover {
  background: rgba(255,255,255,.09);
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.result-stat:hover::before { transform: scaleX(1); }
.result-stat:hover::after  { opacity: 1; }

.result-stat__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: rgba(255,255,255,.7);
  transition: background var(--tr-base), color var(--tr-base), transform var(--tr-base);
}
.result-stat:hover .result-stat__icon {
  background: rgba(139,117,53,.25);
  color: var(--c-gold-light);
  transform: scale(1.14) rotate(-8deg);
}
.result-stat__number {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: .625rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.result-stat__label {
  font-size: .875rem;
  color: rgba(255,255,255,.58);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

.results__note {
  text-align: center;
  font-size: .9375rem;
  font-style: italic;
  color: rgba(255,255,255,.42);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative; z-index: 1;
}

/* ============================================================
   CLIENTS GRID
   ============================================================ */
.clients { background: linear-gradient(180deg, #f3f7fd 0%, #ffffff 100%); }
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.client-logo {
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: .75rem 1rem;
  transition: box-shadow var(--tr-base), border-color var(--tr-base), transform var(--tr-base);
}
.client-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.client-logo:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(21,32,64,.15);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT CTA (Home bottom)
   ============================================================ */
.contact-cta { background: linear-gradient(160deg, #eef4fb 0%, #f5f8fd 50%, #edf3fa 100%); }
.contact-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-cta__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.875rem);
  color: var(--c-navy); line-height: 1.12; margin-bottom: 1rem; font-weight: 400;
}
.contact-cta__desc {
  font-size: 1rem; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 2.25rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.375rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item__icon {
  width: 42px; height: 42px;
  background: var(--c-navy); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--c-white);
}
.contact-info-item__label {
  font-family: var(--font-body);
  font-size: .875rem; font-weight: 700; color: var(--c-navy); margin-bottom: .125rem;
}
.contact-info-item__value {
  font-size: .9375rem; color: var(--c-text-mid);
  transition: color var(--tr-fast);
}
a.contact-info-item__value:hover { color: var(--c-navy); }

/* ============================================================
   CONTACT FORM CARD
   ============================================================ */
.contact-form-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem; color: var(--c-navy); margin-bottom: 1.625rem; font-weight: 400;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-body);
  font-size: .875rem; font-weight: 600; color: var(--c-text-dark);
}
.form-label .req { color: #ef4444; }
.form-control {
  padding: .8125rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white); color: var(--c-text-dark);
  font-family: var(--font-body); font-size: .9375rem;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  outline: none; width: 100%;
}
.form-control::placeholder { color: #9ca3af; }
.form-control:focus {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(21,32,64,.1);
}
select.form-control {
  cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 128px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: .75rem;
  cursor: pointer; margin: .25rem 0;
}
.form-checkbox input {
  width: 17px; height: 17px; margin-top: .2em;
  cursor: pointer; accent-color: var(--c-navy); flex-shrink: 0;
}
.form-checkbox__text { font-size: .875rem; color: var(--c-text-mid); line-height: 1.55; }
.form-checkbox__text a { color: var(--c-navy); font-weight: 600; text-decoration: underline; }
.form-msg {
  display: none; padding: .875rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem; font-weight: 500; margin-top: .5rem;
}
.form-msg.success { display: block; background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-msg.error   { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--c-navy); }
.footer__main { padding: 5rem 0 3rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 3rem;
}
.footer__logo { display: flex; align-items: center; margin-bottom: 1.25rem; }
.footer__logo-img { height: 30px; width: auto; }
.footer__tagline {
  font-size: .875rem; line-height: 1.75;
  color: rgba(255,255,255,.52); max-width: 260px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 700;
  color: rgba(255,255,255,.45); margin-bottom: 1.25rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__link {
  font-size: .9rem; color: rgba(255,255,255,.58);
  transition: color var(--tr-fast); text-decoration: none;
}
.footer__link:hover  { color: var(--c-white); }
.footer__link.active { color: rgba(255,255,255,.9); font-weight: 500; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; color: rgba(255,255,255,.58);
  margin-bottom: .875rem; line-height: 1.5;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: rgba(255,255,255,.38); margin-top: .1em; }
.footer__contact-item a:hover { color: var(--c-white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 1.375rem 0; }
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer__copy { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal-link {
  font-size: .8125rem; color: rgba(255,255,255,.35);
  transition: color var(--tr-fast);
}
.footer__legal-link:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   PAGE HERO (inner pages — dark with deco)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #152040 40%, #1e3060 70%, #152040 100%);
  padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  position: relative; overflow: hidden;
}
.page-hero__deco {
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%);
  width: 38%; opacity: .05;
  pointer-events: none; color: var(--c-white);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  color: var(--c-white); line-height: 1.1;
  margin-bottom: 1.125rem; font-weight: 400;
}
.page-hero__desc {
  font-size: 1.0625rem; color: rgba(255,255,255,.68); line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE (Nosotros)
   ============================================================ */
.about-hero {
  background: var(--c-white);
  padding: 5rem 0 5.5rem;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,32,64,.045) 0%, transparent 68%);
  pointer-events: none;
}
.about-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 3vw, 3rem);
  color: var(--c-navy); line-height: 1.1;
  margin-bottom: 1.375rem; font-weight: 400;
}
.about-hero__text { font-size: 1rem; color: var(--c-text-mid); line-height: 1.85; }
.about-hero__text + .about-hero__text { margin-top: 1rem; }

.value-cards { display: flex; flex-direction: column; gap: 1.125rem; }
.value-card {
  padding: 1.75rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(21,32,64,.09);
  box-shadow: 0 4px 20px rgba(21,32,64,.06);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  box-shadow: 0 18px 44px rgba(21,32,64,.12);
}
.value-card--dark {
  background: var(--c-navy);
  border: 1.5px solid var(--c-navy);
}
.value-card--dark:hover { box-shadow: 0 18px 44px rgba(21,32,64,.32); }
.value-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.125rem;
}
.value-card__icon {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(226,200,112,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold); flex-shrink: 0;
}
.value-card--dark .value-card__icon { background: rgba(226,200,112,.18); color: #e2c870; }
.value-card__num {
  font-family: var(--font-head); font-style: italic;
  font-size: 2.75rem; line-height: 1;
  color: rgba(21,32,64,.06); user-select: none;
}
.value-card--dark .value-card__num { color: rgba(255,255,255,.06); }
.value-card__title {
  font-family: var(--font-head);
  font-size: 1.125rem; font-weight: 400;
  color: var(--c-navy); margin-bottom: .5rem;
}
.value-card--dark .value-card__title { color: #fff; }
.value-card__text { font-size: .9375rem; color: rgba(21,32,64,.6); line-height: 1.7; margin: 0; }
.value-card--dark .value-card__text { color: rgba(255,255,255,.65); }

/* TEAM */
.team { background: var(--c-white); }
.team__grid { display: flex; flex-direction: column; gap: 1.5rem; }
.team-member {
  display: flex; gap: 2rem; padding: 2rem;
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.team-member:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-member__avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 1.375rem; font-weight: 700; color: var(--c-white);
  flex-shrink: 0; letter-spacing: -.02em;
  overflow: hidden;
}
.team-member__avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.team-member__name {
  font-family: var(--font-head);
  font-size: 1.125rem; color: var(--c-navy); margin-bottom: .25rem; font-weight: 400;
}
.team-member__role {
  font-size: .875rem; font-weight: 600; color: var(--c-gold);
  margin-bottom: 1rem; letter-spacing: .02em;
}
.team-member__bio { display: flex; flex-direction: column; gap: .4rem; }
.team-member__bio li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--c-text-mid); line-height: 1.55;
}
.team-member__bio li::before {
  content: '•'; color: var(--c-navy); font-weight: 700; flex-shrink: 0; margin-top: .05em;
}

/* TESTIMONIALS */
.testimonials { background: var(--c-bg-section); }
.testimonial-card {
  max-width: 800px; margin: 0 auto; text-align: center;
  padding: 3.5rem 3rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem; line-height: 1;
  color: rgba(21,32,64,.06);
  position: absolute; top: -1rem; left: 2rem;
  pointer-events: none;
}
.testimonial-card__client {
  font-size: .875rem; font-weight: 800;
  letter-spacing: .1em; color: var(--c-text-muted);
  text-transform: uppercase; margin-bottom: 1.75rem;
}
.testimonial-card__quote {
  font-family: var(--font-head);
  font-size: 1.25rem; color: var(--c-text-mid);
  line-height: 1.75; font-style: italic; margin-bottom: 1.75rem;
}
.testimonial-card__author { font-size: .9375rem; font-weight: 700; color: var(--c-navy); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0a1628 0%, #152040 35%, #1e3060 70%, #0e1e40 100%);
  text-align: center; padding: 6rem 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,117,53,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--c-white); margin-bottom: 1.125rem;
  line-height: 1.12; font-weight: 400;
  position: relative; z-index: 1;
}
.cta-section__desc {
  font-size: 1.0625rem; color: rgba(255,255,255,.65);
  max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.8; position: relative; z-index: 1;
}

/* ============================================================
   SERVICE INNER PAGES
   ============================================================ */
.service-content { padding: 5.5rem 0; background: var(--c-white); }
.service-content__title {
  font-family: var(--font-head);
  font-size: 1.75rem; color: var(--c-navy);
  margin-bottom: 2.25rem; font-weight: 400;
}
.service-list { display: flex; flex-direction: column; gap: 1rem; }
.service-list__item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.375rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color var(--tr-base), box-shadow var(--tr-base), transform var(--tr-base);
}
.service-list__item:hover {
  border-color: rgba(21,32,64,.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}
.service-list__icon {
  width: 38px; height: 38px;
  background: var(--c-bg-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--c-navy);
  transition: background var(--tr-base), color var(--tr-base), transform var(--tr-base);
}
.service-list__item:hover .service-list__icon { background: var(--c-navy); color: #fff; transform: rotate(8deg) scale(1.1); }
.service-list__text {
  font-size: .9375rem; color: var(--c-text-mid); line-height: 1.6; padding-top: .15rem;
}

/* Financing page two-col */
.financing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: start;
}
.financing-intro { font-size: .9375rem; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 2rem; }
.financing-providers-label { font-size: .9375rem; color: var(--c-text-mid); line-height: 1.75; margin-bottom: 1.375rem; }
.provider-list { display: flex; flex-direction: column; gap: .875rem; }
.provider-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-weight: 600; color: var(--c-navy);
  transition: background var(--tr-base), color var(--tr-base),
              border-color var(--tr-base), transform var(--tr-base);
}
.provider-item:hover {
  background: var(--c-navy); color: #fff;
  border-color: var(--c-navy); transform: translateX(5px);
}
.provider-icon {
  width: 38px; height: 38px;
  background: var(--c-bg-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--tr-base);
}
.provider-item:hover .provider-icon { background: rgba(255,255,255,.15); }

/* Valorización page */
.valorizacion-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; margin-bottom: 4rem;
}
.val-section__title {
  font-family: var(--font-head);
  font-size: 1.375rem; color: var(--c-navy);
  margin-bottom: 1rem; font-weight: 400;
}
.val-section__text { font-size: .9375rem; color: var(--c-text-mid); line-height: 1.8; }
.bullet-list { display: flex; flex-direction: column; gap: .55rem; margin-top: 1rem; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .9375rem; color: var(--c-text-mid);
}
.bullet-list li::before {
  content: '•'; color: var(--c-navy); font-weight: 700; flex-shrink: 0; margin-top: .05em;
}
.methodology { padding-top: 3.5rem; border-top: 1px solid var(--c-border); }
.methodology__title {
  font-family: var(--font-head);
  font-size: 1.625rem; color: var(--c-navy); margin-bottom: .75rem; font-weight: 400;
}
.methodology__desc { font-size: .9375rem; color: var(--c-text-mid); margin-bottom: 2.25rem; }
.stages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.stage-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: box-shadow var(--tr-base), transform var(--tr-base), border-color var(--tr-base);
  position: relative; overflow: hidden;
}
.stage-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-navy), var(--c-navy-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr-base);
}
.stage-card:hover::before { transform: scaleX(1); }
.stage-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px);
  border-color: rgba(21,32,64,.15);
}
.stage-card__num {
  width: 40px; height: 40px;
  background: var(--c-bg-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy); margin-bottom: 1.125rem;
  font-family: var(--font-head); font-size: 1rem; font-weight: 400;
}
.stage-card__title {
  font-family: var(--font-head);
  font-size: 1.125rem; color: var(--c-navy); margin-bottom: .25rem; font-weight: 400;
}
.stage-card__subtitle { font-size: .8125rem; color: var(--c-text-muted); margin-bottom: 1.125rem; }
.stage-card__list { display: flex; flex-direction: column; gap: .5rem; }
.stage-card__list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8125rem; color: var(--c-text-mid); line-height: 1.55;
}
.stage-card__list li svg { flex-shrink: 0; color: var(--c-navy); margin-top: .1em; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: linear-gradient(160deg, #eef4fb 0%, #f5f8fd 50%, #e8f0fa 100%);
  padding: 5rem 0 5.5rem;
}

/* Google Maps embed */
.map-section { line-height: 0; }
.map-embed {
  display: block;
  width: 100%; height: 420px;
  border: 0;
  filter: grayscale(20%) contrast(1.02);
}
.contact-page__inner {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 4.5rem; align-items: start;
}
.contact-page__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--c-navy); line-height: 1.1;
  margin-bottom: 1.125rem; font-weight: 400;
}
.contact-page__desc { font-size: 1rem; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 2.5rem; }

/* ============================================================
   LUCIDE ICONS
   ============================================================ */
/* Icon containers — child SVG sizing */
.stat-card__icon      svg { width: 20px; height: 20px; }
.stat-card__corner-icon svg { width: 15px; height: 15px; }
.stat-badge__icon     svg { width: 16px; height: 16px; }
.feature-card__icon   svg { width: 22px; height: 22px; }
.service-card__icon   svg { width: 26px; height: 26px; }
.result-stat__icon    svg { width: 24px; height: 24px; }
.contact-info-item__icon svg { width: 18px; height: 18px; }
.value-card__icon     svg { width: 20px; height: 20px; }
.service-list__icon   svg { width: 18px; height: 18px; }
.nav__dd-icon         svg { width: 16px; height: 16px; }
.provider-icon        svg { width: 18px; height: 18px; }
.claim-badge__icon    svg { width: 18px; height: 18px; }
/* Nav chevron and button icons */
.chevron              { width: 16px; height: 16px; flex-shrink: 0; display: inline-block; }
.arrow-icon           { width: 14px; height: 14px; flex-shrink: 0; display: inline-block; }
.btn                  svg { width: 16px; height: 16px; flex-shrink: 0; }
/* Page hero deco — large decorative icon */
.page-hero__deco      svg { width: 100%; height: 100%; }
/* Footer contact icons already styled via .footer__contact-item svg */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .results__grid   { grid-template-columns: repeat(2,1fr); }
  .footer__inner   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .clients__grid   { grid-template-columns: repeat(4,1fr); }
}

/* Hero collapses to single column at ≤ 900px (tablets + phones) */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__description { max-width: 100%; }
  .hero__stats { position: static; height: auto; display: flex; flex-direction: column; gap: .75rem; }
  .stat-badge { display: none; }
  /* Reset desktop absolute+width overrides on every nth-child */
  .stat-card,
  .stat-card:nth-child(1),
  .stat-card:nth-child(2),
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    position: static;
    width: 100%;
    top: auto; left: auto; right: auto; bottom: auto;
    border-radius: 1rem; padding: 1rem 1.25rem;
    display: flex; flex-direction: row; align-items: center; gap: 1.125rem;
  }
  .stat-card__sublabel { display: none; }
  .stat-card__corner-icon { display: none; }
  .stat-card__icon { width: 34px; height: 34px; flex-shrink: 0; margin-bottom: 0; }
  .stat-card__number {
    font-size: 2.125rem !important; flex-shrink: 0;
    min-width: 76px; line-height: 1; margin-bottom: 0;
  }
  .stat-card:nth-child(1) .stat-card__number,
  .stat-card:nth-child(4) .stat-card__number { font-size: 2.125rem !important; }
  .stat-card__label { flex: 1; font-size: .875rem; line-height: 1.42; }
  .stat-card:nth-child(1) .stat-card__label,
  .stat-card:nth-child(3) .stat-card__label { max-width: 100%; }
}

@media (max-width: 768px) {
  :root {
    --container-px: 1.125rem;
    --nav-h: 64px;
  }

  /* Mobile nav */
  .nav__hamburger { display: flex; }
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--c-navy);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: .75rem;
    flex-direction: column; align-items: stretch; gap: .25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__menu.open { display: flex; }
  .nav__link { padding: .875rem 1rem; justify-content: space-between; color: rgba(255,255,255,.82); }
  .nav__link:hover { background: rgba(255,255,255,.08); }
  .nav__link--cta { margin-left: 0; justify-content: center; margin-top: .5rem; }
  .nav__dropdown {
    position: static; transform: none; box-shadow: none;
    border: none; background: rgba(255,255,255,.06);
    opacity: 1; visibility: visible; pointer-events: auto;
    border-radius: var(--radius-sm); display: none; margin-top: .25rem;
  }
  .nav__dd-item { color: rgba(255,255,255,.72); }
  .nav__dd-item:hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav__dd-icon { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
  .nav__item.open .nav__dropdown { display: block; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--nav-h) + 4rem) 0 5.5rem; }
  /* Hero stats: single column, horizontal card layout on mobile */
  .hero__stats { position: static; height: auto; display: flex; flex-direction: column; gap: .75rem; }
  .stat-card,
  .stat-card:nth-child(1),
  .stat-card:nth-child(2),
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    position: static; width: 100%;
    top: auto; left: auto; right: auto; bottom: auto;
    border-radius: 1rem; padding: 1rem 1.25rem;
    display: flex; flex-direction: row; align-items: center; gap: 1.125rem;
  }
  .stat-card__sublabel { display: none; }
  .stat-card__corner-icon { display: none; }
  .stat-card__icon {
    width: 34px; height: 34px; flex-shrink: 0; margin-bottom: 0;
  }
  .stat-card__number {
    font-size: 2.125rem !important; flex-shrink: 0;
    min-width: 76px; line-height: 1; margin-bottom: 0;
  }
  .stat-card:nth-child(1) .stat-card__number { font-size: 2.125rem !important; }
  .stat-card:nth-child(4) .stat-card__number { font-size: 2.125rem !important; }
  .stat-card__label {
    flex: 1; font-size: .875rem; line-height: 1.42;
  }
  .stat-card:nth-child(1) .stat-card__label,
  .stat-card:nth-child(3) .stat-card__label { max-width: 100%; }
  .stat-badge { display: none; }
  /* Reset service grid stagger */
  .services__grid .service-card:nth-child(even)       { transform: none; }
  .services__grid .service-card:nth-child(even):hover { transform: translateY(-6px); }
  /* Reset results stagger */
  .result-stat:nth-child(2),
  .result-stat:nth-child(3),
  .result-stat:nth-child(4) { transform: none; }

  /* About */
  .about__inner      { grid-template-columns: 1fr; gap: 2.75rem; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 2.75rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Results */
  .results__grid { grid-template-columns: repeat(2,1fr); }

  /* Clients */
  .clients__grid { grid-template-columns: repeat(3,1fr); }

  /* Contact CTA */
  .contact-cta__inner { grid-template-columns: 1fr; gap: 2.75rem; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* Inner pages */
  .page-hero { padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem; }
  .page-hero__deco { display: none; }
  .about-hero { padding: 4rem 0; }
  .financing-grid   { grid-template-columns: 1fr; gap: 2.75rem; }
  .valorizacion-grid{ grid-template-columns: 1fr; gap: 2.75rem; }
  .stages-grid      { grid-template-columns: 1fr; }
  .contact-page { padding: 3.5rem 0 4rem; }
  .contact-page__inner { grid-template-columns: 1fr; gap: 2.75rem; }

  /* Team */
  .team-member { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }

  /* Testimonial */
  .testimonial-card { padding: 2.5rem 1.75rem; }
  .testimonial-card__quote { font-size: 1.0625rem; }

  /* CTA */
  .cta-section { padding: 4.5rem 0; }
  .section { padding: 4.5rem 0; }
}

@media (max-width: 480px) {
  .hero__stats      { gap: .625rem; }
  .stat-card        { padding: .875rem 1rem; gap: .875rem; }
  .stat-card__number { font-size: 1.875rem !important; min-width: 68px; }
  .results__grid    { grid-template-columns: 1fr; }
  .clients__grid    { grid-template-columns: repeat(2,1fr); }
  .footer__inner    { grid-template-columns: 1fr; }
  .hero__actions    { flex-direction: column; align-items: stretch; }
  .btn              { justify-content: center; }
  .clients-strip__logos { gap: 1.25rem; }
}

/* Print */
@media print {
  .nav, .footer, .cta-section, .hero__bg-picture, .hero__bg-img, .hero__overlay { display: none; }
  .hero { min-height: auto; padding: 2rem 0; background: #fff; color: #000; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   LEGAL PAGES — Política de Privacidad / Términos de Uso
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 0 6.5rem;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  color: var(--c-navy);
  font-weight: 400;
  margin: 2.75rem 0 .875rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--c-navy); margin: 1.75rem 0 .5rem;
}
.legal-content p {
  color: var(--c-text-muted); line-height: 1.85; margin-bottom: 1rem;
}
.legal-content ul {
  color: var(--c-text-muted); line-height: 1.85;
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.legal-content li { margin-bottom: .375rem; }
.legal-content a { color: var(--c-navy); text-decoration: underline; }
.legal-content a:hover { color: var(--c-gold); }
.legal-content hr { border: none; border-top: 1px solid var(--c-border); margin: 2.5rem 0; }
.legal-meta {
  font-size: .8125rem; color: rgba(21,32,64,.45);
  padding-bottom: 1.5rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--c-border);
}

/* ============================================================
   LIBRO DE RECLAMACIONES
   ============================================================ */
.claim-page { background: var(--c-bg); }
.claim-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  padding: 4rem 0 6rem;
  align-items: start;
}
.claim-info__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--c-navy); font-weight: 400;
  margin-bottom: 1rem;
}
.claim-info__desc {
  color: var(--c-text-muted); line-height: 1.8; margin-bottom: 1.75rem;
  font-size: .9375rem;
}
.claim-badge {
  display: flex; gap: .875rem; align-items: flex-start;
  border-radius: var(--radius-md);
  padding: 1.125rem 1.25rem;
  margin-bottom: 1rem;
}
.claim-badge--info {
  background: #f0f4fb;
  border: 1px solid rgba(21,32,64,.12);
}
.claim-badge--warn {
  background: #fdf8ef;
  border: 1px solid rgba(139,117,53,.2);
}
.claim-badge__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.claim-badge--info  .claim-badge__icon { background: rgba(21,32,64,.09); color: var(--c-navy); }
.claim-badge--warn  .claim-badge__icon { background: rgba(139,117,53,.14); color: var(--c-gold); }
.claim-badge__text { font-size: .84rem; color: var(--c-text-muted); line-height: 1.7; }
.claim-badge__text strong { display: block; color: var(--c-navy); font-size: .875rem; margin-bottom: .2rem; }

.claim-type-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin-bottom: 1.375rem;
}
.claim-type-option {
  display: flex; align-items: flex-start; gap: .625rem;
  padding: .9rem 1rem; cursor: pointer;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color var(--tr-base), background var(--tr-base);
}
.claim-type-option:has(input:checked) {
  border-color: var(--c-navy);
  background: rgba(21,32,64,.04);
}
.claim-type-option input { margin-top: 3px; accent-color: var(--c-navy); flex-shrink: 0; }
.claim-type-option__label { font-weight: 700; font-size: .875rem; color: var(--c-navy); display: block; }
.claim-type-option__desc  { font-size: .775rem; color: var(--c-text-muted); line-height: 1.5; margin-top: .2rem; }

@media (max-width: 768px) {
  .claim-page__inner  { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 4.5rem; }
  .claim-type-grid    { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL EFFECTS
   ============================================================ */

/* Progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

/* Parallax helpers */
.hero__visual  { will-change: transform; }
.page-hero__deco { will-change: transform; }

/* Card tilt — hardware-accelerate */
.service-card,
.value-card,
.feature-card,
.result-card { will-change: transform; }

/* Glow pulse when stat numbers count up */
@keyframes statGlow {
  0%   { text-shadow: none; }
  50%  { text-shadow: 0 0 24px rgba(226,200,112,.55); }
  100% { text-shadow: none; }
}
.stat-glow { animation: statGlow .9s ease-out; }

/* Reduced motion: disable all decorative animations */
@media (prefers-reduced-motion: reduce) {
  .hero__marquee__track { animation-play-state: paused; }
  #scroll-progress      { display: none; }
  .hero__visual,
  .page-hero__deco      { will-change: auto; }
}

/* ============================================================
   PAGE-HERO — staggered entrance (inner pages)
   ============================================================ */
.page-hero__inner > * {
  animation: fadeInUp .65s ease both;
}
.page-hero__inner > *:nth-child(1) { animation-delay: .12s; }
.page-hero__inner > *:nth-child(2) { animation-delay: .26s; }
.page-hero__inner > *:nth-child(3) { animation-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  .page-hero__inner > * { animation: none; }
}

/* ============================================================
   SECTION TITLE — gold underline reveal on scroll
   ============================================================ */
.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  width: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .75s cubic-bezier(.16,1,.3,1) .38s;
}
.reveal.visible .section-title::after,
.section-header.visible .section-title::after {
  transform: translateX(-50%) scaleX(1);
}

/* ============================================================
   VALUE CARDS — icons float animation
   ============================================================ */
.value-card__icon { animation: float 5.5s ease-in-out infinite; }
.value-card:nth-child(2) .value-card__icon { animation-delay: 1.9s; }
.value-card:nth-child(3) .value-card__icon { animation-delay: 3.7s; }
