/**
 * Digishop Ecuador - Pixel Perfect CSS v1.0
 * Paleta: Dark Mode Industrial (CMYK adaptado)
 */

:root {
  --ds-yellow: #FFD400;
  --ds-fuchsia: #e6007e;
  --ds-fuchsia-light: #FF2E9A;
  --ds-blue: #1877f2;
  --ds-sky: #29B6F6;
  --ds-gray-light: #C8C8C8;
  --ds-gray-mid: #888888;
  --ds-black: #1A1A1A;
  --ds-bg: #1a1a1a;
  --ds-surface: #2E2E2E;
  --ds-surface-light: #3A3A3A;
  --ds-text: #F2F2F2;
  --ds-text-muted: #B0B0B0;
  --ds-text-body: #c8c8c8;
  --spacing-section: 80px;
  --container-max-width: 1280px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--ds-bg);
  color: var(--ds-text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}

/* Nav container - centrado como el resto del contenido */
.nav__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav__container {
    padding: 12px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
  }
  .nav__brand {
    justify-self: start;
  }
  .nav__menu {
    justify-self: center;
    display: flex;
    justify-content: center;
  }
  .nav__cta-btn {
    justify-self: end;
  }
}

@media (max-width: 1024px) {
  .nav__container { padding: 12px 20px; }
}

/* Brand con logo PNG */
.nav__brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}
.nav__logo { 
  height: 44px; 
  width: auto;
  object-fit: contain;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__brand-name {
  font-size: 18px; 
  font-weight: 900; 
  letter-spacing: -0.04em;
  color: white; 
  line-height: 1;
}
.nav__brand-tagline {
  font-size: 9px; 
  font-weight: 700; 
  color: var(--ds-blue);
  letter-spacing: 0.3em; 
  text-transform: uppercase; 
  opacity: 0.9;
}

/* Menu desktop */
.nav__menu {
  display: none; 
  gap: 28px; 
  font-size: 12px; 
  font-weight: 700;
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--ds-text-muted);
  align-items: center;
}
@media (min-width: 1024px) {
  .nav__menu { 
    display: flex;
    gap: 28px;
  }
}

.nav__link {
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  position: relative;
}
.nav__link:hover {
  color: var(--ds-text);
  border-bottom-color: var(--ds-text-muted);
}
.nav__link--active {
  color: var(--ds-blue);
  border-bottom-color: var(--ds-blue);
}

/* Contacto resaltado - integrado en el menú */
.nav__link--highlight {
  background-color: var(--ds-fuchsia);
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  border-bottom: none !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.nav__link--highlight:hover {
  background-color: var(--ds-fuchsia-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
}
.nav__link--highlight.nav__link--active {
  background-color: var(--ds-fuchsia-light);
  box-shadow: 0 0 0 2px var(--ds-blue);
}

/* Botón CTA en nav - Cotizar Proyecto */
.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ds-fuchsia);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nav__cta-btn:hover {
  background-color: var(--ds-fuchsia-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 0, 126, 0.4);
}

.nav__cta-btn:hover::before {
  left: 100%;
}

.nav__cta-btn:active {
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.15em;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn--primary {
  background-color: var(--ds-fuchsia); color: white;
}
.btn--primary:hover {
  background-color: var(--ds-fuchsia-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 0, 126, 0.3);
}
.btn--secondary {
  background-color: transparent; color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn__pulse {
  width: 6px; height: 6px; background-color: white;
  border-radius: 50%; animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Hero con animación fadeIn */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; border-bottom: 1px solid var(--border-subtle);
  padding-top: 80px;
}

/* Animación fadeIn para contenido del hero */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tag {
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}

.hero__title {
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 0.4s forwards;
}

.hero__description {
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 0.6s forwards;
}

.hero__actions {
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 0.8s forwards;
}
.hero__slider { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero__slide.active { opacity: 0.35; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%) contrast(1.1);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ds-bg) 0%, rgba(26,26,26,0.9) 50%, transparent 100%);
  z-index: 10;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px; z-index: 15; pointer-events: none;
}
.hero__content {
  position: relative; z-index: 20;
  max-width: 900px; padding: 120px 0 80px;
}
.hero__tag {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
}
.hero__tag-line {
  width: 48px; height: 2px; background-color: var(--ds-blue);
}
.hero__tag-text {
  font-size: 14px; font-weight: 900; color: var(--ds-blue);
  letter-spacing: 0.4em; text-transform: uppercase;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; color: white;
  line-height: 0.9; margin-bottom: 40px;
  letter-spacing: -0.06em;
  font-style: italic;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); line-height: 1; }
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--ds-blue); }
.hero__description {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--ds-text-muted); margin-bottom: 48px;
  max-width: 650px; font-weight: 500; line-height: 1.6;
}
.hero__actions {
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; gap: 24px; }
}

