/* ============================================================
   ConnecTEK Technology — styles.css
   Edición Institucional · Playfair Display + Inter
   Paleta: verde profundo, antracita, marfil y champaña
   ============================================================ */

:root {
  /* Verde institucional — saturación bajada, profundidad alta */
  --g950: #0F1F08;
  --g900: #173A0A;
  --g800: #235811;
  --g700: #2F7115;
  --g600: #3F8C1E;
  --g500: #5BAD28;
  --g400: #84C757;
  --g300: #B6DC92;
  --g200: #D6EABE;
  --g100: #ECF6DC;
  --g50:  #F6FBEB;

  /* Neutros editoriales */
  --ink-950: #0B0F08;
  --ink-900: #14180F;
  --ink-700: #3A4434;
  --ink-500: #6B7563;
  --ink-300: #B6BCAE;
  --ink-100: #E8EAE2;
  --ivory:   #FBFAF5;
  --paper:   #FFFFFF;

  /* Acento premium */
  --gold-700: #8C6A2F;
  --gold-500: #B8924A;
  --gold-300: #D9BE82;
  --gold-100: #F1E6CB;

  /* Compatibilidad con clases existentes */
  --white: var(--paper);
  --text:  var(--ink-900);
  --text-mid: var(--ink-700);
  --border: rgba(35,88,17,0.16);
  --shadow: rgba(15,31,8,0.08);
  --shadow-lg: rgba(15,31,8,0.16);

  /* Tipografía */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-num:     'Playfair Display', 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  font-size: 15px;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--g200); color: var(--g950); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(251,250,245,0.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(35,88,17,0.08);
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
}
nav.scrolled {
  padding: 0.7rem 4rem;
  background: rgba(251,250,245,0.96);
  border-bottom-color: rgba(35,88,17,0.14);
}
.nav-logo-img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 2.6rem; }
.nav-links > li { white-space: nowrap; }
.nav-links a {
  color: var(--ink-700);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--g700);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--g800); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-link-mobile { display: none; }

.nav-cta {
  white-space: nowrap;
  background: var(--g950);
  color: var(--ivory);
  padding: 0.65rem 1.1rem;
  border-radius: 1px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
  border: 1px solid var(--g950);
}
.nav-cta:hover { background: var(--g800); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink-700); border-radius: 1px; transition: all 0.3s;
}

/* ============================================================
   HERO — editorial layout
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 4rem;
  padding: 9rem 4rem 5rem;
  background:
    radial-gradient(ellipse 70% 60% at 85% 35%, rgba(91,173,40,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--g50) 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(35,88,17,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(35,88,17,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 70% at 80% 50%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 80% 50%, black 0%, transparent 65%);
}

.hero-content { position: relative; z-index: 2; max-width: 580px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: transparent;
  border: 1px solid var(--g300);
  color: var(--g800);
  padding: 0.4rem 1rem;
  border-radius: 1px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.12s both;
}
.hero-tag::before {
  content: ''; width: 5px; height: 5px;
  background: var(--g600); border-radius: 50%;
  animation: pulse 2.6s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--ink-950);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease 0.22s both;
}
.hero-title .accent {
  color: var(--g700);
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s ease 0.05s both;
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--ink-700);
  font-weight: 400;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.6rem;
  letter-spacing: 0.005em;
  animation: fadeUp 0.8s ease 0.34s both;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  animation: fadeUp 0.8s ease 0.46s both;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 3.5rem;
  display: flex; gap: 3rem; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.58s both;
  padding-top: 2rem;
  border-top: 1px solid rgba(35,88,17,0.12);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-meta-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--g800);
  letter-spacing: -0.005em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--g950);
  color: var(--ivory);
  padding: 0.95rem 2.2rem;
  border-radius: 1px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(.2,.7,.2,1);
  display: inline-flex; align-items: center; gap: 0.7rem;
  border: 1px solid var(--g950);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--g700), var(--g800));
  transform: translateX(-101%); transition: transform 0.4s ease;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  border-color: var(--g700);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(35,88,17,0.22);
}

.btn-ghost {
  color: var(--ink-900);
  padding: 0.95rem 2.2rem;
  border-radius: 1px;
  border: 1px solid var(--ink-300);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--g800); color: var(--g800);
  background: rgba(91,173,40,0.04);
}

/* ============================================================
   HERO ORBITAL — refinamiento institucional
   ============================================================ */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  animation: fadeIn 1.2s ease 0.5s both;
}
.orbit-container {
  position: relative;
  width: 440px; height: 440px;
  animation: float 9s ease-in-out infinite;
}
.orbit-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: linear-gradient(145deg, var(--g800) 0%, var(--g950) 100%);
  border-radius: 50%;
  border: 1px solid var(--g600);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(184,146,74,0.12),
    0 0 0 14px rgba(91,173,40,0.04),
    0 30px 60px rgba(15,31,8,0.18);
  z-index: 10;
}
.orbit-core svg { width: 50px; height: 50px; }
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.ring1 { width: 220px; height: 220px; border: 1px solid var(--g300); animation: spin 14s linear infinite; }
.ring2 { width: 320px; height: 320px; border: 1px dashed rgba(91,173,40,0.28); animation: spin 22s linear infinite reverse; }
.ring3 { width: 420px; height: 420px; border: 1px solid var(--g100); animation: spin 32s linear infinite; }
.ring1-nodes { position: absolute; top:50%; left:50%; width:220px; height:220px; transform:translate(-50%,-50%); animation:spin 14s linear infinite; }
.ring2-nodes { position: absolute; top:50%; left:50%; width:320px; height:320px; transform:translate(-50%,-50%); animation:spin 22s linear infinite reverse; }
.orbit-node {
  position: absolute; width: 42px; height: 42px;
  background: var(--paper);
  border: 1px solid var(--g200);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px var(--shadow);
  color: var(--g800);
}
.orbit-node svg { width: 18px; height: 18px; }
.n1{top:-21px;left:calc(50% - 21px);}
.n2{bottom:-21px;left:calc(50% - 21px);}
.n3{left:-21px;top:calc(50% - 21px);}
.n4{right:-21px;top:calc(50% - 21px);}

