:root {
  --orange: #FF8700;
  --orange-dim: #cc6c00;
  --teal: #2D7D8F;
  --black: #000000;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-600: #666666;
  --gray-800: #222222;
}

[data-theme="dark"] {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --surface: #161616;
  --border: rgba(255,255,255,0.08);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.3);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --nav-bg: rgba(8,8,8,0.92);
  --pillar-hover: rgba(255,135,0,0.08);
}

[data-theme="light"] {
  --bg: #F8F7F4;
  --bg2: #FFFFFF;
  --bg3: #F0EEE9;
  --surface: #FFFFFF;
  --border: rgba(0,0,0,0.08);
  --text-primary: #0A0A0A;
  --text-secondary: rgba(0,0,0,0.55);
  --text-muted: rgba(0,0,0,0.35);
  --card-bg: #FFFFFF;
  --card-border: rgba(0,0,0,0.1);
  --nav-bg: rgba(248,247,244,0.92);
  --pillar-hover: rgba(255,135,0,0.06);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.3s ease;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,135,0,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 6px; height: 6px; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: var(--orange); }

/*MAPA*/
.ca-map-image{
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}

@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  margin: 0;
  line-height: 0;
  height: 60px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: height 0.3s, max-width 0.3s;
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 32px;
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 28px;
    max-width: 100px;
  }
}

.nav-actions { 
  display: flex; 
  align-items: center; 
  gap: 1.25rem;
  order: 2;
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 0.75rem;
  }
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .lang-toggle {
    padding: 2px;
  }
}

.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .lang-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
}

.lang-btn.active {
  background: var(--orange);
  color: #000;
}

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  font-size: 1rem;
}
.theme-toggle:hover { border-color: var(--orange); }

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

/* STICKY SECTION NAV */
.section-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,135,0,0.2);
  display: flex;
  gap: 32px;
  padding: 12px 40px;
  overflow-x: auto;
}

.section-nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.section-nav-link:hover {
  color: var(--orange);
}

.section-nav-cta {
  color: var(--orange);
  font-weight: 600;
}

.section-nav-close {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0 8px;
}

@media (max-width: 768px) {
  .section-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(16px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .section-nav.active {
    transform: translateX(0);
  }

  .section-nav-link {
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,135,0,0.1);
  }

  .section-nav-close {
    display: block;
  }

  [data-theme='light'] .section-nav {
    background: rgba(248,247,244,0.98);
  }

  [data-theme='light'] .section-nav-link {
    color: rgba(0,0,0,0.7);
  }
}

