@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Outfit:wght@300;500;700&family=Urbanist:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1f2328;
  --paper: #f4f7fb;
  --edge: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --blue: #00a4e4;
  --blue-deep: #0b6aa5;
  --green: #8cc63f;
  --green-deep: #4e9a2f;
  --slate: #3c3f46;
}

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

body {
  margin: 0;
  font-family: "Urbanist", "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 700px at 12% -30%, rgba(0, 164, 228, 0.18), transparent 55%),
    radial-gradient(900px 600px at 110% -10%, rgba(140, 198, 63, 0.2), transparent 60%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(244, 247, 251, 0.9)),
    var(--paper);
  color: var(--ink);
}

/* Spectacular Header Styles */
.site-header {
  position: fixed;
  top: clamp(10px, 2vw, 20px);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  width: calc(100% - clamp(20px, 4vw, 40px));
  max-width: 1350px;
  border-radius: 24px;
  transition: all 0.5s ease;
}

.header-glow {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(0, 164, 228, 0.5), rgba(140, 198, 63, 0.5), rgba(0, 164, 228, 0.5));
  background-size: 200% 200%;
  animation: glowMove 5s linear infinite;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
}

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.header-inner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: visible;
}

.header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  z-index: -1;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 20;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand img {
  height: clamp(40px, 5vw, 60px);
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 164, 228, 0.3));
}

.brand-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 164, 228, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand:hover .brand-glow {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 25px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-text {
  position: relative;
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 164, 228, 0.1), rgba(140, 198, 63, 0.1));
  opacity: 0;
  border-radius: 12px;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--blue-deep);
}

.nav-link:hover .nav-icon {
  opacity: 1;
  color: var(--blue);
  transform: scale(1.1) translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}

.lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 164, 228, 0.05);
  border: 1px solid rgba(0, 164, 228, 0.2);
  border-radius: 12px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  color: var(--slate);
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--blue-deep);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 164, 228, 0.3);
}

.footer-lang-switcher {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.lang-btn-footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.lang-btn-footer:hover {
  color: var(--blue);
}

.lang-btn-footer.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 164, 228, 0.5);
}

/* Hide Google Translate completely */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

#google_translate_element {
  display: none !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate);
  background: rgba(0, 164, 228, 0.04);
  border: 1px solid rgba(0, 164, 228, 0.2);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: rgba(0, 164, 228, 0.1);
  border-color: var(--blue);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 164, 228, 0.1);
}

.btn-client {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(31, 35, 40, 0.9), rgba(60, 63, 70, 0.95));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 20px rgba(31, 35, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-client:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, var(--ink), var(--slate));
  box-shadow:
    0 12px 25px rgba(31, 35, 40, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-client:hover::after {
  left: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-icon,
.btn-client:hover .btn-icon {
  transform: scale(1.1);
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 10px 20px rgba(0, 164, 228, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--blue));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  left: -60px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 15px 30px rgba(0, 164, 228, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover .btn-glow {
  left: 120%;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(0, 164, 228, 0.15);
}

.menu-toggle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 14px;
}

.line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--blue-deep);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-1 {
  top: 0;
}

.line-2 {
  top: 6px;
}

.line-3 {
  top: 12px;
}

.menu-toggle.is-open .line-1 {
  transform: translateY(6px) rotate(45deg);
  background-color: #ff4757;
}

.menu-toggle.is-open .line-2 {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.is-open .line-3 {
  transform: translateY(-6px) rotate(-45deg);
  background-color: #ff4757;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Dropdown Spectacular Styles (Desktop) --- */
.has-dropdown {
  position: relative;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.95);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow:
    0 40px 80px rgba(0, 164, 228, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: 16px;
  width: 680px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.dropdown-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 164, 228, 0.08), rgba(140, 198, 63, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-icon svg {
  width: 26px;
  height: 26px;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.dropdown-desc {
  font-size: 0.85rem;
  color: var(--slate);
  opacity: 0.8;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.dropdown-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 164, 228, 0.05), rgba(140, 198, 63, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dropdown-item:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(0, 164, 228, 0.3);
  box-shadow: 0 12px 24px rgba(0, 164, 228, 0.1);
}

.dropdown-item:hover::after {
  opacity: 1;
}

.dropdown-item:hover .dropdown-icon {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 164, 228, 0.25);
}

.dropdown-item:hover .dropdown-title {
  color: var(--blue-deep);
}

main section:not(.hero-slider) {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.1);
  padding-top: 100px;
}

/* --- Hero Cinematic Slider Styles --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #0c0f12;
  margin-top: -120px;
  /* Offset the fixed floating header */
}

.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.cine-border {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 50;
  pointer-events: none;
}

.cine-border.cine-top {
  top: clamp(80px, 15vh, 120px);
}

.cine-border.cine-bottom {
  bottom: clamp(80px, 15vh, 120px);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6) saturate(1.1);
  transform: scale(1.15) rotate(1.5deg);
  transition: transform 9s cubic-bezier(0.21, 1, 0.8, 1);
}

.hero-slide.is-active .slide-bg {
  transform: scale(1) rotate(0deg);
}

.slide-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  text-align: center;
}

.cinematic-wrapper {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
  padding-top: clamp(60px, 10vh, 120px);
  /* Pushes content down away from the header */
}

.slide-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-slide.is-active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  /* Proporcional y perfecta sin ser gigantesca */
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  /* Muy elegante y junta */
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.slide-title .word {
  opacity: 0;
  transform: translateY(80px) rotateX(40deg);
  transform-origin: bottom center;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .slide-title .word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.hero-slide.is-active .slide-title .word:nth-child(1) {
  transition-delay: 0.25s;
}

.hero-slide.is-active .slide-title .word:nth-child(2) {
  transition-delay: 0.35s;
}

.hero-slide.is-active .slide-title .word:nth-child(3) {
  transition-delay: 0.45s;
}

.hero-slide.is-active .slide-title .word:nth-child(4) {
  transition-delay: 0.55s;
}

.slide-title .highlight {
  background: linear-gradient(135deg, #00d2ff, #0b6aa5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 164, 228, 0.4));
}

.slide-desc {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 0 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero-slide.is-active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s, background 0.4s ease, border 0.4s ease, box-shadow 0.4s ease;
}

.hero-slide.is-active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.slide-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: all 0.6s ease;
}

.slide-btn .arrow {
  transition: transform 0.4s ease;
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 164, 228, 0.3);
}

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

