/* ═══════════════════════════════════════════
   PLERP SYSTEMS — Corporate Theme
   Palette:
   --bg:        #FFFFFF
   --bg-alt:    #F7F8FA
   --text:      #111827
   --accent:    #0B4F47   deep teal (trust, stability)
   --accent-2:  #0D9488   medium teal (active states)
   --gold:      #92712A   warm gold (premium detail)
═══════════════════════════════════════════ */

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

:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F7F8FA;
  --bg-card:      #FFFFFF;
  --border:       #E4E7EC;
  --border-hover: #0B4F47;
  --accent:       #0B4F47;
  --accent-2:     #0D9488;
  --accent-light: #EAF4F3;
  --gold:         #92712A;
  --gold-light:   #F5EDD8;
  --text:         #111827;
  --text-muted:   #4B5563;
  --text-faint:   #9CA3AF;
  --radius:       10px;
  --radius-sm:    6px;
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font:         'Outfit', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 28px rgba(11,79,71,0.14), 0 2px 6px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

::selection { background: var(--accent); color: #fff; }


/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  background: transparent;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  z-index: 1000;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-svg { flex-shrink: 0; }

.navbar-logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 6px;
}


.logo-wordmark {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 1.5px;
  line-height: 1;
}

.logo-sub {
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-size: 13px;
}

.navbar-toggler {
  border: none;
  background: none;
  color: var(--text);
  font-size: 18px;
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--accent) !important;
  background: var(--accent-light);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn-cta-sm {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  display: inline-block;
  letter-spacing: 0.2px;
}

.btn-cta-sm:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11,79,71,0.25);
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  /* Subtle geometric texture via SVG */
  background-image:
    linear-gradient(rgba(11,79,71,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,79,71,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Soft accent orb — top right */
#hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11,79,71,0.07) 0%, transparent 65%);
  top: -80px;
  right: -140px;
  pointer-events: none;
}

/* Subtle orb — bottom left */
#hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,0.05) 0%, transparent 65%);
  bottom: -60px;
  left: -80px;
  pointer-events: none;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(11,79,71,0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
}

.hero-title {
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  color: var(--text);
}

/* Replace gradient text with a clean two-tone */
.gradient-text {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn-primary-hero {
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
  letter-spacing: 0.2px;
}

.btn-primary-hero:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,79,71,0.28);
  color: #fff;
}

.btn-ghost-hero {
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}

.btn-ghost-hero:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.9; }
}


/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section-dark   { padding: 96px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.section-darker { padding: 96px 0; background: var(--bg);     border-top: 1px solid var(--border); }

.section-bg-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 30, 28, 0.82);
  z-index: 0;
}
.section-bg-img > .container {
  position: relative;
  z-index: 1;
}

.section-bg-img .section-title    { color: #ffffff; }
.section-bg-img .section-subtitle { color: rgba(255, 255, 255, 0.70); }
.section-bg-img .section-eyebrow  { color: var(--accent-2); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  height: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(13,148,136,0.12), 0 12px 32px rgba(0,0,0,0.08);
}

/* Área visual superior con gradiente e ícono */
.service-card__visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  transition: transform 0.4s ease;
  position: relative;
}


.service-card:hover .service-card__visual i {
  transform: scale(1.12);
  display: block;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.sc-v1 { background: linear-gradient(135deg, #051f1c 0%, #0B4F47 100%); color: #0D9488; }
.sc-v2 { background: linear-gradient(135deg, #041a1a 0%, #0d6e6e 100%); color: #14b8a6; }
.sc-v3 { background: linear-gradient(135deg, #050f30 0%, #1e3a8a 100%); color: #60a5fa; }
.sc-v4 { background: linear-gradient(135deg, #1a0533 0%, #4c1d95 100%); color: #a78bfa; }
.sc-v5 { background: linear-gradient(135deg, #041f18 0%, #065f46 100%); color: #34d399; }
.sc-v6 { background: linear-gradient(135deg, #1a1205 0%, #78350f 100%); color: #fbbf24; }

#services {
  background: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.08);
}
#services .section-title    { color: #ffffff; }
#services .section-subtitle { color: rgba(255,255,255,0.65); }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 22px 8px;
  letter-spacing: -0.2px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 22px 18px;
}

/* Lista de tags con ícono */
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 22px;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 12px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 99px;
  transition: background var(--transition), border-color var(--transition);
}

.service-list li:hover {
  background: rgba(11,79,71,0.08);
  border-color: var(--accent);
}

.service-list li i {
  width: auto;
  text-align: center;
  font-size: 11px;
  color: var(--accent-2);
  flex-shrink: 0;
}

/* Barra de valores inferior */
.services-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.sv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: var(--bg-card);
  transition: background var(--transition);
}

.sv-item:hover { background: var(--bg-alt); }

.sv-item > i {
  font-size: 22px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.sv-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.sv-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-values { grid-template-columns: 1fr; }
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.service-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 9px;
  border-radius: 3px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(11,79,71,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.why-card--highlight {
  background: var(--accent-light);
  border-color: rgba(11,79,71,0.2);
}

.why-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 56px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(11,79,71,0.22);
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   TECH STACK
═══════════════════════════════════════════ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.stack-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}

.stack-item:hover {
  border-color: rgba(11,79,71,0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: var(--accent-light);
}

.stack-item i {
  font-size: 26px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.stack-item:hover i { color: var(--accent); }

.stack-svg-icon {
  color: var(--text-muted);
  transition: color var(--transition);
  flex-shrink: 0;
}

.stack-item:hover .stack-svg-icon { color: var(--accent); }

.stack-item span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
  text-align: center;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.stack-item:hover span { color: var(--accent); }


/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.contact-info-item i {
  font-size: 15px;
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.contact-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B5563' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,79,71,0.09);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-faint); }

.contact-form textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.btn-submit:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11,79,71,0.25);
}


/* ═══════════════════════════════════════════
   PROMO — FREE TRIAL
═══════════════════════════════════════════ */
.section-promo {
  padding: 96px 0;
  background: linear-gradient(135deg, #0B4F47 0%, #064e3b 60%, #0D9488 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.section-promo::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.section-promo::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.promo-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.promo-highlight {
  color: #6ee7b7;
}

.promo-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.promo-niches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.promo-niche {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 99px;
  transition: background var(--transition), border-color var(--transition);
}

.promo-niche:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

.promo-niche i {
  font-size: 14px;
  opacity: 0.85;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  margin-bottom: 20px;
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  color: var(--accent);
}

.promo-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--text);
  padding: 52px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer .logo-text { color: #fff; }
footer .logo-accent { color: var(--accent-2); }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 22px;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 22px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-mono {
  font-family: var(--font-mono);
  color: var(--accent-2);
  font-size: 11px;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 992px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { padding: 120px 0 80px; }
  .hero-title   { letter-spacing: -1.2px; }
  .hero-stats   { gap: 28px; }
  .stat-divider { display: none; }
  .process-timeline { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section-dark, .section-darker { padding: 72px 0; }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }


/* Honeypot — invisible para humanos, señuelo para bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   FORM FEEDBACK
═══════════════════════════════════════════ */
.form-message {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
  display: none;
}
.form-message.success {
  background: rgba(4,120,87,0.07);
  border: 1px solid rgba(4,120,87,0.22);
  color: #047857;
  display: block;
}
.form-message.error {
  background: rgba(185,28,28,0.06);
  border: 1px solid rgba(185,28,28,0.18);
  color: #b91c1c;
  display: block;
}
