/* ============================================
VARIABLES Y RESET
============================================ */
:root {
  --navy-deep: #001A43;
  --navy-dark: #002855;
  --blue-electric: #0055ff;
  --blue-light: #4D94FF;
  --blue-accent: #00A8E8;
  --white: #FFFFFF;
  --gray-50: #f4f6f9;
  --gray-100: #eef1f5;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 8px 30px rgba(0, 85, 255, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

/* ============================================
UTILIDADES
============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-2xl) 0;
}

/* ============================================
HEADER
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 12px;
  transition: var(--transition);
}

.header.scrolled .logo-main {
  color: var(--navy-deep);
}

.header.scrolled .logo-sub {
  color: var(--gray-600);
  border-left-color: var(--gray-300);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.header.scrolled .nav-link {
  color: var(--gray-600);
}

.nav-link:hover {
  color: var(--blue-accent);
}

.header.scrolled .nav-link:hover {
  color: var(--navy-deep);
}

.nav-link.active {
  color: var(--blue-accent);
}

.header.scrolled .nav-link.active {
  color: var(--blue-electric);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-accent);
}

.header.scrolled .nav-link.active::after {
  background: var(--blue-electric);
}

.btn-nav {
  background: var(--white);
  color: var(--navy-deep);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.header.scrolled .btn-nav {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-nav:hover {
  background: var(--blue-accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.header.scrolled .btn-nav:hover {
  background: var(--blue-electric);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--navy-deep);
}

/* ============================================
HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: #0b1a30;
  background-image: url('images/hero-bg-new.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 26, 48, 0.98) 0%, rgba(11, 26, 48, 0.95) 50%, rgba(11, 26, 48, 0.88) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-2xl);
  letter-spacing: -0.01em;
  max-width: 900px;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  max-width: 900px;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 86, 255, 0.4);
  background: rgba(11, 26, 48, 0.5);
  border-radius: var(--radius-md);
  color: #0056FF;
  font-size: 1.2rem;
  transition: var(--transition);
}

.pillar:hover .pillar-icon {
  background: #0056FF;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 86, 255, 0.3);
}

.pillar-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.btn-blue {
  display: inline-block;
  background: #0056FF;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.2rem 2.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 86, 255, 0.2);
}

.btn-blue:hover {
  background: #0043cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 86, 255, 0.4);
  color: var(--white);
}

.hero-location {
  margin-top: 15vh;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-location i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
NOSOTROS
============================================ */
.about {
  background: var(--white);
}

.about-header {
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 900px;
}

.about-text strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.about-text em {
  color: var(--navy-deep);
  font-style: normal;
  font-weight: 500;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--blue-electric);
  transform: scale(1.1);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.value-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-banner {
  margin-top: var(--space-xl);
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
}

.about-banner-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
}

.about-banner-text strong {
  color: var(--blue-electric);
  font-weight: 700;
}

/* ============================================
SERVICIOS
============================================ */
.services {
  background: var(--gray-50);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.services-header .section-title {
  text-align: center;
}

.services-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  color: var(--blue-electric);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--blue-electric);
  color: var(--white);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.services-bar {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.service-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.service-feature i {
  color: var(--blue-electric);
  font-size: 1.2rem;
}

.service-feature span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
METODOLOGÍA
============================================ */
.methodology {
  background: var(--white);
}

.methodology-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.methodology-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.step {
  text-align: center;
  position: relative;
  padding: var(--space-md);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--gray-200);
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--blue-electric);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.step:hover .step-number::before {
  opacity: 1;
  inset: -8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-xs);
}

.step-items {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.step-items li {
  margin-bottom: 0.2rem;
}

.stats-banner {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.stat-item {
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-electric);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ============================================
CLIENTES - CARRUSEL INFINITO
============================================ */
.clients {
  background: var(--gray-50);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.clients-header .section-title {
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-md) 0;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-slide {
  flex-shrink: 0;
  width: 220px;
  margin: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.client-slide:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.client-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-slide:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.client-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}

/* ============================================
FOOTER
============================================ */
.footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-cta {
  text-align: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.footer-cta-title strong {
  color: var(--blue-electric);
}

.footer-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--blue-electric);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-blue);
}

.btn-footer:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.4);
}

.footer-info {
  padding: var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: var(--space-xs);
}

