/* ==========================================================================
   HAMMERER STUDIO - GLOBAL STYLESHEET
   Clean Tech B2B Architecture & High-End Corporate Aesthetics
   ========================================================================== */

@import url('./variables.css');

/* --------------------------------------------------------------------------
   1. MODERN CSS RESET & BASE SETUP
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, svg, video, iframe, object {
  max-width: 100%;
  height: auto;
}

input, button, select, textarea {
  font-family: inherit;
  max-width: 100%;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: var(--line-height-normal);
  font-size: var(--font-size-base);
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   2. PRELOADER CINEMÁTICO INICIAL (LOGOTIPO DESTACADO 290px)
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-black);
  z-index: var(--z-preloader);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), visibility 1s cubic-bezier(0.65, 0, 0.35, 1);
  user-select: none;
  pointer-events: auto;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
  padding: var(--space-6);
}

.preloader-logo img {
  width: 290px;
  max-width: 85vw;
  height: auto;
  object-fit: contain;
  animation: preloader-logo-pulse 2s infinite ease-in-out;
}

@keyframes preloader-logo-pulse {
  0%, 100% {
    opacity: 0.88;
    filter: drop-shadow(0 0 14px rgba(183, 126, 59, 0.3));
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 32px rgba(183, 126, 59, 0.75));
    transform: scale(1.025);
  }
}

.preloader-track {
  width: 260px;
  height: 3px;
  background: rgba(157, 157, 156, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-peacock-light), var(--color-gold));
  box-shadow: 0 0 14px var(--color-gold);
  border-radius: var(--radius-full);
  animation: preloader-progress-anim 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes preloader-progress-anim {
  0% { width: 0%; }
  50% { width: 68%; }
  100% { width: 100%; }
}

.preloader-status {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   3. AMBIENT BACKGROUND & MESH GLOW (CLEAN TECH AESTHETIC)
   -------------------------------------------------------------------------- */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-ambient::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, var(--color-peacock-glow) 0%, rgba(32, 84, 102, 0.05) 50%, transparent 80%);
  filter: blur(80px);
  opacity: 0.75;
}

.bg-ambient::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, rgba(183, 126, 59, 0.03) 60%, transparent 80%);
  filter: blur(90px);
  opacity: 0.55;
}

.grid-pattern {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(157, 157, 156, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(157, 157, 156, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 85%);
}

/* --------------------------------------------------------------------------
   4. FLUID TYPOGRAPHY SYSTEM (CSS CLAMP FLUID SCALING)
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  color: var(--color-white);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw + 0.5rem, 4.25rem);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: clamp(1.5rem, 3.2vw + 0.5rem, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw + 0.4rem, 1.85rem);
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Gradient text helpers */
.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 20%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-peacock {
  background: linear-gradient(135deg, #ffffff 30%, var(--color-peacock-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-mixed {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold) 50%, var(--color-peacock-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   5. CONTAINERS & SECTION ESPACIADO (RESPONSIVE WHITE SPACE)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
  position: relative;
  z-index: var(--z-base);
}

.section {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
  position: relative;
}

.section-sm {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

/* --------------------------------------------------------------------------
   6. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, #8c5d28 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(183, 126, 59, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-hover) 0%, var(--color-gold) 100%);
  box-shadow: 0 6px 28px rgba(183, 126, 59, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--color-white);
  border-color: var(--border-peacock);
  backdrop-filter: var(--glass-backdrop-filter);
}

.btn-secondary:hover {
  background: var(--color-peacock-muted);
  border-color: var(--color-peacock-light);
  box-shadow: 0 0 20px var(--color-peacock-glow);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2cf076 0%, #159c8d 100%);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 0 20px rgba(183, 126, 59, 0.4);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-fast);
}

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

/* Badge component */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(32, 84, 102, 0.2);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* --------------------------------------------------------------------------
   7. HEADER & LOGO DYNAMIC SCROLL TRANSITION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-header);
  background: var(--bg-header);
  backdrop-filter: var(--glass-backdrop-filter);
  -webkit-backdrop-filter: var(--glass-backdrop-filter);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.header--scrolled {
  background: rgba(5, 7, 10, 0.95);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  height: 58px;
  min-width: 240px;
}

.brand-logo .logo-full {
  height: 58px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transform-origin: left center;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.brand-logo .logo-iso {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.75);
  transform-origin: left center;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -19px;
  pointer-events: none;
}

.header--scrolled .brand-logo .logo-full {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.header--scrolled .brand-logo .logo-iso {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  position: relative;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-peacock-light));
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* --------------------------------------------------------------------------
   PASARELA DE ACCESO SAAS DROPDOWN
   -------------------------------------------------------------------------- */
.pasarela-container {
  position: relative;
}

.btn-pasarela {
  background: linear-gradient(135deg, rgba(183, 126, 59, 0.18) 0%, rgba(32, 84, 102, 0.3) 100%);
  border: 1px solid var(--border-gold);
  color: var(--color-white);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  backdrop-filter: var(--glass-backdrop-filter);
  transition: all var(--transition-normal);
  user-select: none;
}

.btn-pasarela:hover,
.btn-pasarela[aria-expanded="true"] {
  background: linear-gradient(135deg, var(--color-gold) 0%, #8c5d28 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(183, 126, 59, 0.45);
}

.pasarela-icon-badge {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
}

.pasarela-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-pasarela[aria-expanded="true"] .pasarela-chevron {
  transform: rotate(180deg);
}

.pasarela-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  background-color: #05070a !important;
  background: #05070a !important;
  border: 1px solid #b77e3b !important;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(183, 126, 59, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  z-index: var(--z-modal);
  box-sizing: border-box;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.pasarela-menu.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.pasarela-header {
  padding: var(--space-2) var(--space-3) var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pasarela-header-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.pasarela-status-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-peacock-light);
  background: var(--color-peacock-muted);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-peacock);
}

.pasarela-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pasarela-item-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
}