.slide-btn:hover .arrow {
  transform: translateX(6px);
}

/* --- Spectacular About/Nosotros Section --- */
.about-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 20px;
  background:
    radial-gradient(circle at top right, rgba(0, 164, 228, 0.08), transparent 50%),
    radial-gradient(circle at bottom left, rgba(140, 198, 63, 0.06), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 5;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 10;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 164, 228, 0.1);
  border: 1px solid rgba(0, 164, 228, 0.2);
  color: var(--blue-deep);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shineBadge 4s infinite;
}

@keyframes shineBadge {

  0%,
  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }

  0% {
    left: -100%;
  }
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 32px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
}

.animated-word {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.animated-word:hover {
  transform: translateY(-4px) rotate(-2deg);
  color: var(--blue);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--blue);
  opacity: 0.2;
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}

.about-description {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 40px;
}

.about-description p {
  margin: 0 0 20px 0;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-description strong {
  color: var(--ink);
  font-weight: 700;
  position: relative;
}

.btn-glow-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.btn-glow-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 999px;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.btn-glow-outline:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(31, 35, 40, 0.2);
  transform: translateY(-4px);
}

.btn-glow-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-glow-outline:hover .btn-arrow {
  transform: translateX(6px);
}

/* Beautiful Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: clamp(400px, 45vw, 600px);
  position: relative;
  perspective: 1000px;
}

.bento-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--blue), transparent 60%);
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 5s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.25;
  }
}

.bento-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  /* Soft shadow */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.bento-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.bento-small.bento-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.bento-small.bento-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 164, 228, 0.15);
  z-index: 10;
}

.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-bg {
  transform: scale(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
  transition: opacity 0.5s ease;
  opacity: 0.9;
}

.bento-card:hover .bento-overlay {
  opacity: 0.7;
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-content {
  transform: translateY(0);
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

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

.bento-label {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .bento-grid {
    height: 600px;
  }
}

@media (max-width: 560px) {
  .bento-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .bento-large {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 300px;
  }

  .bento-small.bento-top {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 200px;
  }

  .bento-small.bento-bottom {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    height: 200px;
  }
}


.scroll-indicator {
  position: absolute;
  bottom: clamp(100px, 12vw, 140px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 20;
  opacity: 0.8;
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollWheel 2s ease-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

.scroll-text {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(12, 15, 18, 0.7) 100%);
  z-index: 3;
  pointer-events: none;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  z-index: 20;
  pointer-events: none;
}

.slider-prev,
.slider-next {
  pointer-events: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-prev svg,
.slider-next svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover svg {
  transform: translateX(-4px);
}

.slider-next:hover svg {
  transform: translateX(4px);
}

.slider-pagination {
  position: absolute;
  bottom: clamp(30px, 6vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
}

.dot {
  width: 45px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, width 0.4s ease;
}

.dot.is-active {
  width: 90px;
  background: rgba(255, 255, 255, 0.3);
}

.dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.dot.is-active::after {
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* --- Exceptional Services Showcase Section --- */
.services-showcase {
  position: relative;
  padding: 180px 20px;
  background: radial-gradient(circle at 100% 0%, #0c172a 0%, var(--ink) 50%, #060b14 100%);
  z-index: 5;
  overflow: hidden;
}

.services-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 110px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.section-badge.dark-badge {
  background: rgba(0, 210, 255, 0.05);
  border-color: rgba(0, 210, 255, 0.4);
  color: #00d2ff;
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.showcase-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.showcase-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Service Expanding Card */
.service-card {
  position: relative;
  height: 540px;
  /* Incrementado la altura base para que quepa bien el texto */
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 164, 228, 0.25);
  border-color: rgba(0, 210, 255, 0.3);
  outline: none;
}

.service-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  filter: grayscale(100%) brightness(0.4) contrast(1.1);
}

.service-card:hover .service-bg,
.service-card:focus .service-bg {
  transform: scale(1.1) rotate(2deg);
  filter: grayscale(0%) brightness(0.7) contrast(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.9) 70%, rgba(15, 23, 42, 0.98) 100%);
  transition: opacity 0.6s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(0, 164, 228, 0.1) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.98) 100%);
}

.service-content {
  position: absolute;
  inset: 0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: auto;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.service-card:hover .service-icon-wrapper {
  background: rgba(0, 210, 255, 0.15);
  border-color: rgba(0, 210, 255, 0.6);
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 210, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
  color: #00d2ff;
}

.service-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 0 15px 0;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
}

.service-card:hover .service-title,
.service-card:focus .service-title {
  color: #00d2ff;
  text-shadow: 0 0 25px rgba(0, 210, 255, 0.7);
  transform: translateY(-5px);
}

.service-hidden-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 0;
  overflow-y: auto;
  /* Active scrolling for long text to never get cut off */
  padding-right: 15px;
  /* Spacing for scrollbar */
}

/* Elegant Scrollbar for the hidden card content */
.service-hidden-content::-webkit-scrollbar {
  width: 4px;
}

.service-hidden-content::-webkit-scrollbar-thumb {
  background: rgba(0, 210, 255, 0.5);
  border-radius: 4px;
}

.service-card:hover .service-hidden-content,
.service-card:focus .service-hidden-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 300px;
  /* Limits the content elegantly and handles overflow */
  transition-delay: 0.1s;
}

.service-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px 0;
}

.btn-saber-mas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00d2ff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.btn-saber-mas .arrow {
  transition: transform 0.3s ease;
}

.btn-saber-mas:hover {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.btn-saber-mas:hover .arrow {
  transform: translateX(8px);
}

/* --- Incredible Skills Section --- */
.skills-super-section {
  position: relative;
  padding: 140px 20px;
  background: var(--ink);
  /* Very dark to continue the contrast */
  overflow: hidden;
  z-index: 5;
}

.skills-super-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.skills-super-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.05) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.skills-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left: Holographic 3D Image */
.skills-visual {
  position: relative;
  perspective: 1200px;
  /* Essential for 3D effect */
}

.skills-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 40px;
  transform-style: preserve-3d;
  animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-20px) rotateX(-2deg) rotateY(2deg);
  }
}