/* Business Units con animaciones */
.business-units {
  padding: var(--spacing-section) 0;
  background-color: var(--ds-surface);
  border-bottom: 1px solid var(--border-subtle);
}

/* Animación de entrada para el header */
.business-units .section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.business-units.animate-in .section-header {
  opacity: 1;
  transform: translateY(0);
}

/* Animación secuencial para cards */
.unit-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.business-units.animate-in .unit-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.business-units.animate-in .unit-card:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.business-units.animate-in .unit-card:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.business-units.animate-in .unit-card:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header__eyebrow {
  font-size: 12px; font-weight: 800;
  color: var(--ds-blue); letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: white;
  letter-spacing: -0.04em; margin-bottom: 16px;
}
.section-header__subtitle {
  font-size: 1.1rem; color: var(--ds-text-muted);
  max-width: 600px; margin: 0 auto;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .units-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .units-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Cards de Unidades de Negocio mejorados */
.unit-card {
  background: linear-gradient(180deg, rgba(58,58,58,0.5), rgba(46,46,46,0.8));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
}

.unit-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-color, var(--ds-fuchsia));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              0 0 0 1px var(--card-color, var(--ds-fuchsia));
}

.unit-card__image-wrapper {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.unit-card__image {
  position: relative;
  overflow: hidden;
}

.unit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.unit-card:hover .unit-card__image img {
  transform: scale(1.08);
}

.unit-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 50%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.unit-card:hover .unit-card__overlay {
  opacity: 0.8;
}

.unit-card__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--card-color, var(--ds-fuchsia));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.unit-card:hover .unit-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.unit-card__arrow svg {
  width: 20px;
  height: 20px;
}

.unit-card__content {
  padding: 24px;
}

.unit-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.unit-card:hover .unit-card__label {
  background: var(--card-color, var(--ds-fuchsia));
  color: white !important;
}

.unit-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.unit-card__description {
  font-size: 0.95rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
}

/* Software Section con Video Background */
.software-section {
  position: relative;
  padding: calc(var(--spacing-section) * 1.5) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

/* Video Background */
.software-section__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.software-section__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.software-section__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.98) 0%, rgba(26,26,26,0.85) 50%, rgba(26,26,26,0.7) 100%);
  z-index: 1;
}

/* Content Grid - Dos columnas */
.software-section__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .software-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Columnas */
.software-section__column {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.software-section.animate-in .software-section__column--header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.software-section.animate-in .software-section__column--features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Header Column */
.software-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-fuchsia);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 10px 20px;
  background: rgba(230, 0, 126, 0.15);
  border: 1px solid rgba(230, 0, 126, 0.4);
  border-radius: 4px;
}

.software-section__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.software-section__description {
  font-size: 1.2rem;
  color: var(--ds-text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Features Column */
.software-section__column--features {
  padding-top: 60px;
}

@media (max-width: 1024px) {
  .software-section__column--features {
    padding-top: 0;
  }
}

.software-section__bullets {
  list-style: none;
  margin-bottom: 40px;
}

.software-section__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--ds-text);
  font-size: 1.1rem;
  line-height: 1.5;
}

.bullet-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--ds-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
}

.bullet-icon svg {
  width: 16px;
  height: 16px;
}

.software-section__cta {
  padding: 18px 36px;
  font-size: 14px;
}

/* Trust Band con Logo Slider */
.trust-band {
  padding: 80px 0 60px;
  background-color: var(--ds-surface);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.trust-band__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--ds-text-muted);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.trust-band.animate-in .trust-band__text {
  opacity: 1;
  transform: translateY(0);
}

.trust-band .logo-slider {
  opacity: 0;
  transition: opacity 0.8s ease-out 0.3s;
}

.trust-band.animate-in .logo-slider {
  opacity: 1;
}

/* Logo Slider */
.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--ds-surface) 0%, transparent 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--ds-surface) 0%, transparent 100%);
}