.pasarela-item-link:hover {
  background: rgba(32, 84, 102, 0.3);
  border-color: var(--border-peacock);
  transform: translateX(4px);
}

.pasarela-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(183, 126, 59, 0.2) 0%, rgba(32, 84, 102, 0.3) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.pasarela-icon svg {
  width: 22px;
  height: 22px;
}

.pasarela-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.pasarela-item-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pasarela-domain {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-peacock-light);
}

.pasarela-item-desc {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: var(--space-2);
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--header-height) + var(--section-padding-desktop));
  padding-bottom: var(--section-padding-desktop);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
}

.hero-title {
  margin-top: var(--space-2);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 0.6vw + 0.85rem, 1.25rem);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--glass-backdrop-filter);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.tech-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-peacock-light), transparent);
}

.tech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-4);
}

.tech-dots {
  display: flex;
  gap: 6px;
}

.tech-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(157, 157, 156, 0.3);
}

.tech-dot:nth-child(1) { background: #ff5f56; }
.tech-dot:nth-child(2) { background: #ffbd2e; }
.tech-dot:nth-child(3) { background: #27c93f; }

.tech-status {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-gold);
}

.tech-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.tech-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(157, 157, 156, 0.1);
  width: 100%;
}

.tech-line.short { width: 60%; }
.tech-line.accent { background: var(--color-peacock-muted); border: 1px solid var(--border-peacock); }

/* --------------------------------------------------------------------------
   9. PRODUCT SHOWCASE GRID (SPARK HUB & FORGE ERP)
   -------------------------------------------------------------------------- */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  backdrop-filter: var(--glass-backdrop-filter);
  -webkit-backdrop-filter: var(--glass-backdrop-filter);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-peacock-light), var(--color-gold));
  opacity: 0.6;
  transition: opacity var(--transition-normal);
}

.product-card-spark:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(183, 126, 59, 0.3);
  background: var(--bg-card-hover);
}

.product-card-forge:hover {
  transform: translateY(-8px);
  border-color: var(--border-peacock);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(32, 84, 102, 0.4);
  background: var(--bg-card-hover);
}

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

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.product-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(183, 126, 59, 0.2) 0%, rgba(32, 84, 102, 0.3) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.product-icon-box.peacock {
  background: linear-gradient(135deg, rgba(32, 84, 102, 0.3) 0%, rgba(183, 126, 59, 0.15) 100%);
  border-color: var(--border-peacock);
  color: var(--color-peacock-light);
}

.product-icon-box svg {
  width: 28px;
  height: 28px;
}

.product-badge {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-gold);
  background: var(--color-gold-muted);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  letter-spacing: 0.05em;
}

.product-badge.peacock {
  color: var(--color-peacock-light);
  background: var(--color-peacock-muted);
  border-color: var(--border-peacock);
}