.footer-col a,
.footer-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col i {
  color: var(--blue-electric);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
PAGE HEADER (Nosotros / Servicios)
============================================ */
.page-header {
  background-color: #0b1a30;
  background-image: url('images/hero-bg-new.webp');
  background-size: cover;
  background-position: center;
  padding: calc(70px + var(--space-2xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 48, 0.98) 0%, rgba(11, 26, 48, 0.90) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: var(--space-sm);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 168, 232, 0.3);
  border-radius: 50px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.page-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

/* ============================================
NOSOTROS - ABOUT INTRO
============================================ */
.about-intro {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-intro-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-intro-text strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.about-intro-text em {
  color: var(--navy-deep);
  font-style: normal;
  font-weight: 500;
}

.about-highlight-box {
  background: var(--gray-50);
  border-left: 4px solid var(--blue-electric);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-highlight-box p {
  font-size: 1.1rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.about-highlight-box strong {
  color: var(--blue-electric);
}

/* ============================================
NOSOTROS - EL PROBLEMA
============================================ */
.problem {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.problem-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.problem-header .section-label {
  color: var(--blue-electric);
}

.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.problem-header h2 span {
  color: var(--blue-electric);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-electric);
}

.problem-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 50%;
  color: var(--blue-electric);
  font-size: 1.5rem;
  transition: var(--transition);
}

.problem-card:hover .problem-icon {
  background: var(--blue-electric);
  color: var(--white);
  transform: scale(1.1);
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-xs);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.problem-banner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  border: 1px solid var(--gray-200);
}

.problem-banner-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.problem-banner p {
  font-size: 1.1rem;
  color: var(--gray-800);
  font-weight: 500;
}

.problem-banner p strong {
  color: var(--blue-electric);
  font-weight: 700;
}

/* ============================================
NOSOTROS - PROPUESTA DE VALOR
============================================ */
.value-proposal {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.value-proposal-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.value-proposal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.value-proposal-header h2 span {
  color: var(--blue-electric);
}

.value-proposal-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.value-proposal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.vp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.vp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}

.vp-card:hover::before {
  transform: scaleX(1);
}

.vp-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  transition: var(--transition);
}

.vp-card:hover .vp-icon {
  background: var(--blue-electric);
  transform: scale(1.1);
}

.vp-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.vp-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.vp-banner {
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.vp-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.vp-banner-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--blue-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.vp-banner p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
}

.vp-banner p strong {
  color: var(--blue-electric);
  font-weight: 700;
}

.vp-banner-target {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ============================================
NOSOTROS - ¿POR QUÉ FIGUEROA?
============================================ */
.why-us {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.why-us-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.why-us-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.why-us-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-electric);
}

.why-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--blue-electric);
  transform: scale(1.1);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.why-banner {
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.why-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.why-banner-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-banner p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
}

.why-banner p strong {
  color: var(--blue-electric);
  font-weight: 700;
}

/* ============================================
NOSOTROS - METODOLOGÍA DETALLADA
============================================ */
.methodology-detailed {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.methodology-detailed-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.methodology-detailed-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.methodology-detailed-header h2 span {
  color: var(--blue-electric);
}

.methodology-detailed-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.m-step {
  text-align: center;
  position: relative;
  padding: var(--space-md) var(--space-sm);
}

.m-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gray-200);
}

.m-step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  transition: var(--transition);
}

.m-step:hover .m-step-number {
  background: var(--blue-electric);
  transform: scale(1.05);
}

.m-step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--blue-electric);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.m-step:hover .m-step-number::before {
  opacity: 1;
  inset: -8px;
}

.m-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-xs);
}

.m-step-items {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.m-step-items li {
  margin-bottom: 0.2rem;
}

.methodology-footer {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.methodology-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.m-footer-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.m-footer-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.m-footer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ============================================
NOSOTROS - DIFERENCIADORES
============================================ */
.differentiators {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.diff-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.diff-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.diff-header h2 span {
  color: var(--blue-electric);
}

.diff-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.diff-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-electric);
}

.diff-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.diff-card:hover .diff-icon {
  background: var(--blue-electric);
  transform: scale(1.1);
}

.diff-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.diff-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.diff-why-box {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.diff-why-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.diff-why-left {
  position: relative;
  z-index: 1;
}

.diff-why-left h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.diff-why-left h3 span {
  color: var(--blue-electric);
}

.diff-why-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.diff-why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.diff-why-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.diff-why-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-electric);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.diff-why-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
NOSOTROS - NÚMEROS
============================================ */
.numbers {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.numbers-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.numbers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy-deep);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.number-item {
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.number-item:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--blue-electric);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.number-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.numbers-footer {
  margin-top: var(--space-xl);
  text-align: center;
}

.numbers-footer p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy-deep);
  font-weight: 600;
}