/* ============================================================
   MARQUEE — banner institucional
   ============================================================ */
.marquee-bar {
  background: var(--g950);
  padding: 1.1rem 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(184,146,74,0.10);
  border-bottom: 1px solid rgba(184,146,74,0.10);
  position: relative;
}
.marquee-bar::before, .marquee-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.marquee-bar::before { left: 0; background: linear-gradient(90deg, var(--g950), transparent); }
.marquee-bar::after { right: 0; background: linear-gradient(-90deg, var(--g950), transparent); }
.marquee-track { display: inline-flex; gap: 3.5rem; animation: marquee 32s linear infinite; }
.marquee-item {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--g300);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  display: inline-flex; align-items: center; gap: 1rem;
}
.marquee-sep { color: var(--gold-500); font-size: 0.55rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-bar {
  display: flex;
  border-bottom: 1px solid var(--ink-100);
  background: var(--paper);
}
.stat-item {
  flex: 1; padding: 3rem 3rem;
  border-right: 1px solid var(--ink-100);
  transition: background 0.3s;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--g50); }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--g700), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.stat-item:hover::after { transform: scaleX(1); }

.stat-num {
  font-family: var(--font-num);
  font-size: 4rem;
  font-weight: 400;
  color: var(--g800);
  line-height: 1;
  letter-spacing: -0.015em;
}
.stat-num .stat-unit {
  font-size: 1.6rem;
  color: var(--g600);
  font-style: italic;
  font-weight: 400;
  margin-left: 0.15rem;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--gold-700);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink-950);
  line-height: 1.06;
  margin-bottom: 1.3rem;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g700);
}

.section-sub {
  font-family: var(--font-ui);
  color: var(--ink-700);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 4rem;
  font-weight: 400;
}

/* ============================================================
   SERVICES
   ============================================================ */
#servicios { background: var(--ivory); padding: 9rem 0; border-top: 1px solid var(--ink-100); }
.services-wrap { max-width: 1380px; margin: 0 auto; padding: 0 4rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink-100);
  border-radius: 2px; overflow: hidden;
  background: var(--ink-100);
  gap: 1px;
}
.service-card {
  background: var(--paper);
  padding: 3rem 2.4rem;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--g700), var(--gold-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--g50); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--ivory);
  border: 1px solid var(--g200);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  transition: all 0.35s;
}
.service-icon svg { stroke: var(--g700); transition: stroke 0.3s; }
.service-card:hover .service-icon { background: var(--g950); border-color: var(--g950); }
.service-card:hover .service-icon svg { stroke: var(--gold-300); }

