/* ============================================
   ARKIVITA — Arquitectos de Sistemas de Salud
   Stylesheet Principal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #152336;
  --navy-soft: #1E3248;
  --gold:      #C9A84C;
  --gold-light:#E2C47A;
  --teal:      #1A7A6E;
  --teal-light:#22A699;
  --cream:     #F5F0E8;
  --cream-dark:#EDE7D9;
  --white:     #FFFFFF;
  --gray-100:  #F8F8F6;
  --gray-300:  #D0CCBF;
  --gray-500:  #8A8577;
  --gray-700:  #4A4640;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius:    4px;
  --shadow:    0 4px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 16px 64px rgba(13,27,42,0.22);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }
p { font-size: 1rem; color: var(--gray-700); line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.7; }

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal-light); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.mono { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider-left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}
.btn-arrow::after { content: '→'; font-size: 1rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2.5rem;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: auto;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.75rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,122,110,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(165deg, #0D1B2A 0%, #152336 50%, #0D1B2A 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   PROBLEM STRIP
   ============================================ */
.problem-strip {
  background: var(--gold);
  padding: 28px 0;
  overflow: hidden;
}
.problem-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  white-space: nowrap;
}
.problem-item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
}
.problem-dot {
  width: 5px; height: 5px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}

/* ============================================
   ABOUT / QUIÉNES SOMOS
   ============================================ */
.about {
  background: var(--cream);
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.about-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.founder-card {
  background: var(--navy-mid);
  padding: 2rem;
  position: relative;
  transition: background 0.3s;
}
.founder-card:hover { background: var(--navy-soft); }
.founder-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.founder-bio {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.about-results {
  background: var(--navy-soft);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.about-results-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.results-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.result-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 3px;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.about-text {}
.about-text .tag { color: var(--teal); border-color: var(--teal); }
.about-text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-text h2 span { color: var(--teal); }
.about-text p { margin-bottom: 1.2rem; }
.differentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.differential {
  padding: 1.25rem;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  background: var(--white);
  transition: var(--transition);
}
.differential:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.12);
  transform: translateY(-2px);
}
.differential-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.differential h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.differential p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   RESULTS BAND
   ============================================ */
.results-band {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.results-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,122,110,0.1) 0%, transparent 70%);
}
.results-band .container { position: relative; }
.results-header {
  text-align: center;
  margin-bottom: 4rem;
}
.results-header .tag { color: var(--gold); border-color: rgba(201,168,76,0.4); }
.results-header h2 { color: var(--white); }
.results-header h2 em { color: var(--gold); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
}
.metric-cell {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
  position: relative;
}
.metric-cell:hover { background: var(--navy-soft); }
.metric-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.metric-cell:hover::after { width: 60%; }
.metric-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.metric-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.metric-source {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 8px;
  display: block;
}

/* ============================================
   SERVICIOS
   ============================================ */
.services {
  background: var(--cream);
  padding: 120px 0;
}
.services-header {
  text-align: center;
  margin-bottom: 5rem;
}
.services-header .tag { color: var(--navy); border-color: var(--navy); opacity: 0.5; }
.services-header h2 { color: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.service-card-inner {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.service-health .service-card-inner { background: var(--navy); }
.service-primus .service-card-inner { background: var(--teal); }
.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-health .service-card-bg {
  background: radial-gradient(ellipse 80% 80% at 110% 110%, rgba(201,168,76,0.15), transparent);
}
.service-primus .service-card-bg {
  background: radial-gradient(ellipse 80% 80% at -10% 110%, rgba(13,27,42,0.3), transparent);
}
.service-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.service-health .service-label { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.25); }
.service-primus .service-label { color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.15); }
.service-card h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.service-health .service-desc { color: rgba(255,255,255,0.65); }
.service-primus .service-desc { color: rgba(255,255,255,0.8); }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}
.service-health .service-feature { color: rgba(255,255,255,0.7); }
.service-primus .service-feature { color: rgba(255,255,255,0.85); }
.feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
}
.service-health .feature-check { background: rgba(201,168,76,0.2); color: var(--gold); }
.service-primus .feature-check { background: rgba(255,255,255,0.15); color: var(--white); }