.numbers-footer p strong {
  color: var(--blue-electric);
}

/* ============================================
SERVICIOS - INTRO
============================================ */
.services-intro {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.services-intro-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.services-intro-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.services-intro-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
SERVICIOS - DETALLADOS
============================================ */
.services-detailed {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.services-detailed-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.services-detailed-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.services-detailed-header h2 span {
  color: var(--blue-electric);
}

.services-detailed-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-category {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-category:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-electric);
}

.service-category-header {
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--gray-200);
}

.service-category-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-category:hover .service-category-icon {
  background: var(--blue-electric);
}

.service-category-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
}

.service-category-body {
  padding: var(--space-md);
}

.service-sub-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-100);
}

.service-sub-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-sub-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  color: var(--blue-electric);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-sub-content h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.service-sub-content p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
SERVICIOS - MODELOS DE INVESTIGACIÓN
============================================ */
.research-models {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.research-models-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.research-models-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.research-models-header h2 span {
  color: var(--blue-electric);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.model-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: var(--transition);
}

.model-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--blue-electric);
}

.model-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
}

.model-card:hover .model-icon {
  background: var(--blue-electric);
  transform: scale(1.1);
}

.model-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-xs);
}

.model-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.advantages-bar {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.advantages-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.advantage-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.advantage-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.advantage-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.advantage-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ============================================
SERVICIOS - CLÁSICOS
============================================ */
.services-classic {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.services-classic-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.services-classic-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.services-classic-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.services-classic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-classic-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-classic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-classic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-classic-card:hover::before {
  transform: scaleX(1);
}

.service-classic-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  color: var(--blue-electric);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.service-classic-card:hover .service-classic-icon {
  background: var(--blue-electric);
  color: var(--white);
}

.service-classic-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.service-classic-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
SERVICIOS - CTA BANNER
============================================ */
.services-cta {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.services-cta-inner {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.services-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.services-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--blue-electric);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-blue);
}

.btn-cta-large:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.4);
}