.skills-bg-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  border: 1px solid rgba(0, 210, 255, 0.15);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(0, 210, 255, 0.1);
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.skills-glow-overlay {
  position: absolute;
  inset: -10px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.4), rgba(140, 198, 63, 0.4));
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
}

/* Right: Graph Content */
.skills-content {
  display: flex;
  flex-direction: column;
}

.skills-header {
  margin-bottom: 50px;
}

.skills-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #00d2ff;
  margin-bottom: 15px;
  display: block;
}

.skills-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.skills-title span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  background: linear-gradient(90deg, #00d2ff, #20c997);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}

.skills-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Neo-Graph Bars */
.skills-graph-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.skill-percentage {
  color: #00d2ff;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.skill-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.skill-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  /* Fallback to 0 to be grown by animation */
  width: 0;
  background: linear-gradient(90deg, #00d2ff, #20c997);
  border-radius: 999px;
  animation: fillBar 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fillBar {
  0% {
    width: 0;
  }

  100% {
    width: var(--target-width);
  }
}

/* Glowing point at the end of the line */
.skill-bar-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px 8px rgba(0, 210, 255, 0.6);
}

@media (max-width: 992px) {
  .skills-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .skills-super-section {
    padding: 100px 20px;
  }
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 100px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    height: 520px;
  }
}

/* --- Breathtaking Clients Section --- */
.clients-super-section {
  position: relative;
  padding: 160px 20px;
  background: radial-gradient(circle at top, #0f1c32 0%, #050a12 60%, #000000 100%);
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Absolutely Center Everything */
}

/* Starfield / Grid overlay for technical depth */
.clients-super-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 210, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

/* Center-aligned glowing background */
.clients-super-section::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

/* Perfect Centered Header Block */
.clients-header {
  text-align: center;
  /* Ensure internal centering */
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 100px auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #00d2ff;
  margin-bottom: 24px;
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 210, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

.clients-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #ffffff;
  margin: 0 0 25px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.clients-title span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, #00d2ff, #20c997, #00d2ff);
  background-size: 200% auto;
  animation: shineText 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  text-shadow: 0 0 40px rgba(0, 210, 255, 0.4);
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.clients-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin: 0 auto;
  max-width: 650px;
  text-align: center;
}

/* Massive Double Infinite Marquee */
.clients-marquee-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  padding: 40px 0 80px 0;
  perspective: 2500px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: calc((400px + 50px) * 18);
  /* Hover effect handles pause */
}

/* Row 1 goes Left */
.track-left {
  animation: scrollLeft 45s linear infinite;
}

/* Row 2 goes Right */
.track-right {
  justify-content: flex-end;
  animation: scrollRight 45s linear infinite;
}

.clients-marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * (400px + 50px) * 9));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-1 * (400px + 50px) * 9));
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-slide {
  width: 400px;
  height: 240px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  /* Glassmorphism Ultra Dark */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 0 rgba(0, 210, 255, 0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: visible;
  /* Let the logo pop out */
  transform-style: preserve-3d;
}

.marquee-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  /* Suave apariencia atenuada */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0);
}

/* 3D Hover Explosion - The Absolute Factor Wow */
.marquee-slide:hover {
  transform: translateY(-25px) scale(1.1) rotateX(10deg) rotateY(-5deg);
  background: rgba(15, 25, 45, 0.9);
  border-color: rgba(0, 210, 255, 0.6);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(0, 210, 255, 0.2),
    inset 0 0 25px rgba(0, 210, 255, 0.3);
  z-index: 100;
}

.marquee-slide:hover img {
  filter: grayscale(0%) opacity(1) drop-shadow(0 15px 25px rgba(0, 210, 255, 0.6));
  transform: scale(1.2) translateZ(60px);
  /* Massive Pop Out */
}

/* Electric Laser Scanner */
.marquee-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.5), transparent);
  transform: skewX(-30deg);
  transition: 0s;
  pointer-events: none;
}

.marquee-slide:hover::after {
  left: 200%;
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 992px) {
  .clients-super-section {
    padding: 120px 20px;
  }

  .marquee-slide {
    width: 250px;
    height: 150px;
    padding: 30px;
    border-radius: 24px;
  }

  .marquee-track {
    gap: 30px;
    width: calc((250px + 30px) * 18);
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-1 * (250px + 30px) * 9));
    }
  }

  @keyframes scrollRight {
    0% {
      transform: translateX(calc(-1 * (250px + 30px) * 9));
    }

    100% {
      transform: translateX(0);
    }
  }
}

/* --- High-End Pricing Section --- */
.pricing-super-section {
  position: relative;
  padding: 160px 20px;
  background: #000000;
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-super-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(32, 201, 151, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 201, 151, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.pricing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.pg-1 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1), transparent 60%);
  top: -10%;
  left: -20%;
}

.pg-2 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.1), transparent 60%);
  bottom: -20%;
  right: -20%;
}

.pricing-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 2;
}

.pricing-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #20c997;
  margin-bottom: 24px;
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid rgba(32, 201, 151, 0.3);
  border-radius: 999px;
  background: rgba(32, 201, 151, 0.05);
  box-shadow: 0 0 30px rgba(32, 201, 151, 0.15);
}

.pricing-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: #ffffff;
  margin: 0 0 25px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pricing-title span {
  color: transparent;
  background: linear-gradient(90deg, #00d2ff, #20c997);
  -webkit-background-clip: text;
  background-clip: text;
}

.pricing-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1250px;
  position: relative;
  z-index: 10;
}