.service-num {
  position: absolute; top: 2rem; right: 2.2rem;
  font-family: var(--font-num);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-300);
  letter-spacing: 0.05em;
  font-style: italic;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink-950);
  margin-bottom: 0.85rem;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.service-desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink-700);
  line-height: 1.75;
  font-weight: 400;
}
.service-points {
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid var(--ink-100);
  display: flex; flex-direction: column; gap: 0.45rem;
}
.service-points li {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.6rem;
}
.service-points li::before {
  content: ''; width: 10px; height: 1px;
  background: var(--g600);
  flex-shrink: 0;
}

/* ============================================================
   SECTORES (nuevo)
   ============================================================ */
.sectors-section {
  background: var(--paper);
  padding: 9rem 4rem;
  border-top: 1px solid var(--ink-100);
}
.sectors-inner { max-width: 1380px; margin: 0 auto; }
.sectors-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  align-items: end;
}
.sectors-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink-100);
  border: 1px solid var(--ink-100);
}
.sector-card {
  background: var(--ivory);
  padding: 3rem 2.6rem;
  position: relative;
  transition: background 0.4s;
}
.sector-card:hover { background: var(--paper); }
.sector-num {
  font-family: var(--font-num);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-700);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  display: block;
}
.sector-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-950);
  margin-bottom: 0.9rem;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.sector-desc {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.sector-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.sector-tag {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  color: var(--g800);
  background: var(--g100);
  padding: 0.3rem 0.7rem;
  border-radius: 1px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   ABOUT / FILOSOFÍA
   ============================================================ */
.about-section { background: var(--ivory); padding: 9rem 4rem; border-top: 1px solid var(--ink-100); }
.about-inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.cycle-svg { width: 100%; height: auto; }

.about-features { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2.5rem; }
.feature-row {
  display: flex; align-items: flex-start; gap: 1.3rem;
  padding: 1.5rem 1.6rem;
  border-radius: 2px;
  border: 1px solid var(--ink-100);
  background: var(--paper);
  transition: all 0.3s;
}
.feature-row:hover { border-color: var(--g300); box-shadow: 0 8px 24px var(--shadow); }
.feature-dot {
  width: 6px; height: 6px;
  background: var(--g700); border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(91,173,40,0.10);
}
.feature-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-950);
  font-size: 1.08rem;
  display: block; margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.feature-text span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink-700);
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   METODOLOGÍA (nuevo)
   ============================================================ */
.method-section {
  background: var(--g950);
  padding: 9rem 4rem;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.method-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(184,146,74,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184,146,74,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.method-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.method-section .section-label { color: var(--gold-300); }
.method-section .section-label::before { background: var(--gold-500); }
.method-section .section-title { color: var(--ivory); }
.method-section .section-title em { color: var(--gold-300); }
.method-section .section-sub { color: rgba(214,234,190,0.65); }

.method-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 4rem;
  position: relative;
}
.method-step {
  border-top: 1px solid rgba(214,234,190,0.18);
  padding: 1.8rem 1.6rem 0;
  position: relative;
}
.method-step::before {
  content: ''; position: absolute;
  top: -3px; left: 0;
  width: 36px; height: 5px;
  background: var(--gold-500);
}
.method-num {
  font-family: var(--font-num);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  display: block;
}
.method-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.9rem;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.method-desc {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: rgba(214,234,190,0.7);
  line-height: 1.75;
}

/* ============================================================
   CREDENCIALES / PARTNERS (nuevo)
   ============================================================ */
.partners-section {
  background: var(--paper);
  padding: 7rem 4rem;
  border-top: 1px solid var(--ink-100);
}
.partners-inner { max-width: 1380px; margin: 0 auto; text-align: center; }
.partners-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  margin-bottom: 3rem;
  display: block;
}
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: 2px;
  overflow: hidden;
}
.partner-cell {
  background: var(--paper);
  padding: 2.4rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s;
  min-height: 140px;
}
.partner-cell:hover { background: var(--ivory); }
.partner-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-950);
  letter-spacing: -0.01em;
}
.partner-status {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: var(--gold-700);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--ivory);
  padding: 9rem 4rem;
  border-top: 1px solid var(--ink-100);
}
.testimonials-inner { max-width: 1380px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: 2px;
  padding: 3rem 2.6rem;
  transition: all 0.4s;
  position: relative;
}
.testimonial-card::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--gold-500);
}
.testimonial-card:hover {
  border-color: var(--g300);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px var(--shadow);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-300);
  line-height: 0.5;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.55;
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-100);
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--g50);
  border: 1px solid var(--g300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--g800);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--ink-950);
  letter-spacing: 0.01em;
}
.author-role {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
  background: var(--paper);
  padding: 9rem 4rem;
  border-top: 1px solid var(--ink-100);
}
.team-inner { max-width: 1380px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }

.team-card {
  border: 1px solid var(--ink-100);
  border-radius: 2px;
  padding: 3rem 2.4rem;
  text-align: left;
  background: var(--ivory);
  transition: all 0.35s;
  position: relative;
}
.team-card::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--g700);
  transition: width 0.4s ease;
}
.team-card:hover::before { width: 100%; }
.team-card:hover { background: var(--paper); border-color: var(--g300); transform: translateY(-2px); box-shadow: 0 16px 36px var(--shadow); }

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--g300);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--g800);
  letter-spacing: 0.02em;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-950);
  margin-bottom: 0.3rem;
  letter-spacing: -0.012em;
}
.team-role {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.team-bio {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-700);
  line-height: 1.75;
  font-weight: 400;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 9rem 4rem;
  background: var(--ivory);
  border-top: 1px solid var(--ink-100);
}
.contact-inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 6rem; align-items: start; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: 2px;
  padding: 3rem;
  position: relative;
}
.contact-form::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g700) 0%, var(--gold-500) 100%);
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-500);
  margin-bottom: 0.55rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--ivory);
  border: 1px solid var(--ink-100); border-radius: 2px;
  padding: 0.95rem 1rem;
  color: var(--ink-950);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: all 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--g700);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(91,173,40,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-300); }
.form-group textarea { height: 120px; resize: none; line-height: 1.6; }
.form-group select option { background: var(--paper); color: var(--ink-950); }

.btn-submit {
  width: 100%;
  background: var(--g950); color: var(--ivory);
  border: 1px solid var(--g950); padding: 1.05rem;
  border-radius: 1px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--g800); border-color: var(--g800); box-shadow: 0 12px 28px rgba(35,88,17,0.22); }
.btn-submit:disabled { background: var(--g700); cursor: not-allowed; }

.contact-item {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 0.9rem; padding: 1.2rem 1.5rem;
  background: var(--paper); border: 1px solid var(--ink-100);
  border-radius: 2px; transition: all 0.3s;
}
.contact-item:hover { border-color: var(--g300); transform: translateX(4px); }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--g800);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-detail span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact-detail strong {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ink-950);
  font-weight: 500;
  letter-spacing: 0.005em;
}

.form-success {
  background: var(--g100);
  border: 1px solid var(--g300);
  border-radius: 2px;
  padding: 1rem 1.2rem;
  color: var(--g800);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  display: none;
  margin-top: 1rem;
}
.form-success.visible { display: block; }
.form-error {
  background: #FCF1EF;
  border: 1px solid #E8C9C2;
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  color: #92301F;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  margin-top: 0.5rem;
  display: none;
}
.form-error.visible { display: block; }

.contact-trust {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px dashed var(--g300);
  border-radius: 2px;
  display: flex; align-items: center; gap: 1rem;
}
.contact-trust-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--g700);
}
.contact-trust-text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.contact-trust-text strong { color: var(--g800); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--g950);
  padding: 4rem 4rem 2rem;
  color: var(--ivory);
  border-top: 1px solid rgba(184,146,74,0.12);
}
.footer-inner {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(214,234,190,0.12);
}
.footer-brand .footer-logo-img { height: 44px; width: auto; background: rgba(255,255,255,0.92); padding: 5px 10px; border-radius: 3px; opacity: 0.95; margin-bottom: 1.2rem; }
.footer-brand p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--g300);
  font-style: italic;
  line-height: 1.5;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(214,234,190,0.78);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: 1380px; margin: 2rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(214,234,190,0.6);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-300);
  font-style: italic;
}

/* ============================================================
   EQUIPAMIENTO & MONTAJE DE OFICINAS
   ============================================================ */
.equip-section {
  background: var(--paper);
  padding: 9rem 4rem;
  border-top: 1px solid var(--ink-100);
}
.equip-inner { max-width: 1380px; margin: 0 auto; }

.equip-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  align-items: end;
}

.equip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink-100);
  border: 1px solid var(--ink-100);
  margin-bottom: 3rem;
}