/* ============================================
RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step:nth-child(3)::after {
    display: none;
  }

  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-desktop {
    gap: var(--space-md);
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-proposal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methodology-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-step:nth-child(3)::after {
    display: none;
  }

  .methodology-footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-why-box {
    grid-template-columns: 1fr;
  }

  .services-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-classic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-box {
    grid-template-columns: 1fr;
  }

  .method-banner {
    grid-template-columns: 1fr repeat(2, 1fr);
  }

  .results-footer {
    grid-template-columns: 1fr repeat(2, 1fr);
  }

  .number-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }

  .nav-desktop {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 26, 67, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) var(--space-lg);
    gap: var(--space-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-desktop.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-desktop .nav-link {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center;
    width: 100%;
    padding: var(--space-sm) 0;
  }

  .nav-desktop .nav-link:hover,
  .nav-desktop .nav-link.active {
    color: var(--blue-accent) !important;
  }

  .nav-desktop .nav-link.active::after {
    display: none;
  }

  /* btn-nav ya NO está dentro de nav-desktop;
     en móvil queda visible entre el nav (oculto) y el toggle */
  .btn-nav {
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
    flex-shrink: 0;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hamburger X animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 70px;
  }

  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none !important;
  }

  .stats-banner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-banner {
    flex-direction: column;
    padding: var(--space-md);
  }

  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 50px;
  }

  .client-slide {
    width: 180px;
    margin: 0 var(--space-sm);
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .value-proposal-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .m-step::after {
    display: none !important;
  }

  .methodology-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .problem-banner,
  .vp-banner,
  .why-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }

  .page-header {
    padding: calc(70px + var(--space-xl)) 0 var(--space-lg);
  }

  .services-categories {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .services-classic-grid {
    grid-template-columns: 1fr;
  }

  .services-cta-inner {
    padding: var(--space-xl) var(--space-md);
  }

  .contact-form-wrapper {
    padding: var(--space-lg) var(--space-md);
  }

  .cta-box {
    padding: var(--space-xl) var(--space-md);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .differentiators-grid {
    grid-template-columns: 1fr;
  }

  .method-banner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .method-banner-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: var(--space-md);
  }

  .results-footer {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .results-footer-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn-hero,
  .btn-footer {
    width: 100%;
    justify-content: center;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .methodology-footer {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .advantages-bar {
    grid-template-columns: 1fr;
  }

  .btn-cta-large,
  .btn-footer {
    width: 100%;
    justify-content: center;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .btn-submit,
  .btn-cta-large {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
CONTACTO - SECCIÓN PRINCIPAL
============================================ */
.contact-main {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.contact-info>p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.method-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  color: var(--blue-electric);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-method:hover .method-icon {
  background: var(--blue-electric);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.method-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.method-content a,
.method-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.method-content a:hover {
  color: var(--blue-electric);
}

.contact-social {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

.contact-social h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-link i {
  font-size: 1.2rem;
  color: var(--blue-electric);
}

.social-link:hover i {
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-md);
}

.form-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--blue-electric);
  margin-left: 0.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--blue-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-electric);
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  accent-color: var(--blue-electric);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-label a {
  color: var(--blue-electric);
  font-weight: 600;
}

.form-checkbox-label a:hover {
  text-decoration: underline;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 1.1rem;
  background: var(--blue-electric);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 85, 255, 0.35);
}

.btn-submit i {
  transition: var(--transition);
}

.btn-submit:hover i {
  transform: translateX(4px);
}

/* ============================================
CONTACTO - CTA DESTACADO
============================================ */
.contact-cta {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.cta-box {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-box-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 2rem;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.cta-box h2 strong {
  color: var(--blue-electric);
}

.cta-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--blue-electric);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-blue);
}

.btn-cta-large:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.4);
}

/* ============================================
CONTACTO - UBICACIÓN
============================================ */
.location {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.location-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.location-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.location-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.location-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  color: var(--blue-electric);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.location-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.location-right {
  position: relative;
}

.latam-coverage-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.latam-coverage-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 1.8rem;
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-electric);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.card-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-deep);
  font-weight: 700;
  margin: 0;
}

.card-header p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.coverage-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.country-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
  transition: var(--transition);
}

.country-pill:hover {
  background: var(--white);
  border-color: var(--blue-electric);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.country-dot {
  width: 6px;
  height: 6px;
  background-color: var(--blue-electric);
  border-radius: 50%;
}

.coverage-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.8rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metric-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}

.metric-lbl {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================
METODOLOGÍA - PROCESO
============================================ */
.method-process {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.method-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.method-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.method-header h2 span {
  color: var(--blue-electric);
}

.method-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--blue-electric), var(--gray-200));
  z-index: 0;
}

.p-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-md) var(--space-sm);
}

.p-step-number {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--navy-deep);
  border-radius: 50%;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-step:hover .p-step-number {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-blue);
}

.p-step-icon {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  border: 2px solid var(--white);
}

.p-step:hover .p-step-icon {
  background: var(--blue-electric);
}

.p-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.p-step-items {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.p-step-items li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1rem;
}

.p-step-items li::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--blue-electric);
  font-weight: 700;
}