.pricing-card {
  position: relative;
  background: rgba(15, 25, 45, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.popular {
  background: rgba(15, 25, 45, 0.8);
  border-color: rgba(32, 201, 151, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(32, 201, 151, 0.1);
  transform: translateY(-20px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00d2ff, #20c997);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 25px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.4);
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 210, 255, 0.15);
  z-index: 50;
}

.pricing-card.popular:hover {
  transform: translateY(-30px) scale(1.05);
  border-color: rgba(32, 201, 151, 0.8);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(32, 201, 151, 0.3);
  z-index: 50;
}

.pricing-card-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  color: #fff;
  margin: 0 0 15px;
  font-weight: 700;
}

.pricing-card.popular h3 {
  color: #20c997;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  color: #fff;
}

.price .currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
  margin-right: 5px;
  color: #00d2ff;
}

.pricing-card.popular .price .currency {
  color: #20c997;
}

.price .amount {
  font-size: 5.5rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.payment-type {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 40px;
}

.features-title {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 0.8;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.pricing-features li:hover {
  color: #fff;
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: #00d2ff;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.popular .pricing-features svg {
  color: #20c997;
}

.btn-pricing {
  display: block;
  text-align: center;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pricing:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: #00d2ff;
  color: #00d2ff;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
  transform: translateY(-3px);
}

.btn-popular {
  background: linear-gradient(90deg, #00d2ff, #20c997);
  border: none;
  color: #000;
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.3);
}

.btn-popular:hover {
  color: #000;
  background: linear-gradient(90deg, #20c997, #00d2ff);
  box-shadow: 0 15px 30px rgba(32, 201, 151, 0.5);
  border-color: transparent;
}

/* Custom Solutions Section */
.custom-solutions-section {
  width: 100%;
  max-width: 1250px;
  margin-top: 100px;
  background: rgba(15, 25, 45, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.custom-solutions-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.custom-solutions-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  text-align: center;
}

.custom-solutions-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  margin: 0 0 15px;
  font-weight: 900;
}

.custom-solutions-header h3 span {
  color: #00d2ff;
}

.custom-solutions-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Urbanist", sans-serif;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.custom-solutions-header strong {
  color: #fff;
}

.custom-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.custom-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.info-module {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-module .icon-ring {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 210, 255, 0.1);
}

.info-module .icon-ring svg {
  width: 35px;
  height: 35px;
  color: #00d2ff;
}

.info-module h4 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.info-module p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.cyber-form-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.form-title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.cyber-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.cyber-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Urbanist", sans-serif;
  transition: all 0.3s;
}

.cyber-input:focus {
  outline: none;
  border-color: #00d2ff;
  background: rgba(0, 210, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.cyber-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cyber-select {
  appearance: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.cyber-select option {
  background: #0f1c32;
  color: #fff;
}

.cyber-submit-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #00d2ff, #20c997);
  border: none;
  padding: 20px;
  border-radius: 12px;
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.cyber-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
}

.cyber-submit-btn span {
  position: relative;
  z-index: 2;
}

.btn-flare {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: 0s;
  z-index: 1;
}

.cyber-submit-btn:hover .btn-flare {
  left: 200%;
  transition: 0.6s ease-in-out;
}

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

  .pricing-card.popular {
    transform: translateY(0);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.02);
  }

  .custom-split {
    grid-template-columns: 1fr;
  }

  .custom-solutions-section {
    padding: 40px 20px;
  }

  .pricing-super-section {
    padding: 100px 20px;
  }
}

/* --- Global Testimonials Section --- */
.testimonials-super-section {
  position: relative;
  padding: 160px 20px 60px 20px;
  background: radial-gradient(circle at center, #0a1122 0%, #000000 80%);
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimo-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.testimo-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 10;
}

.testimonials-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #ffb800;
  margin-bottom: 24px;
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.05);
  box-shadow: 0 0 30px rgba(255, 184, 0, 0.15);
}

.testimonials-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #ffffff;
  margin: 0 0 25px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.testimonials-title span {
  color: transparent;
  background: linear-gradient(90deg, #ffb800, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 184, 0, 0.3);
}

.testimonials-desc {
  font-family: "Urbanist", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 650px;
  margin: 0 auto;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 10;
}

.review-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 40px;
  width: calc(33.333% - 20px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.highlight-card {
  background: rgba(20, 30, 50, 0.8);
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(0, 210, 255, 0.05);
}

.review-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00d2ff, #20c997, #ffb800);
}

.review-card:hover {
  transform: translateY(-20px) scale(1.03);
  background: rgba(15, 25, 45, 0.95);
  border-color: rgba(255, 184, 0, 0.5);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 184, 0, 0.15);
  z-index: 50;
}

.highlight-card:hover {
  transform: translateY(-25px) scale(1.05);
  border-color: #00d2ff;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 210, 255, 0.3);
}

.review-stars {
  font-size: 1.5rem;
  letter-spacing: 5px;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffb800, #ff8c00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(255, 184, 0, 0.4);
}

.review-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.av-1 {
  background: linear-gradient(135deg, #ff007f, #7928ca);
}

.av-2 {
  background: linear-gradient(135deg, #00d2ff, #0b6aa5);
}

.av-3 {
  background: linear-gradient(135deg, #ffb800, #ff8c00);
}

.av-4 {
  background: linear-gradient(135deg, #20c997, #00d2ff);
}

.av-5 {
  background: linear-gradient(135deg, #ff007f, #ffb800);
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.author-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-family: "Urbanist", sans-serif;
}

.flag-icon {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .testimonials-super-section {
    padding: 100px 20px 40px 20px;
  }

  .review-card {
    width: 100%;
    min-width: 100%;
    transform: translateY(0);
  }

  .highlight-card {
    transform: translateY(0);
  }

  .review-card:hover,
  .highlight-card:hover {
    transform: translateY(-10px);
  }

  .reviews-grid {
    flex-direction: column;
  }
}

/* --- Ultra CTA Section --- */
.cta-super-section {
  position: relative;
  width: 100%;
  padding: clamp(140px, 15vw, 200px) 20px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  background-image: url('images/bg_tiendas_virtuales.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Otorga el increible efeco Parallax */
  overflow: hidden;
}

.cta-glow-bg {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(15, 23, 42, 0.8) 40%, rgba(15, 23, 42, 0.85) 60%, var(--paper) 100%);
  z-index: 1;
}

.cta-glow-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 2;
  animation: pulseOrb 8s infinite alternate;
}

@keyframes pulseOrb {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

.cta-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 50px;
  position: relative;
  z-index: 10;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.cta-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #00d2ff;
  margin-bottom: 30px;
  display: inline-block;
  padding: 12px 30px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.3), inset 0 0 15px rgba(0, 210, 255, 0.1);
}

.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.cta-action {
  flex-shrink: 0;
  animation: floatButton 6s infinite ease-in-out;
}

@keyframes floatButton {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 24px 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00d2ff, #20c997);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.btn-magnetic:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 210, 255, 0.4);
  color: #fff;
  border-color: transparent;
}

.btn-magnetic:hover::before {
  left: 0;
  opacity: 1;
}

.btn-magnetic .btn-text,
.btn-magnetic .magnetic-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.btn-magnetic .magnetic-icon {
  width: 26px;
  height: 26px;
  color: #fff;
}

.btn-magnetic:hover .magnetic-icon {
  transform: translateX(10px);
}

@media (max-width: 1200px) {
  .cta-super-section {
    padding: 100px 20px;
  }

  .cta-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .btn-magnetic {
    width: 100%;
    max-width: 320px;
    padding: 20px 30px;
  }

  .nav {
    position: fixed;
    top: -20px;
    right: -20px;
    height: 105vh;
    height: 105dvh;
    /* A bit extra just in case */
    width: clamp(280px, 70vw, 400px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 40px 40px;
    gap: 30px;
    z-index: 50;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    transform: translateX(110%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }

  .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.is-open .nav-item {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.is-open .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav.is-open .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav.is-open .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav.is-open .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 15px 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    width: 100%;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.5s;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .lang-switcher-nav {
    width: 100%;
    justify-content: center;
    padding: 10px;
    margin-bottom: 10px;
  }

  .lang-btn {
    flex: 1;
    text-align: center;
  }

  .nav.is-open .nav-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .btn-secondary,
  .btn-client,
  .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  /* Dropdown Mobile Overrides */
  .has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .has-dropdown .dropdown-chevron {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 10px 0 0 12px;
    gap: 8px;
    margin-top: 10px;
    border-left: 2px solid rgba(0, 164, 228, 0.15);
  }

  .dropdown-menu::before,
  .dropdown-menu::after {
    display: none;
  }

  .has-dropdown.is-active .dropdown-menu {
    display: grid;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .has-dropdown.is-active .dropdown-chevron {
    transform: rotate(180deg);
  }

  .dropdown-item {
    background: transparent;
    border: none;
    box-shadow: none !important;
    padding: 10px;
    transform: none !important;
  }

  .dropdown-item:hover {
    background: rgba(0, 164, 228, 0.05);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* --- NOSOTROS PAGE SPECTACULAR STYLES --- */
.page-nosotros main {
  padding-top: 0 !important;
  /* Overriding default main padding if necessary */
}

/* Base Body Adjustment for Nosotros Page */
.nosotros-page-body {
  background-color: #0c0f12;
  /* Darker tone to contrast the glowing effects */
  color: #fff;
  overflow-x: hidden;
}

/* Nosotros Hero / Main Section */
.nosotros-main-content {
  min-height: 100vh;
  position: relative;
}

.nosotros-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 180px 20px 100px;
  /* Space for the header */
}

.ns-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ns-bg-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.4) contrast(1.2) grayscale(0.2);
  transform: scale(1.05);
  animation: slowPan 30s alternate infinite ease-in-out;
}

@keyframes slowPan {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-2%, 2%);
  }
}

.ns-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 15, 18, 0.4) 0%, rgba(12, 15, 18, 0.95) 100%);
}

/* Magical Floating Orbs */
.ns-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  opacity: 0.6;
}

.ns-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 164, 228, 0.4);
  top: -100px;
  left: -150px;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.ns-orb.orb-2 {
  width: 600px;
  height: 600px;
  background: rgba(140, 198, 63, 0.25);
  bottom: -200px;
  right: -100px;
  animation: floatOrb 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 80px) scale(1.2);
  }

  100% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