.equip-card {
  background: var(--ivory);
  padding: 2.6rem 2.4rem;
  position: relative;
  transition: background 0.35s;
}
.equip-card:hover { background: var(--paper); }
.equip-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--g700), var(--gold-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.equip-card:hover::before { transform: scaleX(1); }

.equip-icon {
  width: 48px; height: 48px;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  transition: all 0.35s;
  color: var(--g700);
}
.equip-card:hover .equip-icon { background: var(--g950); border-color: var(--g950); color: var(--gold-300); }

.equip-cat {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink-950);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.equip-desc {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: var(--ink-700);
  line-height: 1.75;
  font-weight: 400;
}

/* Highlight: montaje de oficinas */
.equip-highlight {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
  background: var(--g950);
  border-radius: 2px;
  padding: 4rem 4.5rem;
  position: relative; overflow: hidden;
}
.equip-highlight::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(184,146,74,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(184,146,74,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.equip-highlight-text { position: relative; }
.equip-highlight-label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--gold-300);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.equip-highlight-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold-500);
}
.equip-highlight-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.016em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.equip-highlight-title em { font-style: italic; color: var(--gold-300); font-weight: 400; }
.equip-highlight-desc {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(214,234,190,0.72);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.equip-highlight-points {
  margin-top: 1.6rem; margin-bottom: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.equip-highlight-points li {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(214,234,190,0.8);
  display: flex; align-items: center; gap: 0.65rem;
}
.equip-highlight-points li::before {
  content: ''; width: 12px; height: 1px;
  background: var(--gold-500); flex-shrink: 0;
}

.equip-checklist {
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.equip-check-item {
  display: flex; align-items: center; gap: 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(214,234,190,0.12);
  border-radius: 2px;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: rgba(214,234,190,0.85);
  transition: background 0.3s;
}
.equip-check-item:hover { background: rgba(255,255,255,0.08); }
.equip-check-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-300);
  flex-shrink: 0;
  min-width: 28px;
}

/* Responsive equip */
@media (max-width: 1100px) {
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .equip-section { padding: 5rem 2rem; }
  .equip-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .equip-highlight { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2.5rem; }
}
@media (max-width: 768px) {
  .equip-grid { grid-template-columns: 1fr; }
  .equip-highlight { padding: 2.5rem 1.5rem; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.25;} }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Nav con dos CTA: comprimir espaciado antes de que se desborde */
@media (max-width: 1400px) {
  nav { padding: 1rem 2.5rem; }
  nav.scrolled { padding: 0.7rem 2.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { letter-spacing: 0.12em; }
  .nav-cta { padding: 0.65rem 0.9rem; letter-spacing: 0.1em; }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.7rem 2rem; }
  .nav-links { gap: 1.6rem; }
  .hero { padding: 7rem 2rem 3rem; gap: 3rem; }
  .about-section, .contact-section, .partners-section, .method-section, .sectors-section, .testimonials-section, .team-section { padding: 5rem 2rem; }
  .about-inner, .contact-inner, .sectors-head { gap: 3rem; }
  footer { padding: 3rem 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--ivory); border-bottom: 1px solid var(--ink-100); padding: 1.5rem 2rem; gap: 1.4rem; box-shadow: 0 8px 24px var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-hamburger { display: flex; }
  .nav-cta, .nav-actions { display: none; }
  .nav-link-mobile { display: block; }
  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; text-align: left; gap: 3rem; }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-wrap: wrap; }
  .hero-meta { gap: 2rem; }
  .hero-visual { order: -1; }
  .orbit-container { width: 280px; height: 280px; }
  .ring1 { width: 140px; height: 140px; }
  .ring2 { width: 210px; height: 210px; }
  .ring3 { width: 270px; height: 270px; }
  .ring1-nodes { width: 140px; height: 140px; }
  .ring2-nodes { width: 210px; height: 210px; }
  .orbit-core { width: 76px; height: 76px; }
  .orbit-core svg { width: 32px; height: 32px; }
  .orbit-node { width: 30px; height: 30px; }
  .orbit-node svg { width: 14px; height: 14px; }
  .n1{top:-15px;left:calc(50% - 15px);}
  .n2{bottom:-15px;left:calc(50% - 15px);}
  .n3{left:-15px;top:calc(50% - 15px);}
  .n4{right:-15px;top:calc(50% - 15px);}
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--ink-100); padding: 2rem 1.5rem; }
  .stat-num { font-size: 3rem; }
  .services-grid, .sectors-grid, .partners-grid, .method-grid { grid-template-columns: 1fr; }
  #servicios { padding: 5rem 0; }
  .services-wrap { padding: 0 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sectors-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  .section-sub { margin-bottom: 2.5rem; }
  .testimonial-text { font-size: 1.1rem; }
}
