/* =============================================
   TOKENS
============================================= */
:root {
  --orange:       #E84E0F;
  --orange-hover: #FF5E1F;
  --orange-dim:   rgba(232,78,15,0.10);
  --orange-dim2:  rgba(232,78,15,0.06);
  --black:        #0A0A0A;
  --black2:       #111111;
  --black-card:   #181818;
  --black-card2:  #1E1E1E;
  --white:        #FFFFFF;
  --off-white:    #F8F7F5;
  --off-white2:   #F1F0ED;
  --gray-100:     #F5F5F5;
  --gray-200:     #E5E5E5;
  --gray-400:     #A3A3A3;
  --gray-500:     #737373;
  --gray-600:     #525252;
  --border-dark:  rgba(255,255,255,0.07);
  --border-dark2: rgba(255,255,255,0.12);
  --border-light: rgba(0,0,0,0.07);
  --border-light2:rgba(0,0,0,0.12);
  --font:         'Inter', sans-serif;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =============================================
   SHARED COMPONENTS
============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.section-tag-dark {
  color: rgba(0,0,0,0.50);
}
.section-tag-dark .section-tag-dot { background: var(--gray-400); }

.section-tag-white {
  color: rgba(255,255,255,0.55);
}
.section-tag-white .section-tag-dot { background: var(--orange); }

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); }

.btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.01em;
  margin-top: 2px;
  white-space: nowrap;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light2);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--black); background: var(--gray-100); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }

/* Iconos SVG reutilizables */
.ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange-hover) !important; transform: translateY(-1px); }

.nav-burger {
  display: none;
  color: var(--white);
  cursor: pointer;
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 68px;
}

/* glow naranja detrás de la foto para crear contraste */
.hero-photo-glow {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(ellipse 60% 70% at 65% 35%, rgba(232,78,15,0.22) 0%, transparent 70%);
}

/* foto full-height al fondo derecho */
.hero-photo-bg {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.15) contrast(1.05);
}

/* gradiente que funde la foto hacia la izquierda */
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,1)   0%,
    rgba(10,10,10,0.75) 18%,
    rgba(10,10,10,0.1)  48%,
    rgba(10,10,10,0)    100%
  );
}

/* gradiente inferior stats bar */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 18%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 100px 0 200px;
  max-width: 620px;
}

@media (max-width: 900px) {
  .hero-photo-bg { width: 100%; opacity: 0.25; }
  .hero-body { max-width: 100%; padding: 80px 0 200px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-eyebrow-bar { width: 32px; height: 2px; background: var(--orange); border-radius: 2px; }
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1 {
  font-size: clamp(46px, 6.5vw, 86px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 32px;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid var(--border-dark);
}
.hero-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-stat {
  padding: 28px 0 28px 36px;
  border-right: 1px solid var(--border-dark);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hero-stat-title span { color: var(--orange); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  max-width: 240px;
}

/* =============================================
   PAIN — EL DIAGNÓSTICO  (fondo claro)
============================================= */
.pain {
  padding: 120px 0;
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.pain-left h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}
.pain-left h2 em { font-style: normal; color: var(--orange); }

.pain-left p {
  font-size: 17px;
  color: rgba(0,0,0,0.50);
  line-height: 1.8;
  margin-bottom: 14px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  transition: background 0.2s;
}
.pain-item:hover { background: var(--off-white2); }

.pain-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--orange-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.pain-item-body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.4;
}
.pain-item-body span {
  font-size: 13px;
  color: rgba(0,0,0,0.50);
  line-height: 1.6;
}

/* =============================================
   SERVICIOS  (fondo oscuro)
============================================= */
.services {
  padding: 120px 0;
  background: var(--black2);
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg-cta.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}

.services-inner { position: relative; z-index: 1; }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.services-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
}

.services-header-right p {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--black-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { background: var(--black-card2); }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  opacity: 0.7;
  margin-bottom: 24px;
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--orange-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

.service-card .service-insight {
  margin-top: 20px;
  padding: 11px 14px;
  border-left: 3px solid var(--orange);
  background: rgba(232,78,15,0.10);
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* =============================================
   PROCESO  (fondo blanco)
============================================= */
.process {
  padding: 120px 0;
  background: var(--off-white);
}

.process-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
}
.process-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}
.process-header p {
  font-size: 17px;
  color: rgba(0,0,0,0.50);
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--orange));
  opacity: 0.18;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light2);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover .process-step-circle {
  border-color: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-dim);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 14px;
  color: rgba(0,0,0,0.50);
  line-height: 1.75;
}

.process-step .process-principle {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* =============================================
   INDUSTRIAS  (fondo negro con imagen)
============================================= */
.industries {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg-stats.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.industries-inner { position: relative; z-index: 1; }

.industries-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.industries-header h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.industries-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--black-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
}
.industry-card:hover {
  border-color: rgba(232,78,15,0.30);
  background: var(--black-card2);
}

.industry-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange-dim);
  border: 1px solid rgba(232,78,15,0.20);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.industry-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.industry-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.40);
  line-height: 1.75;
  margin-bottom: 20px;
}