/* Container & Layout */
.ns-container {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

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

/* Content Styling */
.ns-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ns-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 20px;
  background: rgba(0, 164, 228, 0.15);
  border: 1px solid rgba(0, 164, 228, 0.4);
  color: var(--blue);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(0, 164, 228, 0.2);
}

.ns-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.ns-title .highlight {
  background: linear-gradient(135deg, #00d2ff, #0b6aa5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 164, 228, 0.5));
}

.ns-description {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  font-weight: 300;
  margin-top: 10px;
}

.ns-description strong {
  color: #fff;
  font-weight: 700;
}

/* Stats */
.ns-stats-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.ns-stat-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.ns-stat-box::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10%;
  height: 80%;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.ns-stat-box:first-child::before {
  display: none;
}

.ns-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(140, 198, 63, 0.4);
}

.ns-stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 150px;
  line-height: 1.4;
}

/* Image Side */
.ns-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ns-image-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: -60px;
  /* Pulls the contact card up over it */
  margin-left: 20px;
}

.ns-main-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9) contrast(1.1);
}

.ns-image-card:hover .ns-main-img {
  transform: scale(1);
}

/* Glassmorphism Contact Card */
.ns-contact-card {
  margin-top: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 35px 35px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 20;
  margin-right: 40px;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.ns-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 164, 228, 0.4);
}

.ns-contact-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 164, 228, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ns-contact-card:hover .ns-contact-glow {
  opacity: 1;
}

.ns-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.ns-card-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ns-card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 100%;
  margin-bottom: 25px;
}

/* Device Icons Group */
.ns-device-group {
  display: flex;
  gap: 12px;
}

.ns-device {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--green);
  transition: all 0.3s ease;
}

.ns-device:hover {
  background: rgba(0, 164, 228, 0.15);
  border-color: rgba(0, 164, 228, 0.5);
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 164, 228, 0.2);
}

.ns-device svg {
  width: 22px;
  height: 22px;
}

.ns-cta-action {
  display: inline-flex;
}

/* Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ns-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ns-title {
    font-size: 3.5rem;
  }

  .ns-visual {
    margin-top: 20px;
  }

  .ns-image-card {
    margin-bottom: -30px;
    margin-left: 0;
  }

  .ns-contact-card {
    margin-right: 0;
    margin-left: auto;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .ns-title {
    font-size: 2.8rem;
  }

  .ns-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .ns-card-title {
    font-size: 1.8rem;
  }
}

/* --- APP WEB PAGE ULTRAPREMIUM AGENCY STYLES --- */
.aw-main {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Base Typo & Containers */
.aw-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.aw-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: -1.5px;
}

.aw-h2 .aw-accent {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aw-p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 30px;
}

.aw-section-label {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* Sections */
.aw-section {
  padding: 140px 0;
  position: relative;
}

.aw-bg-light {
  background: #ffffff;
}

.aw-dark-section {
  background: #030712;
  color: #fff;
  padding: 160px 0;
  position: relative;
}

.aw-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 164, 228, 0.4), transparent);
}

.aw-dark-section .aw-p {
  color: #94a3b8;
}

/* Center Content */
.aw-center-content {
  text-align: center;
  max-width: 900px;
}

.aw-center-content .aw-p {
  margin: 0 auto 50px;
}

/* Split Layouts */
.aw-flex-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.aw-flex-row.aw-reverse {
  flex-direction: row-reverse;
}

.aw-split-text {
  flex: 1;
}

.aw-split-visual {
  flex: 1;
  position: relative;
}

/* Hero Section */
.aw-hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.aw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.aw-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.aw-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -50px;
  right: -50px;
}

.aw-shape-2 {
  width: 600px;
  height: 600px;
  background: var(--green);
  bottom: 10%;
  left: -150px;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.2) translate(100px, -50px);
  }
}

.aw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.aw-hero-content {
  max-width: 650px;
  position: relative;
  z-index: 10;
}

.aw-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 164, 228, 0.1);
  color: var(--blue-deep);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 164, 228, 0.1);
}

.aw-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -2px;
}

.aw-text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aw-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 40px;
}

.aw-cta-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.aw-cta {
  padding: 18px 44px;
  font-size: 1.15rem;
  border-radius: 100px;
  display: inline-flex;
}

/* Image Mockup in Hero */
.aw-mockup-wrapper {
  position: relative;
  z-index: 10;
}

.aw-main-image {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: ultraFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes ultraFloat {

  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-30px) rotateX(-1deg) rotateY(1deg);
  }
}

/* Floating Glass Cards */
.aw-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  z-index: 20;
}

.aw-fly-1 {
  top: 10%;
  left: -15%;
  animation: floatSide 6s ease-in-out infinite;
  animation-delay: -3s;
}

.aw-fly-2 {
  bottom: 10%;
  right: -15%;
  animation: floatSide 7s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes floatSide {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(15px, -20px);
  }
}

.aw-glass-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 164, 228, 0.3);
}

.aw-glass-icon svg {
  width: 26px;
  height: 26px;
}

.aw-glass-text {
  display: flex;
  flex-direction: column;
}

.aw-glass-text strong {
  font-size: 1.05rem;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
}

.aw-glass-text span {
  font-size: 0.9rem;
  color: var(--slate);
}

/* Image Masks for Split content */
.aw-image-mask {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  /* almost vertical rectangle */
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s ease;
}

.aw-image-mask:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.aw-mask-alt {
  border-radius: 40px 160px 40px 40px;
  transform: perspective(1000px) rotateY(5deg);
}

.aw-mask-alt:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.aw-image-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.aw-image-mask:hover img {
  transform: scale(1.05);
}

.aw-mask-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

/* 3D Mac Terminal Window */
.aw-terminal-window {
  max-width: 850px;
  margin: 0 auto;
  background: #0d1117;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  text-align: left;
  transform: perspective(1600px) rotateX(10deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.aw-terminal-window:hover {
  transform: perspective(1600px) rotateX(0deg) translateY(-15px) scale(1.02);
  box-shadow: 0 60px 120px rgba(0, 164, 228, 0.25), 0 0 0 1px rgba(0, 164, 228, 0.4);
}

.aw-terminal-header {
  background: #161b22;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aw-dots {
  display: flex;
  gap: 10px;
}

.aw-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.aw-dot.red {
  background: #ff5f56;
}

.aw-dot.yellow {
  background: #ffbd2e;
}

.aw-dot.green {
  background: #27c93f;
}

.aw-terminal-title {
  color: #8b949e;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  margin: 0 auto;
  transform: translateX(-30px);
  /* offset to center visually */
}

.aw-terminal-body {
  padding: 40px;
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 1.15rem;
  color: #c9d1d9;
  line-height: 1.6;
  overflow-x: auto;
}

/* Syntax Highlighting */
.aw-kw {
  color: #ff7b72;
  font-weight: bold;
}

.aw-cn {
  color: #79c0ff;
}

.aw-fn {
  color: #d2a8ff;
}

.aw-param {
  color: #a5d6ff;
}

.aw-st {
  color: #a5d6ff;
}

.aw-comment {
  color: #8b949e;
  font-style: italic;
}

/* Scroll Animations */
.sr-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.sr-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

  .aw-hero-grid,
  .aw-flex-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .aw-flex-row.aw-reverse {
    flex-direction: column;
  }

  .aw-hero-content {
    margin: 0 auto;
  }

  .aw-cta-wrapper {
    justify-content: center;
  }

  .aw-title {
    font-size: 4rem;
  }

  .aw-fly-1,
  .aw-fly-2 {
    display: none;
    /* Hide floating glass on smaller displays for cleaner look */
  }

  .aw-image-mask {
    padding-bottom: 70%;
    max-width: 700px;
    margin: 0 auto;
  }

  .aw-terminal-title {
    transform: none;
    margin-left: 20px;
  }

  .aw-terminal-window {
    transform: perspective(1600px) rotateX(0deg);
    /* Disable extreme 3D rot on tablets */
  }
}

@media (max-width: 768px) {
  .aw-section {
    padding: 80px 0;
  }

  .aw-dark-section {
    padding: 100px 0;
  }

  .aw-hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .aw-title {
    font-size: 3rem;
  }

  .aw-h2 {
    font-size: 2.2rem;
  }

  .aw-terminal-body {
    font-size: 0.95rem;
    padding: 24px;
  }

  .aw-container {
    padding: 0 20px;
  }

  .aw-p {
    font-size: 1.05rem;
  }
}

/* Full-Width SEO Hero specific styles */
.aw-hero-full {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect */
  background-repeat: no-repeat;
  text-align: left;
  overflow: hidden;
}

.aw-hero-overlay-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 12, 20, 0.4) 0%, rgba(8, 12, 20, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.aw-hero-glass-content {
  background: rgba(3, 7, 18, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 60px;
  max-width: 650px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

.aw-hero-glass-content .aw-title {
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  margin-bottom: 20px;
}

.aw-justify-start {
  justify-content: flex-start;
}

.text-white {
  color: #ffffff !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

.aw-badge-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
  .aw-hero-full {
    justify-content: center;
    text-align: center;
  }

  .aw-hero-glass-content {
    margin: 0 auto;
    padding: 40px 30px;
  }

  .aw-justify-start {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .aw-hero-full {
    padding: 140px 0 80px;
    min-height: auto;
  }
}

/* --- OUT OF THIS WORLD: THE MARVEL ZONE DECK --- */
.aw-marvel-zone {
  background: #00020a;
  /* Ultra deep blue/black */
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  perspective: 1500px;
}

.aw-marvel-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(0, 164, 228, 0.1) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 80%, rgba(140, 198, 63, 0.05) 100%);
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.aw-marvel-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.3;
  animation: pulseGlow 15s infinite alternate ease-in-out;
  pointer-events: none;
}

.aw-marvel-glow-blue {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -150px;
  left: -150px;
}

.aw-marvel-glow-green {
  width: 500px;
  height: 500px;
  background: var(--green);
  bottom: 0px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.3) translate(50px, -50px);
    opacity: 0.4;
  }
}