.method-banner {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.method-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.method-banner-left {
  position: relative;
  z-index: 1;
  padding-right: var(--space-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.method-banner-left h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

.method-banner-left h3 span {
  color: var(--blue-electric);
}

.method-banner-item {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.method-banner-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  transition: var(--transition);
}

.method-banner-item:hover .method-banner-icon {
  background: var(--blue-electric);
  transform: translateY(-3px);
}

.method-banner-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
METODOLOGÍA - RESULTADOS
============================================ */
.results {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.results-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.results-header h2 span {
  color: var(--blue-electric);
}

.results-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.results-quote {
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.results-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--blue-electric);
  line-height: 1;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.quote-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

.quote-text strong {
  color: var(--blue-electric);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--blue-electric);
}

.result-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 50%;
  color: var(--blue-electric);
  font-size: 1.6rem;
  transition: var(--transition);
}

.result-card:hover .result-icon {
  background: var(--blue-electric);
  color: var(--white);
  transform: scale(1.1);
}

.result-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.result-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.results-footer {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.results-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.results-footer-left {
  position: relative;
  z-index: 1;
  padding-right: var(--space-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.results-footer-left h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

.results-footer-left h3 span {
  color: var(--blue-electric);
}

.results-footer-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.results-footer-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 1.1rem;
  transition: var(--transition);
}

.results-footer-item:hover .results-footer-icon {
  background: var(--blue-electric);
  transform: translateY(-3px);
}

.results-footer-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-electric);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.results-footer-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ============================================
METODOLOGÍA - ¿POR QUÉ ELEGIRNOS?
============================================ */
.why-choose {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.why-choose-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.why-choose-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.why-choose-header h2 span {
  color: var(--blue-electric);
}

.why-choose-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.diff-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.diff-card:hover .diff-card-icon {
  background: var(--blue-electric);
  transform: scale(1.1);
}

.diff-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.diff-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.why-box {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.why-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.why-box-left {
  position: relative;
  z-index: 1;
  padding-top: var(--space-sm);
}

.why-box-left h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

.why-box-left h3 span {
  color: var(--blue-electric);
}

.why-box-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-item-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--blue-accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-item-icon {
  background: var(--blue-electric);
  color: var(--white);
}

.why-item-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-electric);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-item-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
METODOLOGÍA - NÚMEROS Y TRAYECTORIA
============================================ */
.numbers-section {
  background: var(--gray-50);
  padding: var(--space-2xl) 0;
}

.number-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.number-card:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.number-icon {
  font-size: 1.5rem;
  color: var(--gray-400);
  margin-bottom: var(--space-xs);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
SCROLL REVEAL UTILITIES
============================================ */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.reveal-slide-up {
  transform: translateY(40px);
}

.reveal.reveal-slide-down {
  transform: translateY(-40px);
}

.reveal.reveal-slide-left {
  transform: translateX(-40px);
}

.reveal.reveal-slide-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Stagger delay classes */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.delay-600 {
  transition-delay: 600ms;
}

/* ============================================
PREMIUM CARD HOVER MICRO-INTERACTIONS
============================================ */
.value-card,
.service-card,
.vp-card,
.why-card,
.problem-card,
.service-classic-card,
.diff-card,
.number-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.value-card:hover,
.service-card:hover,
.vp-card:hover,
.why-card:hover,
.problem-card:hover,
.service-classic-card:hover,
.diff-card:hover,
.number-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 85, 255, 0.4) !important;
  box-shadow: 0 20px 40px rgba(0, 85, 255, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* Icon container animations on card hover */
.value-card:hover .value-icon,
.service-card:hover .service-icon,
.vp-card:hover .vp-icon,
.why-card:hover .why-icon,
.problem-card:hover .problem-icon,
.service-classic-card:hover .service-classic-icon,
.diff-card:hover .diff-card-icon,
.number-card:hover .number-icon {
  background: var(--blue-electric) !important;
  color: var(--white) !important;
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0, 85, 255, 0.3);
}

/* Make sure number-icon has transitions and correct border padding for circle glow */
.number-icon,
.diff-card-icon,
.value-icon,
.service-icon,
.vp-icon,
.why-icon,
.problem-icon,
.service-classic-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Legal Footer Links */
.footer-legal {
  margin-top: 15px;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--gray-400);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Policies Page Layout */
.policies-content {
  padding: 120px 0 var(--space-2xl);
  background-color: var(--white);
}

.policies-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.policies-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--space-2xl);
  font-style: italic;
  border-left: 4px solid var(--blue-electric);
  padding-left: var(--space-md);
}

.policy-block {
  margin-bottom: var(--space-2xl);
}

.policy-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  border-bottom: 1px solid rgba(11, 26, 48, 0.1);
  padding-bottom: var(--space-xs);
}

.policy-block h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.policy-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
}

.policy-block ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  list-style: none;
}

.policy-block li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
  position: relative;
}