/* SCAN Highlight */
.scan-highlight {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.scan-highlight-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.scan-highlight h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.scan-highlight p {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.scan-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}
.scan-price small {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 6px;
}

/* PRIMUS highlight */
.primus-highlight {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-left: 3px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.primus-highlight-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.primus-highlight h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.primus-highlight p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* ============================================
   SCAN METHODOLOGY
   ============================================ */
.methodology {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.methodology::before {
  content: 'SCAN';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.methodology .container { position: relative; }
.methodology-header {
  max-width: 640px;
  margin-bottom: 5rem;
}
.methodology-header .tag { color: var(--gold); border-color: rgba(201,168,76,0.4); }
.methodology-header h2 { color: var(--white); }
.methodology-header h2 span { color: var(--gold); font-style: italic; }
.methodology-header p { color: rgba(255,255,255,0.55); margin-top: 1rem; }
.days-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 4rem;
}
.day-card {
  background: var(--navy-mid);
  padding: 2rem 1.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.day-card:hover { background: var(--navy-soft); }
.day-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.day-card:hover::before { transform: scaleX(1); }
.day-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.day-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.day-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.deliverables-box {
  background: var(--navy-soft);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 2.5rem 3rem;
}
.deliverables-box h4 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
}
.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.deliverable-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   PROCESO / CTA
   ============================================ */
.process {
  background: var(--cream);
  padding: 120px 0;
}
.process-header {
  text-align: center;
  margin-bottom: 5rem;
}
.process-header .tag { color: var(--navy); border-color: var(--navy); opacity: 0.4; }
.process-header h2 { color: var(--navy); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 2rem);
  right: calc(16.66% + 2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light), var(--gold));
  opacity: 0.35;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.step:nth-child(1) .step-number { background: var(--navy); color: var(--gold); }
.step:nth-child(2) .step-number { background: var(--gold); color: var(--navy); }
.step:nth-child(3) .step-number { background: var(--teal); color: var(--white); }
.step h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.9rem;
  max-width: 260px;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(201,168,76,0.08), transparent),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(26,122,110,0.1), transparent);
}
.contact .container { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info .tag { color: var(--gold); border-color: rgba(201,168,76,0.4); }
.contact-info h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-info h2 em { color: var(--gold); }
.contact-info > p { color: rgba(255,255,255,0.55); margin-bottom: 3rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text { display: flex; flex-direction: column; }
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.contact-founders {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}
.contact-founder {
  flex: 1;
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.3s;
}
.contact-founder:hover { border-color: rgba(201,168,76,0.3); }
.contact-founder-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 auto 0.75rem;
}
.contact-founder-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.contact-founder-role {
  font-size: 0.72rem;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* Form */
.contact-form-wrapper {
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 2.5rem;
}
.form-header {
  margin-bottom: 2rem;
}
.form-header h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-display);
}
.form-header p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
textarea { resize: vertical; min-height: 110px; }
select { cursor: pointer; }
select option { background: var(--navy); color: var(--white); }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h4 {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.form-success p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog {
  background: var(--gray-100);
  padding: 100px 0;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.blog-header h2 { color: var(--navy); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.3);
}
.blog-card-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.blog-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }
.blog-card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-date {
  font-size: 0.75rem;
  color: var(--gray-300);
  font-family: var(--font-mono);
}
.blog-read-more {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2rem;
}
.footer-brand .logo-name { font-size: 1.8rem; color: var(--white); margin-bottom: 4px; display: block; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.08em; }
.footer-brand .logo-tagline { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-copy span { color: var(--gold); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .days-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section, .about, .services, .methodology, .process, .contact, .blog { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--navy); align-items: center; justify-content: center; gap: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .days-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .differentials { grid-template-columns: 1fr; }
  .deliverables-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .contact-founders { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .metrics-grid { grid-template-columns: 1fr; }
  .days-grid { grid-template-columns: 1fr; }
}