.aw-marvel-zone .aw-container {
  z-index: 5;
  position: relative;
}

.aw-badge-neon {
  background: rgba(0, 164, 228, 0.1);
  border: 1px solid rgba(0, 164, 228, 0.5);
  box-shadow: 0 0 20px rgba(0, 164, 228, 0.3), inset 0 0 10px rgba(0, 164, 228, 0.2);
  color: #79c0ff;
  border-radius: 100px;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 20px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.aw-marvel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.marvel-card {
  position: relative;
  background: rgba(12, 17, 30, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

/* Neon border effect using pseudo */
.marvel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 164, 228, 0.05), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.6s ease;
  z-index: 10;
  pointer-events: none;
}

/* Base glowing box shadow */
.marvel-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.marvel-card:hover {
  transform: translateY(-15px) rotateX(4deg) rotateY(-4deg);
  background: rgba(16, 23, 42, 0.8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 164, 228, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.marvel-card:hover::before {
  background: linear-gradient(135deg, var(--blue), var(--green), transparent 70%);
}

.marvel-inner {
  transform: translateZ(30px);
  /* 3D pop effect relative to card */
  display: flex;
  flex-direction: column;
  flex: 1;
}

.marvel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.marvel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c909e;
  transition: all 0.5s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.marvel-icon svg {
  width: 32px;
  height: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.marvel-card:hover .marvel-icon {
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 164, 228, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: scale(1.1) rotate(5deg) translateZ(40px);
  /* Extreeme depth pop */
}

.marvel-card:hover .marvel-icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.marvel-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  /* Text clip stroke effect */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  color: transparent;
}

.marvel-card:hover .marvel-num {
  -webkit-text-stroke: 1px rgba(0, 164, 228, 0.8);
  color: rgba(0, 164, 228, 0.1);
  transform: translateZ(20px);
}

.marvel-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #e2e8f0;
  margin: 0 0 16px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.marvel-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.marvel-card p {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
  transition: color 0.3s ease;
  flex: 1;
}

.marvel-card:hover p {
  color: #cbd5e1;
}

@media (max-width: 1200px) {
  .aw-marvel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .aw-marvel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marvel-card:hover {
    transform: translateY(-10px);
  }

  /* Dial back extreme 3D on smaller screens */
}

@media (max-width: 600px) {
  .aw-marvel-grid {
    grid-template-columns: 1fr;
  }

  .marvel-inner {
    transform: none;
  }

  .marvel-card:hover .marvel-icon {
    transform: translateZ(0) scale(1.1) rotate(5deg);
  }
}

/* --- EXPERIENCIA UX/UI HOLOGRAPHIC SHOWCASE --- */
.aw-experience-showcase {
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}

.aw-experience-grid {
  align-items: center;
}

.aw-check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.aw-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.aw-check-list svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.aw-3d-scene {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  /* Square ratio */
  perspective: 1500px;
}

.aw-hologram-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 164, 228, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.aw-hero-hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  border-radius: 30px;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.08));
  transform-style: preserve-3d;
}

.aw-3d-scene:hover .aw-hero-hologram {
  transform: rotateY(0deg) rotateX(0deg) translateZ(30px);
  filter: drop-shadow(0 50px 80px rgba(0, 164, 228, 0.15));
}

.aw-glass-layer-1 {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  transform: translateZ(-50px) rotateY(-15deg);
  z-index: 1;
  transition: all 0.6s ease;
}

.aw-3d-scene:hover .aw-glass-layer-1 {
  transform: translateZ(-20px) rotateY(-5deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

/* Floating Chips over image */
.aw-chip-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-deep);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: floatOrb 6s infinite alternate ease-in-out;
}

.chip-1 {
  top: 15%;
  left: -5%;
  animation-delay: -2s;
}

.chip-2 {
  bottom: 20%;
  right: -5%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: white;
  border: none;
  animation-delay: -1s;
}

@media (max-width: 1024px) {
  .aw-experience-grid {
    flex-direction: column;
    text-align: center;
  }

  .aw-check-list li {
    justify-content: center;
  }
}

/* ==========================================================
   E-COMMERCE OUT-OF-THIS-WORLD STYLES
   ========================================================== */

.ecomm-page-body {
  background-color: #030712;
  /* Deepest black/blue */
  color: #f8fafc;
  overflow-x: hidden;
}

/* Hero Section */
.ecomm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 0 120px;
  overflow: hidden;
}