.logo-slider__track {
  display: flex;
  gap: 60px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.logo-slider:hover .logo-slider__track {
  animation-play-state: paused;
}

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

.logo-slider__item {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.logo-slider__item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.logo-slider__item img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  background-color: var(--ds-black);
  border-top: 1px solid var(--border-subtle);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px; margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer__brand { max-width: 300px; }
.footer__logo { height: 40px; margin-bottom: 20px; }
.footer__description {
  font-size: 0.95rem; color: var(--ds-text-muted);
  line-height: 1.6;
}
.footer__title {
  font-size: 12px; font-weight: 800;
  color: white; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer__links {
  list-style: none;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.95rem; color: var(--ds-text-muted);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--ds-blue); }
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer__copyright {
  font-size: 0.85rem; color: var(--ds-text-muted);
}
.footer__social {
  display: flex; gap: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--ds-surface);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s;
}
.footer__social a:hover {
  background-color: var(--ds-blue);
}

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background-color: var(--ds-bg);
  border-bottom: 1px solid var(--border-subtle);
}
.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: white;
  letter-spacing: -0.04em; margin-bottom: 20px;
}
.page-header__subtitle {
  font-size: 1.2rem; color: var(--ds-text-muted);
  max-width: 700px; line-height: 1.6;
}

