/* ============================================
   STEPLEAD · BRAND TOKENS
   ============================================ */
:root {
  /* Brand colors (from Brand Book) */
  --ink: #041727;           /* Pantone 532C - primary dark */
  --ink-deep: #020d18;      /* Deeper variant for hero */
  --ink-mid: #084167;       /* Pantone 7694C - mid blue */
  --azul: #12a0fb;          /* Pantone 2727C - signature blue */
  --azul-soft: #c9edff;     /* Pantone 290C - light blue */
  
  /* Neutrals */
  --bg: #fafaf7;            /* warm off-white, editorial */
  --bg-light: #f4f3ee;
  --bg-card: #ffffff;
  --line: #e8e6df;
  --line-strong: #d1cec3;
  --muted: #6b6f76;
  --text: #1a1f2a;
  
  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  /* Spacing */
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 12px;
  
  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ============================================
   NOISE OVERLAY (subtle grain)
   ============================================ */
.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 160, 251, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s var(--ease);
  opacity: 0;
  mix-blend-mode: screen;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(4, 23, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  color: var(--ink) !important;
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--azul);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-burger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 24px 32px;
  background: var(--ink-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile a {
  color: #fff;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink-deep);
  color: #fff;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(18, 160, 251, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(8, 65, 103, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-deep) 0%, #020a13 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(18, 160, 251, 0.15);
  top: -100px; right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(8, 65, 103, 0.3);
  bottom: -100px; left: -50px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--azul);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--azul);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title-accent {
  color: var(--azul);
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.08em;
  background: var(--azul);
  opacity: 0.3;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1.2s 0.8s var(--ease-out) forwards;
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin-bottom: 48px;
  animation: fadeUp 0.9s 0.25s var(--ease-out) both;
}

.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 0.9s 0.4s var(--ease-out) both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeUp 1s 0.6s var(--ease-out) both;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero { padding: 120px 0 60px; }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  z-index: 3;
}

.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--azul);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 4px 24px rgba(18, 160, 251, 0.25);
}

.btn-primary:hover {
  background: #0a8de0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(18, 160, 251, 0.35);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-block {
  width: 100%;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  background: var(--ink);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.trust-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.trust-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.trust-track span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.01em;
}

.trust-dot {
  color: var(--azul) !important;
  font-size: 24px !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-narrow { padding: 80px 0; }

.section-light {
  background: var(--bg);
  color: var(--text);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  max-width: 880px;
  margin-bottom: 80px;
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 24px;
  padding-left: 24px;
  position: relative;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--azul);
}

.eyebrow-light { color: var(--azul); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.section-title-light {
  color: #fff;
}

.section-title .italic {
  font-style: italic;
  color: var(--azul);
  font-weight: 500;
}

.section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 720px;
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 700px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
}

/* ============================================
   VALUE GRID (Especialización)
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-card {
  background: var(--bg-card);
  padding: 48px 36px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  background: #fefefb;
  transform: translateY(-2px);
}

.value-card-accent {
  background: var(--ink);
  color: #fff;
}

.value-card-accent:hover {
  background: var(--ink-mid);
}

.value-card-accent h3 { color: #fff; }
.value-card-accent p { color: rgba(255, 255, 255, 0.75); }

.value-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--azul);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { padding: 36px 28px; }
}

/* ============================================
   VERTICAL GRID (Verticales)
   ============================================ */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vertical-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--azul), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.vertical-card:hover {
  background: rgba(18, 160, 251, 0.04);
  border-color: rgba(18, 160, 251, 0.25);
  transform: translateY(-4px);
}

.vertical-card:hover::before { opacity: 1; }

.vertical-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 160, 251, 0.1);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: var(--azul);
}

.vertical-icon svg {
  width: 24px; height: 24px;
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.vertical-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.vertical-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vertical-tags span {
  font-size: 12px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vertical-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  position: relative;
  padding-left: 0;
}

.process-line {
  position: absolute;
  left: 31px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, var(--azul) 0%, var(--line) 100%);
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-marker {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--azul);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg);
}

.process-content {
  flex: 1;
  padding-top: 8px;
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 700px;
}

.process-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.process-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.process-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--azul);
  border-radius: 50%;
}

@media (max-width: 700px) {
  .process-step { gap: 24px; }
  .process-marker { width: 48px; height: 48px; font-size: 12px; }
  .process-line { left: 23px; }
}

/* ============================================
   KPI BAND
   ============================================ */
.kpi-band {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.kpi-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(18, 160, 251, 0.08) 0%, transparent 70%);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 1;
}

.kpi-item {
  color: #fff;
}

.kpi-icon {
  width: 44px; height: 44px;
  background: rgba(18, 160, 251, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  margin-bottom: 20px;
}

.kpi-icon svg { width: 22px; height: 22px; }

.kpi-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.kpi-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   B2B LAYOUT
   ============================================ */
.b2b-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.b2b-side .section-title { margin-bottom: 24px; }

.b2b-grid {
  display: grid;
  gap: 24px;
}

.b2b-block {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}

.b2b-block:hover {
  border-color: var(--azul);
  box-shadow: 0 8px 32px rgba(4, 23, 39, 0.06);
}

.b2b-block h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.b2b-block ul {
  list-style: none;
}

.b2b-block li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.b2b-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--azul);
  font-weight: 600;
}

@media (max-width: 900px) {
  .b2b-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   PARTNERS / PRESS
   ============================================ */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.partner-pill {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.partner-pill:hover {
  border-color: var(--azul);
  color: var(--azul);
  transform: translateY(-2px);
}

.press-row {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.press-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.press-logos span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}

.press-sep {
  color: var(--line-strong) !important;
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  background: 
    radial-gradient(ellipse at top left, rgba(18, 160, 251, 0.08) 0%, transparent 50%),
    var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 24px; }

.contact-details {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: baseline;
}

.contact-row:last-child { border-bottom: none; }

.contact-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 80px;
}

.contact-value {
  color: #fff;
  font-size: 1rem;
  transition: color 0.2s var(--ease);
}

a.contact-value:hover { color: var(--azul); }

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  display: block;
  margin-bottom: 20px;
}

.form-row .field { margin-bottom: 0; }

.field span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--azul);
  background: rgba(18, 160, 251, 0.05);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2312a0fb' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.field select option {
  background: var(--ink);
  color: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .field { margin-bottom: 20px; }
  .contact-form { padding: 28px 24px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  height: 32px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--azul);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 500px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection {
  background: var(--azul);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--azul);
  outline-offset: 2px;
}


/* Contact Form Validation (Optional) */
.form-message{
  margin-bottom:20px;
  padding:14px 18px;
  border-radius:10px;
  font-size:14px;
  display:none;
}

.form-message.success{
  display:block;
  background:#d1fae5;
  color:#065f46;
  border:1px solid #10b981;
}

.form-message.error{
  display:block;
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #ef4444;
}

button:disabled{
  opacity:.7;
  cursor:not-allowed;
}