.product-title-area {
  margin-bottom: var(--space-4);
}

.product-title {
  font-size: clamp(1.5rem, 1.8vw + 0.6rem, 2.25rem);
  margin-bottom: var(--space-2);
}

.product-domain-pill {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-peacock-light);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.product-description {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.product-feature-item {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.product-feature-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.product-card-footer {
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* --------------------------------------------------------------------------
   10. COTIZADOR SPARK HUBS - MODAL POP-UP EXPERIENCE
   -------------------------------------------------------------------------- */
.cotizador-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
  box-sizing: border-box;
}

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

.cotizador-modal-box {
  background: linear-gradient(135deg, rgba(18, 24, 32, 0.98) 0%, rgba(5, 7, 10, 0.99) 100%);
  border: 1px solid #b77e3b;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1040px;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  position: relative;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.cotizador-modal-overlay.active .cotizador-modal-box {
  transform: scale(1) translateY(0);
}

.cotizador-modal-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.cotizador-modal-close:hover {
  background: var(--color-gold-muted);
  border-color: var(--border-gold);
  color: var(--color-gold);
  transform: rotate(90deg);
}

.cotizador-modal-header {
  margin-bottom: var(--space-8);
  padding-right: var(--space-10);
}

.cotizador-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: start;
}

.cotizador-step {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-color);
}

.cotizador-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cotizador-step-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.cotizador-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  border: 1px solid var(--border-gold);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
}

.tier-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.tier-card-option {
  position: relative;
  cursor: pointer;
}

.tier-card-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tier-card-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier-card-option:hover .tier-card-content {
  border-color: var(--border-peacock);
  background: var(--color-peacock-muted);
}

.tier-card-option input[type="radio"]:checked + .tier-card-content {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, rgba(183, 126, 59, 0.18) 0%, rgba(32, 84, 102, 0.25) 100%);
  box-shadow: 0 0 20px rgba(183, 126, 59, 0.3);
}

.tier-card-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.tier-card-price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gold);
  margin-top: auto;
  padding-top: var(--space-2);
}

.stepper-control {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 4px;
  gap: var(--space-3);
}

.stepper-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--color-white);
  font-size: var(--font-size-base);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.stepper-btn:hover {
  border-color: var(--border-gold);
  color: var(--color-gold);
  background: var(--color-gold-muted);
}

.stepper-input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  outline: none;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-sizing: border-box;
  max-width: 100%;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.addon-checkbox-label:hover {
  border-color: var(--border-peacock);
  background: var(--color-peacock-muted);
}

.addon-checkbox-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 0;
  margin-right: var(--space-3);
}

.addon-checkbox-label input[type="radio"],
.addon-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-gold);
  cursor: pointer;
  flex-shrink: 0;
}

.addon-name {
  font-size: var(--font-size-xs);
  color: var(--text-primary);
  line-height: var(--line-height-normal);
}

.addon-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-peacock-light);
  background: var(--color-peacock-muted);
  border: 1px solid var(--border-peacock);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.cotizador-summary-card {
  background: linear-gradient(135deg, rgba(18, 24, 32, 0.95) 0%, rgba(5, 7, 10, 0.98) 100%);
  border: 1px solid #b77e3b;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}

.summary-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-4);
}