.policy-block li::before {
  content: "•";
  color: var(--blue-electric);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.policy-table-info {
  background: #f4f7fa;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  border-left: 4px solid var(--blue-electric);
}

.policy-table-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-table-info li {
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.policy-table-info li::before {
  display: none;
}

.policy-table-info li strong {
  color: var(--navy-deep);
}

/* ============================================
   TEXTURA DE FONDO PARA SECCIONES OSCURAS
   ============================================ */
.about-banner,
.stats-banner,
.vp-banner,
.why-banner,
.diff-why-box,
.advantages-bar,
.services-cta-inner,
.cta-box,
.method-banner,
.results-quote,
.results-footer,
.why-box,
.footer {
  background-color: var(--navy-deep) !important;
  background-image: url('images/hero-bg-old.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: multiply !important;
}

/* Responsive — Mobile Breakpoints
   ============================================ */

/* 1024px */
@media (max-width: 1024px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }
}

/* 768px — Tablet */
@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --space-lg: 2rem;
  }


  .container {
    padding: 0 1.1rem;
  }


  .logo-sub {
    display: none;
  }


  .hero {
    padding-top: 80px;
    padding-bottom: 2.5rem;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-location {
    margin-top: 4vh;
  }


  .btn-blue {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }


  .about-banner {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
  }

  .about-banner-text {
    font-size: 1.05rem;
  }


  .services-bar {
    grid-template-columns: repeat(2, 1fr);
  }


  .results-quote {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-sm);
  }

  .quote-mark {
    font-size: 3rem;
  }

  .quote-text {
    font-size: 1.05rem;
  }


  .location-grid {
    grid-template-columns: 1fr;
  }


  .latam-coverage-card {
    padding: var(--space-lg);
  }


  .diff-why-box {
    grid-template-columns: 1fr;
  }

  .why-box {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why-box-left {
    padding-top: 0;
  }


  .cta-box {
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-md);
  }


  .btn-cta-large,
  .btn-footer {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }


  .contact-social .social-link {
    width: 100%;
    justify-content: center;
  }


  .footer-cta {
    padding: var(--space-xl) var(--space-md);
  }


  .page-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
  }



  .policies-content {
    padding: 90px 0 var(--space-xl);
  }
}

/* 480px — Mobile */
@media (max-width: 480px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-lg: 1.8rem;
    --space-md: 1.2rem;
  }

  html {
    font-size: 15px;
  }

  .container {
    padding: 0 0.9rem;
  }


  .logo-main {
    font-size: 1.15rem;
  }


  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .hero-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .pillar-title {
    font-size: 0.7rem;
  }


  .stats-banner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }


  .services-bar {
    grid-template-columns: 1fr;
  }


  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-sub {
    font-size: 0.95rem;
  }


  .section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }

  .btn-submit {
    font-size: 0.9rem;
    padding: 1rem;
    min-height: 50px;
  }


  .cta-box h2 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .cta-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }


  .coverage-metrics {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .metric-val {
    font-size: 1.5rem;
  }


  .vp-banner p,
  .why-banner p,
  .problem-banner p,
  .about-banner-text {
    font-size: 1rem;
  }


  .method-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }


  .step-number,
  .m-step-number,
  .p-step-number {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }

  .p-step-number {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }


  .methodology-footer {
    grid-template-columns: 1fr;
  }


  .advantages-bar {
    grid-template-columns: 1fr;
  }


  .models-grid {
    grid-template-columns: 1fr;
  }


  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }


  .why-box {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
  }

  .why-box-left h3 {
    font-size: 1.4rem;
  }


  .results-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
  }

  .results-footer-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: var(--space-md);
  }


  .method-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
  }

  .method-banner-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: var(--space-md);
  }


  .diff-why-box {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
  }


  .services-cta-inner {
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-md);
  }


  .page-header {
    padding: calc(70px + 1.8rem) 0 1.5rem;
  }

  .page-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }


  .btn-blue,
  .btn-footer,
  .btn-cta-large,
  .btn-submit,
  .btn-nav,
  .social-link,
  .nav-link {
    min-height: 48px;
  }


  .policies-content {
    padding: 85px 0 var(--space-xl);
  }

  .policies-intro {
    font-size: 0.95rem;
  }
}

/* 360px — Small Mobile */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .logo-main {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 10vw, 2rem);
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .btn-blue,
  .btn-cta-large,
  .btn-footer,
  .btn-submit {
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
  }

  .nav-desktop .nav-link {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.25rem, 8vw, 1.6rem);
  }
}

/* Clipboard copy tooltip */
.copy-tooltip {
  position: fixed;
  background: var(--navy-deep);
  color: var(--white);
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.copy-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy-deep);
}

.copy-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}