[data-theme='light'] .section-nav {
  background: rgba(248,247,244,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

[data-theme='light'] .section-nav-link {
  color: rgba(0,0,0,0.6);
}

[data-theme='light'] .section-nav-link:hover {
  color: var(--orange);
}

/* PROGRESS */
.scroll-progress {
  position: fixed;
  top: 72px; left: 0;
  height: 2px;
  background: var(--orange);
  z-index: 99;
  transition: width 0.1s linear;
  width: 0%;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.08;
  pointer-events: none;
}

[data-theme='dark'] .hero-grid-bg {
  opacity: 0.08;
}

[data-theme='light'] .hero-grid-bg {
  opacity: 0.03;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,135,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(255,135,0,0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,135,0,0.06);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s 0.2s forwards;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-logo {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.9s 0.4s forwards;
}

.hero-logo img {
  width: clamp(220px, 35vw, 520px);
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-exports {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.8rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.9s 0.6s forwards;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 0.9s 0.8s forwards;
}

.hero-tagline em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fade-up 0.9s 1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover { background: #FF9E2E; transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover { 
  border-color: rgba(255,255,255,0.9);
  color: var(--orange);
  background: rgba(255,255,255,0.08);
}

[data-theme='light'] .btn-secondary {
  border: 1.5px solid rgba(0,0,0,0.6);
  color: #000000;
}

[data-theme='light'] .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 0.9s 1.4s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scroll-down 1.8s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* STATS TICKER */
.stats-bar {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
}

.stats-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stat-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
}

.stat-dot {
  width: 4px; height: 4px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}

/* SECTIONS */
section { padding: 120px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-title .accent { color: var(--orange); }

.section-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
}

/* WHO WE ARE */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
}

.who-big-z {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.07;
  line-height: 1;
  user-select: none;
  letter-spacing: -0.05em;
}

.who-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.who-stat {
  background: var(--card-bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s;
}

.who-stat:hover { background: var(--pillar-hover); }

.who-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.who-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* PILLARS */
/* PILLARS */
.pillars-section { 
  background: var(--bg2); 
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4rem;
}

.pillar-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar-card:hover { background: var(--pillar-hover); }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.pillar-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.pillar-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* MODEL */
.model-section { position: relative; overflow: hidden; }

.model-bg-text {
  position: absolute;
  font-size: 20rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.03;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.model-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.model-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.model-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 2;
  background: var(--bg);
  padding: 4px 2px;
}

.model-step:hover { border-color: var(--orange); background: var(--pillar-hover); }

.model-step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.model-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.model-step-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* TERRITORIES */
.territories-section { background: var(--bg2); }

.territories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4rem;
}

.territory-card {
  background: var(--card-bg);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
}

.territory-card:hover { background: var(--pillar-hover); }

.territory-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.status-active { background: rgba(255,135,0,0.12); color: var(--orange); }
.status-dev { background: rgba(45,125,143,0.12); color: var(--teal); }
.status-future { background: rgba(255,255,255,0.05); color: var(--text-muted); }

.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.territory-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.territory-countries {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* PROPOSITION */
.prop-section { position: relative; }

.prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4rem;
}

.prop-card {
  background: var(--card-bg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-top 0.3s;
  border-top: 3px solid transparent;
}

.prop-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--orange);
  width: 0;
  transition: width 0.5s ease;
}

.prop-card:hover { background: var(--pillar-hover); }
.prop-card:hover::after { width: 100%; }

/* Card Audience A - Teal */
.card-audience-a {
  border-top: 3px solid #2D7D8F;
}

.card-audience-a .prop-card-label {
  color: #2D7D8F;
}

/* Card Audience B - Orange */
.card-audience-b {
  border-top: 3px solid #FF8700;
}

.prop-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.prop-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.prop-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* COMING SOON */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.cs-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cs-building {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.cs-building.left { left: 0; transform: scaleX(-1); }
.cs-building.right { right: 0; }

.bld {
  background: var(--border);
  border-top: 1px solid rgba(255,135,0,0.15);
  animation: build-up 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes build-up {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

.cs-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: scan 4s linear infinite;
  opacity: 0.6;
}

@keyframes scan {
  0% { top: -2px; }
  100% { top: 100%; }
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255,135,0,0.35);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,135,0,0.06);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cs-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--text-primary);
}

.cs-title .highlight { color: var(--orange); }

.cs-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.cs-progress-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.cs-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cs-progress-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.cs-progress-pct {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
}

.cs-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.cs-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-dim), var(--orange));
  border-radius: 2px;
  animation: fill-bar 2.5s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fill-bar {
  to { width: 67%; }
}

.cs-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

.cs-feat-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-contact {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cs-contact a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.cs-contact a:hover { text-decoration: underline; }

/* WHATSAPP BUTTON*/ 
#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.3s ease;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
}

/* CONTACT CTA */
.cs-contact-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* PROGRESS CONTEXT */
.cs-progress-context {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 2px solid rgba(255,135,0,0.15);
  padding: 4rem 3rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,135,0,0.1);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.footer-logo .z { color: var(--orange); font-style: italic; }

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 4px 0 0 0;
  letter-spacing: 0.03em;
}

.footer-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-contacts, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contacts h4, .footer-social h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.footer-email, .footer-whatsapp {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-email:hover, .footer-whatsapp:hover {
  color: var(--white);
  gap: 12px;
}

.footer-social-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--orange);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-social-link:hover {
  color: var(--white);
  gap: 12px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,135,0,0.2), transparent);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-center {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

/* DIVIDER */
.orange-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .model-flow { flex-direction: column; }
  .model-step::after { display: none; }
  .territories-grid { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: 1fr; }
  nav { padding: 0 1.5rem; }
  .container { padding: 0 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