.summary-title {
  font-size: var(--font-size-base);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.summary-subtitle {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.summary-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-val {
  font-size: var(--font-size-xs);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  line-height: 1.45;
}

.summary-total-box {
  background: rgba(183, 126, 59, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  box-shadow: inset 0 0 20px rgba(183, 126, 59, 0.1);
}

.total-label {
  font-size: 0.68rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-mono);
  display: block;
}

.total-price {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2vw + 0.8rem, 2.35rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  margin-top: var(--space-2);
}

/* --------------------------------------------------------------------------
   11. SERVICES / FEATURE CARDS
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-16);
}

.section-header p {
  margin-top: var(--space-4);
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.2rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: var(--glass-backdrop-filter);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(183, 126, 59, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-md), 0 0 30px rgba(183, 126, 59, 0.15);
  background: var(--bg-card-hover);
}

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

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(32, 84, 102, 0.3) 0%, rgba(183, 126, 59, 0.15) 100%);
  border: 1px solid var(--border-peacock);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

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

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.card-text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   12. MANIFIESTO SECTION
   -------------------------------------------------------------------------- */
.manifesto-box {
  background: var(--bg-card);
  border: 1px solid var(--border-peacock);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  backdrop-filter: var(--glass-backdrop-filter);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.manifesto-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), var(--color-peacock-light));
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.manifesto-pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.manifesto-pillar-num {
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.manifesto-pillar-title {
  font-size: var(--font-size-lg);
  color: var(--color-white);
}

.manifesto-pillar-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* --------------------------------------------------------------------------
   13. STATS & CORPORATE TRUST SECTION
   -------------------------------------------------------------------------- */
.stats-bar {
  background: rgba(11, 15, 20, 0.85);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-item {
  padding: var(--space-4);
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2vw + 1rem, 3.25rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   14. CTA BANNER SECTION
   -------------------------------------------------------------------------- */
.cta-box {
  background: linear-gradient(135deg, rgba(32, 84, 102, 0.4) 0%, rgba(11, 15, 20, 0.95) 50%, rgba(183, 126, 59, 0.25) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-peacock-glow);
}

.cta-box h2 {
  margin-bottom: var(--space-4);
}

.cta-box p {
  font-size: clamp(1rem, 0.6vw + 0.85rem, 1.25rem);
  max-width: 660px;
  margin: 0 auto var(--space-8) auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. FOOTER (LOGOTIPO DESTACADO AMPLIADO A 58px)
   -------------------------------------------------------------------------- */
.footer {
  background-color: #030406;
  border-top: 1px solid var(--border-color);
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .brand-logo-footer {
  display: inline-block;
  text-decoration: none;
}

.footer-brand .brand-logo-footer img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  max-width: 340px;
  line-height: var(--line-height-relaxed);
}

.footer-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  margin-bottom: var(--space-6);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(2px);
}

.footer-link-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-gold);
  background: var(--color-gold-muted);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(157, 157, 156, 0.1);
  padding-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

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

/* --------------------------------------------------------------------------
   16. FLOATING WHATSAPP CORPORATE WIDGET
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 990;
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
  animation: whatsapp-pulse 3s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6), 0 0 25px rgba(183, 126, 59, 0.5);
  background: linear-gradient(135deg, #2cf076 0%, #159c8d 100%);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-4px);
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    margin-top: var(--space-8);
  }

  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .cotizador-grid {
    grid-template-columns: 1fr;
  }

  .tier-cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-6));
    padding-bottom: var(--section-padding-mobile);
    min-height: auto;
  }

  .container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .brand-logo {
    min-width: auto;
    height: 48px;
  }

  .brand-logo .logo-full {
    height: 44px;
    max-width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid #b77e3b;
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    box-sizing: border-box;
  }

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

  .mobile-nav-toggle {
    display: block;
  }

  .pasarela-menu {
    position: fixed !important;
    top: calc(var(--header-height) + 8px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(-10px) scale(0.98) !important;
    width: min(360px, calc(100vw - 32px)) !important;
    max-width: 360px !important;
    margin: 0 !important;
    background-color: #05070a !important;
    background: #05070a !important;
    border: 1px solid #b77e3b !important;
    border-radius: var(--radius-lg) !important;
    padding: var(--space-4) !important;
    box-sizing: border-box !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(183, 126, 59, 0.4) !important;
    z-index: 99999 !important;
  }

  .pasarela-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .cotizador-modal-overlay {
    padding: 16px 12px;
  }

  .cotizador-modal-box {
    padding: 20px 16px;
    max-height: 90vh;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--radius-md);
  }

  .cotizador-modal-header {
    padding-right: 44px;
    margin-bottom: var(--space-6);
  }

  .cotizador-modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .tier-cards-grid {
    grid-template-columns: 1fr;
  }

  .cotizador-summary-card {
    padding: 24px 16px;
    box-sizing: border-box;
    max-width: 100%;
  }

  #staff-counter-box {
    padding-left: 0 !important;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 24px 18px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  .card {
    padding: 24px 18px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  .tech-card-wrapper {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .manifesto-box {
    padding: var(--space-6);
    box-sizing: border-box;
    max-width: 100%;
  }

  .cta-box {
    padding: var(--space-8) var(--space-6);
    box-sizing: border-box;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .tech-card-wrapper {
    aspect-ratio: auto;
    min-height: 260px;
    padding: 18px 16px;
  }

  .product-card {
    padding: 20px 16px;
  }

  .card {
    padding: 20px 16px;
  }
}