.industry-cases {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  margin-top: 4px;
}

.industry-cases-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 12px;
}

.industry-cases-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.industry-cases-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

.industry-cases-list li svg {
  flex-shrink: 0;
  color: var(--orange);
}

/* =============================================
   POR QUÉ NOSOTROS  (fondo blanco)
============================================= */
.why {
  padding: 120px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.why-left h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}
.why-left h2 em { font-style: normal; color: var(--orange); }

.why-left > p {
  font-size: 17px;
  color: rgba(0,0,0,0.50);
  line-height: 1.8;
  margin-bottom: 40px;
}

.principles-list {
  display: flex;
  flex-direction: column;
}

.principle-item {
  display: flex;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.principle-item:first-child { padding-top: 0; }
.principle-item:last-child { border-bottom: none; }

.principle-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--orange);
  min-width: 22px;
  padding-top: 4px;
  flex-shrink: 0;
}

.principle-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.principle-item span {
  font-size: 13px;
  color: rgba(0,0,0,0.50);
  line-height: 1.65;
}

/* Cita / quote card */
.why-quote {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.why-quote-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg-stats.png');
  background-size: cover;
  opacity: 0.09;
}

.why-quote-inner { position: relative; z-index: 1; }

.why-quote-mark {
  font-size: 72px;
  font-weight: 900;
  color: var(--orange);
  line-height: 0.7;
  display: block;
  margin-bottom: 28px;
  font-family: Georgia, serif;
}

.why-quote blockquote {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
}

.why-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-quote-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 2px rgba(232,78,15,0.3);
}
.why-quote-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }

.why-quote-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.why-quote-role {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}

/* =============================================
   MI ENFOQUE — TIMELINE
============================================= */
.about-timeline {
  padding: 100px 0 80px;
  background: var(--white);
  position: relative;
}

.about-timeline .section-tag-dot { background: var(--orange); }
.timeline-step-era { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.timeline-step-dot { background: var(--white); border-color: var(--orange); }
.timeline-steps::before { background: linear-gradient(90deg, var(--orange), rgba(232,78,15,0.2)); }

.about-timeline-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.about-timeline-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
}

.about-timeline-header p {
  font-size: 17px;
  color: rgba(0,0,0,0.50);
  line-height: 1.7;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,78,15,0.15));
}

.timeline-step {
  padding: 0 24px 0 0;
  padding-top: 52px;
  position: relative;
}

.timeline-step-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  z-index: 1;
}

.timeline-step-era {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.timeline-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.timeline-step p {
  font-size: 13px;
  color: rgba(0,0,0,0.50);
  line-height: 1.65;
}

/* =============================================
   MI ENFOQUE — STATEMENT (foto + frase)
============================================= */
.about-statement {
  background: var(--black);
  background-image: url('img/bg-stats.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.about-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 0;
}

.about-statement .container {
  position: relative;
  z-index: 1;
}

.about-statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-statement-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%);
}

.about-statement-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 60%);
}

.about-statement-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-statement-quote {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.about-statement-quote em {
  color: var(--orange);
  font-style: normal;
}

.about-statement-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-statement-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

.about-statement-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: none;
}

.about-statement-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.about-statement-role {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* =============================================
   MI ENFOQUE — VALUES GRID
============================================= */
.about-values-section {
  padding: 100px 0;
  background: var(--off-white);
}

.about-values-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.about-values-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.about-values-header p {
  font-size: 16px;
  color: rgba(0,0,0,0.50);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.value-card p {
  font-size: 13px;
  color: rgba(0,0,0,0.50);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   MI ENFOQUE — CONVERSEMOS (cierre)
============================================= */
.about-conversemos {
  padding: 100px 0;
  background: var(--white);
}

.about-conversemos-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.about-conversemos-inner p {
  font-size: 16px;
  color: rgba(0,0,0,0.45);
  margin-bottom: 8px;
  line-height: 1.6;
}

.about-conversemos-inner h2 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 24px;
}

.about-conversemos-sub {
  font-size: 16px;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

/* Responsive MI ENFOQUE */
@media (max-width: 900px) {
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .timeline-steps::before { top: 20px; left: 20px; right: 50%; }
  .about-statement-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-statement-photo { aspect-ratio: 3/2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .timeline-steps { grid-template-columns: 1fr; }
  .timeline-steps::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SOBRE MÍ  (fondo blanco)
============================================= */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  max-width: 460px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  filter: grayscale(8%);
}

.about-photo-tag {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(232,78,15,0.3);
}

.about-photo-tag span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 3px;
}

.about-right h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 24px;
}

.about-right h2 em { font-style: normal; color: var(--orange); }

.about-right p {
  font-size: 17px;
  color: rgba(0,0,0,0.50);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-right p:last-of-type { margin-bottom: 40px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.about-value {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.about-value:first-child { padding-top: 0; }
.about-value:last-child { border-bottom: none; }

.about-value strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 3px;
}

.about-value span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0,0,0,0.50);
  line-height: 1.6;
}

.about-closing {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: var(--black);
  line-height: 1.65;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo img { max-width: 100%; height: 420px; }
  .about-photo-tag { right: 16px; }
  .about-values { grid-template-columns: 1fr; }
}

/* =============================================
   RECURSOS  (fondo off-white)
============================================= */
.recursos {
  padding: 120px 0;
  background: var(--off-white);
}

.recursos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}

.recursos-header h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  max-width: 480px;
}