.ecomm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ecomm-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  /* Slight zoom for premium feel */
}

.ecomm-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #030712 0%, rgba(3, 7, 18, 0.6) 50%, rgba(3, 7, 18, 0.2) 100%);
}

.ecomm-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ecomm-text-box {
  max-width: 900px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 40px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.05);
  animation: floatOrb 8s infinite alternate ease-in-out;
}

.ecomm-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(236, 72, 153, 0.1);
  /* Magenta tint */
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: #f472b6;
  border-radius: 100px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.ecomm-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.text-neon-cyan {
  color: #22d3ee;
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.text-neon-magenta {
  color: #ec4899;
  text-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.ecomm-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ecomm-subtitle strong {
  color: #e2e8f0;
}

.ecomm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 30px rgba(34, 211, 238, 0.3);
}

.ecomm-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.ecomm-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(34, 211, 238, 0.5);
}

.ecomm-cta:hover svg {
  transform: translateX(5px);
}

/* Features Glass Bento Grid */
.ecomm-features-section {
  position: relative;
  padding: 140px 0;
  background-color: #030712;
  overflow: hidden;
}

.ecomm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
}

.orb-magenta {
  width: 700px;
  height: 700px;
  background: rgba(236, 72, 153, 0.15);
  top: 10%;
  right: -200px;
}

.orb-cyan {
  width: 800px;
  height: 800px;
  background: rgba(34, 211, 238, 0.1);
  bottom: -100px;
  left: -300px;
}

.ecomm-features-section .aw-container {
  z-index: 10;
  position: relative;
}

.ecomm-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 350px;
  gap: 30px;
}

.ecomm-bento-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ecomm-bento-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 2;
  background: rgba(236, 72, 153, 0.03);
  /* slight magenta tint */
}

.bento-glow {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.bento-glow:hover {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 30px 60px rgba(34, 211, 238, 0.2);
}

.ecomm-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #22d3ee;
  transition: all 0.3s ease;
}

.ecomm-bento-card:hover .ecomm-card-icon {
  background: rgba(34, 211, 238, 0.1);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.ecomm-card-icon svg {
  width: 30px;
  height: 30px;
}

.ecomm-bento-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 16px;
  line-height: 1.3;
}

.bento-wide h3 {
  font-size: 2.8rem;
  max-width: 80%;
}

.ecomm-bento-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.bento-wide p {
  font-size: 1.3rem;
  max-width: 70%;
}

/* Abstract visual inset for wide card */
.ecomm-abstract-visual {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
  animation: floatOrb 10s infinite alternate ease-in-out;
}

@media (max-width: 1200px) {
  .ecomm-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ecomm-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-wide h3 {
    font-size: 2rem;
    max-width: 100%;
  }

  .bento-wide p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .ecomm-text-box {
    padding: 50px 20px;
    margin: 0 20px;
  }
}

/* ==========================================================
   E-COMMERCE HIGH-END TOOLS SECTION
   ========================================================== */

.ecomm-tools-section {
  position: relative;
  background-color: #030712;
  padding: 120px 0;
  overflow: hidden;
}

.ecomm-tools-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.ecomm-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.ecomm-p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
}

.ecomm-tools-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ecomm-tools-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Timeline / Steps */
.ecomm-step-item {
  display: flex;
  gap: 20px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.ecomm-step-item:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ecomm-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
  line-height: 1;
  transition: all 0.4s ease;
}

.ecomm-step-item:hover .ecomm-step-num {
  -webkit-text-stroke: 1px #22d3ee;
  color: rgba(34, 211, 238, 0.1);
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.ecomm-step-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 12px;
}

.ecomm-step-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecomm-step-text li {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.ecomm-step-text li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #22d3ee;
}

.ecomm-step-text strong {
  color: #e2e8f0;
}

/* 3D Visual Hologram Side */
.ecomm-tools-visual {
  flex: 1;
  position: relative;
}

.ecomm-3d-showcase {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  perspective: 1200px;
}

.ecomm-glass-backdrop {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(8px);
  transform: translateZ(-100px);
  animation: pulseGlow 10s infinite alternate ease-in-out;
}

.orb-green {
  width: 600px;
  height: 600px;
  background: rgba(16, 185, 129, 0.1);
  top: 20%;
  left: -200px;
}

.ecomm-floating-tools {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotateY(-10deg);
  transition: transform 0.6s ease;
  filter: drop-shadow(0 0 40px rgba(34, 211, 238, 0.2));
}

.ecomm-3d-showcase:hover .ecomm-floating-tools {
  transform: rotateY(0deg) scale(1.05);
  filter: drop-shadow(0 0 60px rgba(34, 211, 238, 0.4));
}

.ecomm-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10;
  animation: floatOrb 5s infinite alternate ease-in-out;
  backdrop-filter: blur(10px);
}

.ecomm-chip svg {
  width: 18px;
  height: 18px;
}

.chip-cyan {
  top: 15%;
  right: 0;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: #22d3ee;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
  animation-delay: -1s;
}

.chip-magenta {
  bottom: 20%;
  left: -10%;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: #f472b6;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
  animation-delay: -3s;
}

@media (max-width: 1024px) {
  .ecomm-tools-layout {
    flex-direction: column-reverse;
  }
}

/* --- Spectacular Footer Styles --- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 40px 0 40px;
  font-family: "Urbanist", sans-serif;
  margin-top: 0;
  border-radius: 40px 40px 0 0;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.footer-glow.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -200px;
  left: -200px;
}

.footer-glow.glow-2 {
  width: 500px;
  height: 500px;
  background: var(--green);
  bottom: -100px;
  right: -100px;
}

.footer-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 164, 228, 0.4));
}

.footer-logo .logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 380px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 164, 228, 0.3);
}

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

.footer-heading {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-list a::before {
  content: '→';
  margin-right: 8px;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.footer-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
}

.newsletter-input-wrap {
  display: flex;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 6px;
  transition: all 0.3s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: rgba(0, 164, 228, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 164, 228, 0.1);
}

.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.newsletter-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrap button {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: none;
  width: 48px;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-input-wrap button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 164, 228, 0.3);
}

.newsletter-input-wrap button svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}