/* Content Grid */
.content-grid {
  padding: var(--spacing-section) 0;
  background-color: var(--ds-surface);
}
.content-intro {
  margin-bottom: 60px;
}
.content-intro__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: white;
  margin-bottom: 20px;
}
.content-intro__body {
  font-size: 1.1rem; color: var(--ds-text-muted);
  line-height: 1.7; max-width: 800px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

.capability-card {
  background: linear-gradient(180deg, rgba(58,58,58,0.3), rgba(46,46,46,0.5));
  border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 32px;
  transition: border-color 0.3s;
}
.capability-card:hover {
  border-color: var(--ds-blue);
}
.capability-card__label {
  font-size: 11px; font-weight: 800;
  color: var(--ds-sky); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 12px;
}
.capability-card__title {
  font-size: 1.25rem; font-weight: 800;
  color: white; margin-bottom: 12px;
}
.capability-card__description {
  font-size: 0.95rem; color: var(--ds-text-muted);
  line-height: 1.6;
}

/* Solutions List */
.solutions-list {
  padding: var(--spacing-section) 0;
  background-color: var(--ds-bg);
}
.solution-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.solution-item:last-child { border-bottom: none; }
.solution-item__title {
  font-size: 1.5rem; font-weight: 800;
  color: white; margin-bottom: 16px;
}
.solution-item__description {
  font-size: 1.05rem; color: var(--ds-text-muted);
  line-height: 1.7; max-width: 800px;
}

/* Contact Page */
.contact-page {
  padding: var(--spacing-section) 0;
  background-color: var(--ds-surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info__item {
  margin-bottom: 32px;
}
.contact-info__label {
  font-size: 12px; font-weight: 800;
  color: var(--ds-text-muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.contact-info__value {
  font-size: 1.25rem; font-weight: 700;
  color: white; margin-bottom: 4px;
}
.contact-info__value a { color: var(--ds-blue); }
.contact-info__value a:hover { text-decoration: underline; }
.contact-info__description {
  font-size: 0.9rem; color: var(--ds-text-muted);
}

/* Form */
.form {
  background: linear-gradient(180deg, rgba(58,58,58,0.5), rgba(46,46,46,0.8));
  border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 40px;
}
.form__title {
  font-size: 1.5rem; font-weight: 800;
  color: white; margin-bottom: 8px;
}
.form__subtitle {
  font-size: 0.95rem; color: var(--ds-text-muted);
  margin-bottom: 32px;
}
.form__group { margin-bottom: 24px; }
.form__label {
  display: block; font-size: 12px;
  font-weight: 700; color: var(--ds-text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%; padding: 14px 16px;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px; color: white;
  font-size: 1rem; transition: border-color 0.3s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none; border-color: var(--ds-blue);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--ds-gray-mid);
}

/* Alert Messages */
.alert {
  padding: 16px 20px; border-radius: 8px;
  margin-bottom: 24px;
}
.alert--success {
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #27ae60;
}
.alert--error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* ============================================
   NUEVOS ESTILOS - Stats, Clients, CTA, Footer
   ============================================ */

/* Stats Bar */
/* Stats Bar con animaciones */
.stats-bar {
  padding: 60px 0;
  background-color: var(--ds-bg);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Animación de entrada para stats */
@keyframes statSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-left: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

/* Animación secuencial cuando tienen clase animate-in */
.stat-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-item.animate-in:nth-child(1) { transition-delay: 0.1s; }
.stat-item.animate-in:nth-child(2) { transition-delay: 0.25s; }
.stat-item.animate-in:nth-child(3) { transition-delay: 0.4s; }
.stat-item.animate-in:nth-child(4) { transition-delay: 0.55s; }

.stat-item:first-child { border-left: none; }

@media (max-width: 1023px) {
  .stat-item:nth-child(odd) { border-left: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border-subtle); padding-top: 40px; }
}

.stat-item__value {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Resaltado de colores para frases clave */
.stat-item__label .highlight {
  color: var(--ds-blue);
}

.stat-item__label .highlight--fuchsia {
  color: var(--ds-fuchsia);
}

.stat-item__label .highlight--yellow {
  color: var(--ds-yellow);
}

.stat-item__description {
  font-size: 0.85rem;
  color: var(--ds-text-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

.stat-item__description .highlight {
  color: var(--ds-blue);
  font-weight: 600;
}

/* Clients Section */
.clients-section {
  padding: var(--spacing-section) 0;
  background-color: var(--ds-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.clients-section__title {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--ds-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
}

.client-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: grayscale(100%) brightness(2);
}

.client-logo:hover {
  opacity: 1;
}

.client-logo img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.client-logo__fallback {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ds-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-logo img[src=""] + .client-logo__fallback,
.client-logo img:not([src]) + .client-logo__fallback {
  display: block;
}

/* CTA Final */
/* CTA Final con Background Image */
.cta-final {
  padding: calc(var(--spacing-section) * 1.2) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

/* Background Image */
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-final__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.88) 50%, rgba(26,26,26,0.82) 100%);
}

/* Content Grid */
.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .cta-final__grid { grid-template-columns: 1fr 1.2fr; }
}

/* Image Column */
.cta-final__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  align-self: end;
}

.cta-final.animate-in .cta-final__image {
  opacity: 1;
  transform: translateY(0);
}

.cta-final__image img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  display: block;
  margin-bottom: -80px;
}

/* Content Column */
.cta-final__content {
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out 0.2s;
}

.cta-final.animate-in .cta-final__content {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .cta-final__content { text-align: left; }
}

.cta-final__title {
  margin-bottom: 24px;
}

.cta-final__title--line1,
.cta-final__title--line2 {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-style: italic;
  text-transform: uppercase;
}

.cta-final__title--line1 {
  color: white;
}

.cta-final__title--line2 {
  color: var(--ds-sky);
}

.cta-final__description {
  font-size: 1.15rem;
  color: var(--ds-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .cta-final__description {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Footer Mejorado */
.footer {
  padding: 80px 0 30px;
  background-color: var(--ds-black);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1.5fr; }
}

.footer__brand { max-width: 320px; }

.footer__brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__description {
  font-size: 0.95rem;
  color: var(--ds-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social Links */
.footer__social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--ds-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-text-muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--ds-blue);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link--whatsapp {
  background-color: #25D366;
  color: white;
}

.social-link--whatsapp:hover {
  background-color: #128C7E;
}

/* Footer Columns */
.footer__column {}

.footer__title {
  font-size: 11px;
  font-weight: 800;
  color: var(--ds-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 14px; }

.footer__links a {
  font-size: 0.95rem;
  color: var(--ds-text-body);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--ds-blue); }

/* Footer Contact */
.footer__contact {
  list-style: none;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--ds-text-body);
}

.footer__contact a {
  color: var(--ds-text-body);
  transition: color 0.3s;
}

.footer__contact a:hover { color: var(--ds-blue); }

.footer__icon {
  color: var(--ds-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__icon svg {
  width: 18px;
  height: 18px;
}

.footer__hours {
  margin-top: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--ds-surface);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ds-blue);
  letter-spacing: 0.05em;
}

/* Footer Bottom */
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--ds-text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--ds-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer__legal a:hover { color: var(--ds-blue); }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   MOBILE MENU - Menú de Navegación Móvil
   ============================================ */

/* Mobile Toggle - Botón Hamburguesa */
.nav__mobile-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
}

@media (min-width: 1024px) {
  .nav__mobile-toggle { display: none; }
}

/* Hamburger icon */
.nav__hamburger,
.nav__hamburger::before,
.nav__hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  position: relative;
}

.nav__hamburger::before,
.nav__hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav__hamburger::before { top: -8px; }
.nav__hamburger::after { top: 8px; }

/* Hamburger active state (X) */
.nav__mobile-toggle[aria-expanded="true"] .nav__hamburger {
  background-color: transparent;
}

.nav__mobile-toggle[aria-expanded="true"] .nav__hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__mobile-toggle[aria-expanded="true"] .nav__hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  background: var(--ds-surface);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-height: calc(100vh - 69px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  padding: 24px;
}

.mobile-menu__link {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ds-text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.mobile-menu__link:last-of-type { border-bottom: none; }

.mobile-menu__link--active,
.mobile-menu__link:hover {
  color: var(--ds-blue);
}

/* Botón CTA en mobile menu - Cotizar Proyecto */
.mobile-menu__cta-btn {
  display: block;
  background-color: var(--ds-fuchsia);
  color: white !important;
  margin: 16px 0 8px;
  padding: 18px 24px;
  border-radius: 8px;
  border-bottom: none;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-menu__cta-btn:hover {
  background-color: var(--ds-fuchsia-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 0, 126, 0.4);
}

.mobile-menu__cta-btn:hover::before {
  left: 100%;
}

.mobile-menu__cta-btn.mobile-menu__link--active {
  box-shadow: 0 0 0 2px var(--ds-blue);
}

/* Mobile menu footer */
.mobile-menu__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border-subtle);
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ds-blue);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mobile-menu__tagline {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Mejoras para imágenes */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

/* Aspect ratios para contenedores de imagen */
.aspect-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aspect-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Overlay para imágenes */
.img-overlay {
  position: relative;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

/* Grayscale filter para logos */
.grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.grayscale:hover {
  filter: grayscale(0%);
}

/* ============================================
   ESTILOS ADICIONALES - Cards con imágenes
   ============================================ */

/* Unit Card con imagen */
.unit-card__image {
  border-radius: 8px;
  overflow: hidden;
  background: var(--ds-surface);
}

.unit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unit-card:hover .unit-card__image img {
  transform: scale(1.05);
}

/* Estilos de texto adicionales */
.text-blue { color: var(--ds-blue); }
.text-sky { color: var(--ds-sky); }
.text-fuchsia { color: var(--ds-fuchsia); }
.text-muted { color: var(--ds-text-muted); }

/* Mejoras de espaciado */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Grid gap utilities */
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Responsive text alignment */
@media (max-width: 768px) {
  .text-center-mobile { text-align: center; }
}


/* ============================================
   MODAL DE COTIZACIÓN
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal__container {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ds-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.active .modal__container {
  transform: translateY(0) scale(1);
}

@media (max-width: 640px) {
  .modal__container {
    padding: 24px;
    max-height: 95vh;
  }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-surface-light);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--ds-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal__close:hover {
  background: var(--ds-fuchsia);
  color: white;
  border-color: var(--ds-fuchsia);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__header {
  text-align: center;
  margin-bottom: 32px;
}

.modal__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-fuchsia);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.modal__subtitle {
  font-size: 1rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
}

.modal__form .form__group {
  margin-bottom: 20px;
}

.modal__form .form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ds-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal__form .form__label svg {
  width: 16px;
  height: 16px;
  color: var(--ds-blue);
}

.modal__form .form__input,
.modal__form .form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal__form .form__input:focus,
.modal__form .form__textarea:focus {
  outline: none;
  border-color: var(--ds-blue);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.modal__form .form__input::placeholder,
.modal__form .form__textarea::placeholder {
  color: var(--ds-gray-mid);
}

.modal__form .form__textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 14px;
}

.btn--full svg {
  width: 18px;
  height: 18px;
}

.btn__loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form__success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.form__success-icon {
  width: 48px;
  height: 48px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.form__success-icon svg {
  width: 24px;
  height: 24px;
}

.form__success p {
  color: #27ae60;
  margin: 0;
}

.form__success p strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.form__error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.form__error p {
  color: #e74c3c;
  margin: 0;
  font-size: 0.95rem;
}

.modal__privacy {
  text-align: center;
  font-size: 12px;
  color: var(--ds-text-muted);
  margin-top: 20px;
  margin-bottom: 0;
}

/* Mejoras en botones con iconos */
.btn--primary svg,
.nav__cta-btn svg {
  transition: transform 0.3s ease;
}

.btn--primary:hover svg,
.nav__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}


/* ============================================
   PÁGINA NOSOTROS - LAYOUT SPLIT
   ============================================ */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 40px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    padding: 80px 0 30px;
  }
  
  .about-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .about-hero__subtitle {
    font-size: 1rem;
  }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.7) 40%, rgba(26,26,26,0.95) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-fuchsia);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(230, 0, 126, 0.1);
  border: 1px solid rgba(230, 0, 126, 0.3);
  border-radius: 4px;
}

.about-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
  text-transform: uppercase;
}

.about-hero__title--white {
  color: white;
}

.about-hero__title--blue {
  color: var(--ds-blue);
}

.about-hero__subtitle {
  font-size: 1.25rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* About Split Section */
.about-split {
  padding: calc(var(--spacing-section) * 1.5) 0;
  background-color: var(--ds-bg);
  border-bottom: 1px solid var(--border-subtle);
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-split__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}

.about-split__content {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.about-split.animate-in .about-split__content {
  opacity: 1;
  transform: translateX(0);
}

.about-split__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-split__body {
  font-size: 1.15rem;
  color: var(--ds-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-split__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
  .about-split__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-split__stat {
  text-align: center;
}

.about-split__stat-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ds-fuchsia);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-split__stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ds-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-split__image {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out 0.2s;
}

.about-split.animate-in .about-split__image {
  opacity: 1;
  transform: translateX(0);
}

.about-split__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Mobile Optimizations for About Page */
@media (max-width: 768px) {
  .about-split {
    padding: 60px 0;
  }
  
  .about-split__grid {
    gap: 40px;
  }
  
  .about-split__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .about-split__body {
    font-size: 1rem;
  }
  
  .about-values {
    background-attachment: scroll;
  }
  
  .about-values__grid {
    gap: 16px;
  }
  
  .value-card {
    padding: 24px 16px;
  }
  
  .about-cta__image img {
    max-height: 250px;
  }
  
  .about-cta__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* Values Section con Background Image */
.about-values {
  position: relative;
  padding: calc(var(--spacing-section) * 1.2) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-values__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(2px);
}

.about-values .container {
  position: relative;
  z-index: 2;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-values__grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: rgba(46, 46, 46, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.about-values.animate-in .value-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.about-values.animate-in .value-card:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.about-values.animate-in .value-card:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.about-values.animate-in .value-card:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Estado activo para auto-rotación */
.value-card.is-active {
  border-color: var(--ds-fuchsia);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(230, 0, 126, 0.3);
  background: rgba(58, 58, 58, 0.8);
}

.value-card:hover {
  border-color: var(--ds-fuchsia);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.value-card.is-active .value-card__title {
  color: white !important;
}

.value-card__description {
  font-size: 0.95rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
}

/* Capabilities Section */
.about-capabilities {
  padding: calc(var(--spacing-section) * 1.2) 0;
  background-color: var(--ds-bg);
}

.about-capabilities__header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.about-capabilities.animate-in .about-capabilities__header {
  opacity: 1;
  transform: translateY(0);
}

.about-capabilities__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.about-capabilities__subtitle {
  font-size: 1.1rem;
  color: var(--ds-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

.capability-card {
  background: linear-gradient(180deg, rgba(58,58,58,0.3), rgba(46,46,46,0.5));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.about-capabilities.animate-in .capability-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.about-capabilities.animate-in .capability-card:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.about-capabilities.animate-in .capability-card:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.about-capabilities.animate-in .capability-card:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--card-color, var(--ds-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-card:hover {
  border-color: var(--card-color, var(--ds-blue));
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.capability-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.capability-card__description {
  font-size: 0.95rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
}

/* About CTA con Imagen */
.about-cta {
  padding: calc(var(--spacing-section) * 1.2) 0 0;
  background: linear-gradient(135deg, var(--ds-fuchsia) 0%, #b8006e 100%);
  overflow: hidden;
}

.about-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

@media (min-width: 768px) {
  .about-cta__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}

.about-cta__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  order: 2;
}

@media (min-width: 768px) {
  .about-cta__image {
    order: 1;
  }
}

.about-cta__image img {
  max-height: 350px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.about-cta__content {
  text-align: center;
  padding-bottom: 60px;
  order: 1;
}

@media (min-width: 768px) {
  .about-cta__content {
    text-align: left;
    order: 2;
    padding-bottom: 80px;
  }
}

.about-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
}

.about-cta__title span {
  color: var(--ds-yellow);
}

.about-cta__text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-cta__text {
    margin-left: 0;
  }
}

.about-cta .btn--primary {
  background: white;
  color: var(--ds-fuchsia);
}

.about-cta .btn--primary:hover {
  background: var(--ds-bg);
  color: white;
}


/* ============================================
   PÁGINA SOLUCIONES
   ============================================ */

/* Solutions Hero */
.solutions-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
}

.solutions-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.95) 100%);
}

.solutions-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.solutions-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.solutions-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  font-style: italic;
  text-transform: uppercase;
}

.solutions-hero__title--white {
  color: white;
  display: block;
}

.solutions-hero__title--blue {
  color: var(--ds-blue);
  display: block;
}

.solutions-hero__subtitle {
  font-size: 1.25rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* Solutions Grid */
.solutions-grid {
  padding: calc(var(--spacing-section) * 1.5) 0;
  background-color: var(--ds-bg);
}

.solutions-grid__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Solution Card */
.solution-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(180deg, rgba(46,46,46,0.6), rgba(26,26,26,0.8));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.solutions-grid.animate-in .solution-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.solutions-grid.animate-in .solution-card:nth-child(2) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.solutions-grid.animate-in .solution-card:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

@media (min-width: 1024px) {
  .solution-card {
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
  }
  
  .solution-card:nth-child(even) {
    direction: rtl;
  }
  
  .solution-card:nth-child(even) > * {
    direction: ltr;
  }
}

.solution-card:hover {
  border-color: var(--solution-color, var(--ds-blue));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.solution-card__image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .solution-card__image {
    min-height: auto;
  }
}

.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-card__image img {
  transform: scale(1.05);
}

.solution-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(26,26,26,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover .solution-card__overlay {
  opacity: 1;
}

.solution-card__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.solution-card__description {
  font-size: 1.05rem;
  color: var(--ds-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.solution-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ds-text);
  font-size: 0.95rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.solution-card__cta {
  align-self: flex-start;
  background: var(--solution-color, var(--ds-blue)) !important;
  text-decoration: none;
  display: inline-flex;
}

.solution-card__cta:hover {
  filter: brightness(1.1);
}

/* Solution Card Actions */
.solution-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.solution-card__gallery-btn {
  background: transparent !important;
  border: 1px solid var(--border-light);
  color: var(--ds-text) !important;
}

.solution-card__gallery-btn:hover {
  border-color: var(--solution-color, var(--ds-blue));
  color: var(--solution-color, var(--ds-blue)) !important;
}

.solution-card__gallery-btn svg {
  width: 18px;
  height: 18px;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.gallery-modal__content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  margin: 20px;
  background: var(--ds-surface);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.gallery-modal[aria-hidden="false"] .gallery-modal__content {
  transform: scale(1);
}

.gallery-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gallery-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.gallery-modal__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.gallery-modal__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  position: relative;
}

.gallery-modal__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gallery-modal__nav:hover {
  background: var(--ds-blue);
  border-color: var(--ds-blue);
}

.gallery-modal__nav svg {
  width: 24px;
  height: 24px;
}

.gallery-modal__image-container {
  flex: 1;
  max-width: 800px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-modal__image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-modal__caption {
  color: var(--ds-text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.gallery-modal__thumbs {
  padding: 16px 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--ds-bg);
}

.gallery-modal__thumbs-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.gallery-modal__thumbs-list::-webkit-scrollbar {
  height: 6px;
}

.gallery-modal__thumbs-list::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

.gallery-modal__thumb {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.gallery-modal__thumb:hover {
  opacity: 0.9;
}

.gallery-modal__thumb.active {
  border-color: var(--ds-blue);
  opacity: 1;
}

.gallery-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal__counter {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--ds-text-muted);
}

/* Mobile Gallery */
@media (max-width: 768px) {
  .gallery-modal__content {
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }
  
  .gallery-modal__main {
    padding: 16px;
  }
  
  .gallery-modal__nav {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .gallery-modal__nav--prev {
    left: 8px;
  }
  
  .gallery-modal__nav--next {
    right: 8px;
  }
  
  .gallery-modal__image {
    max-height: 50vh;
  }
  
  .gallery-modal__counter {
    bottom: 90px;
  }
  
  .solution-card__actions {
    flex-direction: column;
  }
  
  .solution-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Solutions CTA */
.solutions-cta {
  padding: calc(var(--spacing-section) * 1.2) 0;
  background: linear-gradient(135deg, var(--ds-surface) 0%, var(--ds-bg) 100%);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.solutions-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-style: italic;
  text-transform: uppercase;
}

.solutions-cta__title span {
  color: var(--ds-yellow);
}

.solutions-cta__text {
  font-size: 1.15rem;
  color: var(--ds-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .solutions-hero {
    min-height: 50vh;
    padding: 100px 0 40px;
  }
  
  .solutions-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  
  .solution-card__content {
    padding: 30px 24px;
  }
  
  .solution-card__image {
    min-height: 220px;
  }
}


/* ============================================
   PÁGINA SISTEMAS LED
   ============================================ */

/* LED Hero con Video */
.led-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
}

.led-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.led-hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.led-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.95) 100%);
  z-index: 1;
}

.led-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.led-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.led-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  font-style: italic;
  text-transform: uppercase;
}

.led-hero__title--white {
  color: white;
  display: block;
}

.led-hero__title--blue {
  color: var(--ds-sky);
  display: block;
}

.led-hero__subtitle {
  font-size: 1.25rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* LED Products */
.led-products {
  padding: calc(var(--spacing-section) * 1.5) 0;
  background-color: var(--ds-bg);
}

.led-products__grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* LED Product Card */
.led-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(180deg, rgba(46,46,46,0.4), rgba(26,26,26,0.6));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.led-products.animate-in .led-product-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.led-products.animate-in .led-product-card:nth-child(2) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }

@media (min-width: 1024px) {
  .led-product-card {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
  
  .led-product-card:nth-child(even) {
    direction: rtl;
  }
  
  .led-product-card:nth-child(even) > * {
    direction: ltr;
  }
}

.led-product-card:hover {
  border-color: var(--product-color, var(--ds-blue));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.led-product-card__image {
  position: relative;
  min-height: 250px;
  max-height: 350px;
  overflow: hidden;
  background: var(--ds-surface);
}

@media (min-width: 1024px) {
  .led-product-card__image {
    min-height: 300px;
    max-height: 400px;
  }
}

.led-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.led-product-card:hover .led-product-card__image img {
  transform: scale(1.05);
}

.led-product-card__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.led-product-card__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.led-product-card__description {
  font-size: 1.1rem;
  color: var(--ds-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.led-product-card__list {
  list-style: none;
  margin-bottom: 32px;
}

.led-product-card__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--ds-text);
  line-height: 1.5;
}

.led-product-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--product-color, var(--ds-blue));
  font-weight: 900;
}

.led-product-card__specs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

@media (min-width: 640px) {
  .led-product-card__specs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.led-spec {
  text-align: center;
}

.led-spec__label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--ds-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.led-spec__value {
  display: block;
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
}

.led-product-card__cta {
  align-self: flex-start;
  text-decoration: none;
  display: inline-flex;
}

.led-product-card__cta:hover {
  filter: brightness(1.1);
}

/* LED Benefits */
.led-benefits {
  padding: calc(var(--spacing-section) * 1.2) 0;
  background-color: var(--ds-surface);
  border-top: 1px solid var(--border-subtle);
}

.led-benefits__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.led-benefits__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .led-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .led-benefits__grid { grid-template-columns: repeat(4, 1fr); }
}

.led-benefit-card {
  background: linear-gradient(180deg, rgba(58,58,58,0.2), rgba(46,46,46,0.4));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.led-benefits.animate-in .led-benefit-card:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.led-benefits.animate-in .led-benefit-card:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.led-benefits.animate-in .led-benefit-card:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.led-benefits.animate-in .led-benefit-card:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.led-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--benefit-color, var(--ds-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.led-benefit-card:hover {
  border-color: var(--benefit-color, var(--ds-blue));
  transform: translateY(-8px);
}

.led-benefit-card:hover::before {
  opacity: 1;
}

.led-benefit-card__number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--benefit-color, var(--ds-blue));
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.led-benefit-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.led-benefit-card__description {
  font-size: 0.95rem;
  color: var(--ds-text-muted);
  line-height: 1.6;
}

/* LED CTA */
.led-cta {
  padding: calc(var(--spacing-section) * 1.2) 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1f3d 50%, #1a1a1a 100%);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.led-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-style: italic;
  text-transform: uppercase;
}

.led-cta__text {
  font-size: 1.15rem;
  color: var(--ds-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .led-hero {
    min-height: 60vh;
    padding: 120px 0 40px;
  }
  
  .led-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .led-product-card__content {
    padding: 32px 24px;
  }
  
  .led-product-card__image {
    min-height: 250px;
  }
  
  .led-benefit-card {
    padding: 24px;
  }
}


/* ============================================
   GALLERY MODAL
   ============================================ */

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.gallery-modal__container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ds-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.gallery-modal.active .gallery-modal__container {
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .gallery-modal__container {
    padding: 24px;
    max-height: 95vh;
    border-radius: 16px;
  }
}

.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-surface-light);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--ds-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-modal__close:hover {
  background: var(--ds-fuchsia);
  color: white;
  border-color: var(--ds-fuchsia);
}

.gallery-modal__header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-modal__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.gallery-modal__subtitle {
  font-size: 1rem;
  color: var(--ds-text-muted);
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .gallery-modal__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .gallery-modal__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--ds-fuchsia);
  box-shadow: 0 10px 30px rgba(230, 0, 126, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Image Lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.image-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-lightbox__close:hover {
  background: var(--ds-fuchsia);
  border-color: var(--ds-fuchsia);
}

/* Product Card Actions */
.led-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.led-product-card__actions .btn--secondary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--ds-text);
}

.led-product-card__actions .btn--secondary:hover {
  background: var(--ds-surface-light);
  border-color: var(--ds-text-muted);
}