.recursos-header p {
  font-size: 16px;
  color: rgba(0,0,0,0.50);
  line-height: 1.7;
  max-width: 320px;
}

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cuaderno de Criterio */
.cuaderno-lema {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cuaderno-cats {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.cuaderno-cats-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cuaderno-cat-pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
}

.cuaderno-cat-pill.active,
.cuaderno-cat-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.cuaderno-card {
  border: 1px solid var(--border-light);
}

.cuaderno-intermedio {
  margin-top: 72px;
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--border-light);
}

.cuaderno-intermedio p {
  font-size: 18px;
  color: rgba(0,0,0,0.40);
  font-style: italic;
  line-height: 1.7;
}

.cuaderno-cierre {
  background: var(--off-white);
  padding: 100px 0;
}

.cuaderno-cierre-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cuaderno-cierre-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.025em;
  margin: 20px 0 16px;
}

.cuaderno-cierre-inner p {
  font-size: 17px;
  color: rgba(0,0,0,0.50);
  line-height: 1.7;
  margin-bottom: 36px;
}

.recurso-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.recurso-card:hover {
  border-color: var(--border-light2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.recurso-card-top {
  padding: 32px 32px 0;
}

.recurso-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.recurso-cat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.recurso-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.recurso-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.50);
  line-height: 1.75;
}

.recurso-card-bottom {
  margin-top: auto;
  padding: 24px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recurso-meta {
  font-size: 12px;
  color: var(--gray-400);
}

.recurso-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}

.recurso-link:hover { gap: 10px; }

@media (max-width: 900px) {
  .recursos-grid { grid-template-columns: 1fr; }
  .recursos-header { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   CTA  (fondo naranja)
============================================= */
.cta-section {
  padding: 120px 0;
  background-image: url('img/bg-cta.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 48px;
}

.cta-closing {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-outcomes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-outcomes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 4px;
}

.cta-outcome-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.4;
}

.cta-outcome-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--black);
  padding: 72px 0 36px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo-img { height: 32px; width: auto; margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: rgba(255,255,255,0.22);
}

.footer-bottom a {
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* =============================================
   ANIMACIONES
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.65s ease both; animation-delay: 0.15s; }
.hero h1      { animation: fadeUp 0.65s ease both; animation-delay: 0.28s; }
.hero-sub     { animation: fadeUp 0.65s ease both; animation-delay: 0.40s; }
.hero-actions { animation: fadeUp 0.65s ease both; animation-delay: 0.52s; }
.hero-stats   { animation: fadeUp 0.65s ease both; animation-delay: 0.60s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .pain-grid, .why-grid        { grid-template-columns: 1fr; gap: 52px; }
  .services-header             { grid-template-columns: 1fr; }
  .services-grid               { grid-template-columns: repeat(2, 1fr); }
  .process-steps               { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-connector           { display: none; }
  .industries-grid             { grid-template-columns: 1fr; }
  .footer-grid                 { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner            { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
}

@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 20px 28px;
    border-bottom: 1px solid var(--border-dark);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-dark);
    width: 100%;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .nav-burger { display: block; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .cta-buttons   { flex-direction: column; }
  .hero-stats    { display: none; }
  .hero-body     { padding: 120px 0 80px; }
  .hero h1       { font-size: clamp(36px, 9vw, 52px); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* =============================================
   PAGE HEADER — para páginas internas
============================================= */
.page-hero {
  padding: 160px 0 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg-cta.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-hero-inner h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero-inner h1 em { font-style: normal; color: var(--orange); }
.page-hero-inner p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 540px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { opacity: 0.3; }

/* active nav link */
.nav-links a.active { color: var(--white); }

/* =============================================
   CONTACTO — formularios y cards
============================================= */
.contact-section {
  padding: 100px 0 120px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border-light);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
  border-color: rgba(232,78,15,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange-dim);
  border: 1px solid rgba(232,78,15,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 24px;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.contact-card p {
  font-size: 15px;
  color: rgba(0,0,0,0.50);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-card .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(232,78,15,0.20);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.contact-form-section {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-form-section > p {
  font-size: 16px;
  color: rgba(0,0,0,0.50);
  margin-bottom: 40px;
  line-height: 1.75;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--black);
  background: var(--off-white);
  border: 1.5px solid var(--border-light2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.form-group textarea { min-height: 140px; }

.form-submit { margin-top: 8px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* =============================================
   NEWSLETTER (recursos)
============================================= */
.newsletter {
  padding: 80px 0;
  background: var(--black2);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.newsletter-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1.5px solid var(--border-dark2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  outline: none;
  flex: 1;
  min-width: 240px;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input[type="email"]:focus { border-color: var(--orange); }

.newsletter-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
