@font-face {
  font-family: 'Akira Expanded';
  src: url('fonts/Akira Expanded.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MomoTrustDisplay';
  src: url('fonts/MomoTrustDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'InterVar';
  src: url('fonts/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core Colors - Green/Black/White ONLY */
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --card-bg: rgba(20, 20, 20, 0.8);
  --card-border: rgba(132, 169, 73, 0.2);

  /* User Palette: #719735, #406701, #638927, #84a949, #537912 */
  --primary: #719735;
  /* Main Green */
  --primary-hover: #84a949;
  /* Olive Green for Hovers */
  --primary-dark: #406701;
  /* Dark Green */
  --primary-glow: rgba(132, 169, 73, 0.4);

  --text: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.7);
  /* White with opacity, NO GRAY */

  --accent: #638927;

  /* UI Tokens */
  --radius: 24px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 40px rgba(113, 151, 53, 0.15);
  --glass: blur(20px) saturate(180%);

  /* Universal Animation Duration - Change this value to adjust all animations
     Options:
     - Fast: 0.3s (300ms) - Quick and snappy
     - Medium: 0.5s (500ms) - Balanced (default)
     - Slow: 0.8s (800ms) - Smooth and visible
     - Very Slow: 1.2s (1200ms) - Very smooth and dramatic
  */
  --animation-duration: 0.7s;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-fast: calc(var(--animation-duration) * 0.5);
  --transition-base: calc(var(--animation-duration) * 0.6);
  --transition-slow: var(--animation-duration);
  --transition-slower: calc(var(--animation-duration) * 1.6);

}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* n8n Chat variable overrides */
/* Temporalmente oculto el chat de n8n */
.n8n-chat,
#n8n-chat-container,
.n8n-chat .chat-window-toggle,
.n8n-chat .chat-window-wrapper {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.n8n-chat {
  --chat--color--primary: #719735;
  --chat--color--primary-shade-50: #638927;
  --chat--color--primary--shade-100: #406701;
  --chat--color--secondary: #84a949;
  --chat--color-secondary-shade-50: #719735;
  --chat--color-white: #ffffff;
  --chat--color-light: rgba(255, 255, 255, 0.9);
  --chat--color-light-shade-50: rgba(255, 255, 255, 0.65);
  --chat--color-light-shade-100: rgba(255, 255, 255, 0.45);
  --chat--color-medium: rgba(3, 3, 3, 0.2);
  --chat--color-dark: #030303;
  --chat--color-disabled: rgba(3, 3, 3, 0.4);
  --chat--color-typing: #84a949;
  --chat--spacing: 1rem;
  --chat--border-radius: var(--radius);
  --chat--transition-duration: 0.3s;
  --chat--font-family: 'InterVar', 'Inter', sans-serif;
  --chat--window--width: 380px;
  --chat--window--height: 600px;
  --chat--window--bottom: 24px;
  --chat--window--right: 24px;
  --chat--window--z-index: 1100;
  --chat--window--border: 1px solid rgba(132, 169, 73, 0.3);
  --chat--window--border-radius: var(--radius);
  --chat--heading--font-size: 1.25rem;
  --chat--subtitle--line-height: 1.5;
  --chat--header--background: rgba(113, 151, 53, 0.95);
  --chat--header--color: #ffffff;
  --chat--header--border-bottom: 1px solid rgba(132, 169, 73, 0.3);
  --chat--body--background: rgba(255, 255, 255, 0.55);
  --chat--footer--background: rgba(255, 255, 255, 0.6);
  --chat--footer--color: #030303;
  --chat--message--font-size: 1rem;
  --chat--message--padding: 0.9rem 1rem;
  --chat--message--border-radius: 18px;
  --chat--message--bot--background: rgba(255, 255, 255, 0.95);
  --chat--message--bot--color: #030303;
  --chat--message--user--background: #719735;
  --chat--message--user--color: #ffffff;
  --chat--message--user--border: none;
  --chat--message--bot--border: none;
  --chat--toggle--size: 64px;
  --chat--toggle--background: rgba(113, 151, 53, 0.95);
  --chat--toggle--hover--background: rgba(132, 169, 73, 0.95);
  --chat--toggle--active--background: #406701;
  --chat--toggle--color: #ffffff;
  --chat--textarea--height: 54px;
  --chat--input--font-size: 0.95rem;
  --chat--input--background: rgba(255, 255, 255, 0.95);
  --chat--input--text-color: #030303;
  --chat--input--border-radius: 24px;
  --chat--input--padding: 0.8rem 1rem;
  --chat--input--border: 1px solid rgba(132, 169, 73, 0.35);
  --chat--input--border-active: 1px solid rgba(132, 169, 73, 0.65);
  --chat--input--send--button--background: #719735;
  --chat--input--send--button--color: #ffffff;
  --chat--input--send--button--background-hover: #84a949;
  --chat--input--send--button--color-hover: #ffffff;
  --chat--input--left--panel--width: 0;
  --chat--button--background: #719735;
  --chat--button--color: #ffffff;
  --chat--button--hover--background: #84a949;
  --chat--button--hover--color: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'InterVar', 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Effects */
body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(132, 169, 73, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(64, 103, 1, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  font-family: 'MomoTrustDisplay';
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  color: #FFFFFF;
  transition: all var(--animation-duration) var(--ease-out);
  will-change: transform;
  display: inline-block;
  min-height: 1.2em;
}

h1:hover {
  transform: translateY(-2px);
}

/* Typing Animation for H1 */
h1[data-typing] {
  border-right: 2px solid var(--primary);
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
  0%, 50% {
    border-right-color: var(--primary);
  }
  51%, 100% {
    border-right-color: transparent;
  }
}

/* Heading Animations */
.heading-animated {
  opacity: 0;
  transition: all var(--animation-duration) var(--ease-out);
}

.heading-slide-up {
  transform: translateY(30px);
}

.heading-slide-up.heading-animated {
  opacity: 1;
  transform: translateY(0);
}

.heading-scale {
  transform: scale(0.9);
}

.heading-scale.heading-animated {
  opacity: 1;
  transform: scale(1);
}

.heading-fade {
  opacity: 0;
}

.heading-fade.heading-animated {
  opacity: 1;
}

.heading-slide-left {
  transform: translateX(-30px);
}

.heading-slide-left.heading-animated {
  opacity: 1;
  transform: translateX(0);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 1rem;
  color: #FFFFFF;
  transition: all var(--animation-duration) var(--ease-out);
  will-change: transform, text-shadow;
}

h2:hover {
  text-shadow: 0 0 15px rgba(132, 169, 73, 0.3);
  transform: translateY(-1px);
}

h3 {
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, color;
}

h3:hover {
  color: var(--primary);
  transform: translateX(4px);
}

p {
  color: var(--text);
  font-size: 1.1rem;
  transition: all var(--transition-base) var(--ease-out);
  will-change: color;
}

p:hover {
  color: rgba(255, 255, 255, 0.9);
}

p.footer-text {
  font-family: 'MomoTrustDisplay';
}

.logo-text {
  font-family: 'Akira Expanded';
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

a,
a:visited {
  color: #FFFFFF !important;
  font-family: 'MomoTrustDisplay';
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

strong {
  font-family: 'MomoTrustDisplay';
}

/* Header */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  margin-top: 20px;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform;
  overflow: visible;
}

.header-inner {
  background: linear-gradient(135deg, rgba(113, 151, 53, 0.65) 0%, rgba(132, 169, 73, 0.9) 100%);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: 999px;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(132, 169, 73, 0.1) inset,
    0 2px 8px rgba(132, 169, 73, 0.2);
  transition: all var(--animation-duration) var(--ease-out);
  will-change: background, backdrop-filter, box-shadow;
  position: relative;
  overflow: hidden;
}

.header-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.header-inner:hover::before {
  left: 100%;
}


.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-base) var(--ease-out);
}

.logo-text {
  transition: all var(--transition-base) var(--ease-out);
}

.brand:hover .logo-text {
  transform: translateX(4px);
}

.logo-img {
  display: block;
  height: 4.5rem;
  transition: transform 0.1s ease-out;
  will-change: transform;
  transform-origin: center center;
}

.brand:hover .logo-img {
  animation: rotate 2s linear infinite;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all var(--transition-base) var(--ease-out);
  font-family: 'MomoTrustDisplay', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  z-index: 100;
  position: relative;
  min-width: 50px;
}

.language-toggle:hover {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(132, 169, 73, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(113, 151, 53, 0.3);
}

.language-toggle:active {
  transform: translateY(0);
}

.language-toggle .lang-text {
  display: block;
  transition: all var(--transition-base) var(--ease-out);
}

/* Mostrar menú hamburguesa en pantallas medianas y pequeñas */
@media (max-width: 1200px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-desktop {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all var(--animation-duration) var(--ease-out);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Desktop Navigation - siempre visible en pantallas grandes */
.nav-desktop {
  display: flex;
}

/* Modal Menu */
.modal-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}

.modal-menu[aria-hidden="false"] {
  display: block;
  pointer-events: auto;
}

.modal-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--animation-duration) var(--ease-out);
}

.modal-menu[aria-hidden="false"] .modal-menu-overlay {
  opacity: 1;
}

.modal-menu-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 24px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--animation-duration) var(--ease-out), transform var(--animation-duration) var(--ease-out);
}

.modal-menu[aria-hidden="false"] .modal-menu-content {
  opacity: 1;
  transform: scale(1);
}

.modal-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, rgba(113, 151, 53, 0.65) 0%, rgba(132, 169, 73, 0.65) 100%);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 
    0 0 0 1px rgba(132, 169, 73, 0.1) inset,
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-nav a {
  padding: 18px 32px;
  font-size: 1.3rem;
  border-radius: 16px;
  text-align: center;
  white-space: nowrap;
  width: auto;
  min-width: 200px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none !important;
  font-weight: 500;
  transition: all var(--animation-duration) var(--ease-out);
  position: relative;
  will-change: transform, color, background;
  font-family: 'MomoTrustDisplay', sans-serif;
  border: none;
  outline: none;
}

.modal-nav a::after,
.modal-nav a::before {
  display: none;
}

.modal-nav a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.modal-nav-cta {
  margin-left: 0;
  margin-top: 0;
  text-align: center;
  padding: 18px 32px;
  font-size: 1.3rem;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border: 1px solid rgba(132, 169, 73, 0.4);
  color: #FFFFFF !important;
  font-family: 'MomoTrustDisplay', sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: none;
  outline: none;
}

.modal-nav-cta::after,
.modal-nav-cta::before {
  display: none;
}

.modal-nav-cta:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 50%, var(--primary) 100%);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}

.nav a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--animation-duration) var(--ease-out);
  position: relative;
  padding: 10px 18px;
  border-radius: 50px;
  will-change: transform, color, background;
  white-space: nowrap;
  border: none;
  border-bottom: none;
  outline: none;
}

.nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  opacity: 0;
  transition: opacity var(--animation-duration) var(--ease-out);
  z-index: -1;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-dark), transparent);
  border-radius: 2px;
  transition: width var(--animation-duration) var(--ease-out);
}

.nav a:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.nav a:hover::before {
  opacity: 1;
}

.nav a:hover::after {
  width: 60%;
}

.nav a:active {
  transform: translateY(2px) scale(0.98);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.2) inset,
    0 1px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-out;
}

.nav a:active::before {
  opacity: 0.3;
}

.nav a:active::after {
  width: 0;
}

.nav-cta {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF !important;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--animation-duration) var(--ease-out) !important;
  will-change: transform, background, box-shadow, backdrop-filter;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 169, 73, 0.4);
  box-shadow: 
    0 4px 16px rgba(64, 103, 1, 0.4),
    0 0 0 1px rgba(132, 169, 73, 0.2) inset;
  margin-left: 12px;
}

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

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 50%, var(--primary) 100%);
  box-shadow: 
    0 8px 24px rgba(64, 103, 1, 0.5),
    0 0 0 1px rgba(132, 169, 73, 0.4) inset,
    0 0 20px rgba(132, 169, 73, 0.4);
  border-color: var(--primary-hover);
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:active {
  transform: translateY(2px) scale(0.97);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.4) inset,
    0 1px 4px rgba(64, 103, 1, 0.3),
    0 0 0 1px rgba(132, 169, 73, 0.3) inset;
  transition: all 0.1s ease-out;
}

.nav-cta:active::before {
  left: 100%;
  opacity: 0;
}

/* Background Visual Elements */
.bg-visual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(132, 169, 73, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0;
  opacity: 0.4;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -15%;
  left: -8%;
  opacity: 0.4;
  animation-delay: 0s;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -12%;
  right: -8%;
  opacity: 0.35;
  animation-delay: 6s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-hover) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation-delay: 12s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
  top: 20%;
  right: 15%;
  opacity: 0.25;
  animation-delay: 18s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(40px, -40px) scale(1.15);
    opacity: 0.4;
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.35;
  }
  75% {
    transform: translate(20px, 20px) scale(1.05);
    opacity: 0.38;
  }
}

.orb-1 {
  animation: orbFloat1 30s ease-in-out infinite;
}

.orb-2 {
  animation: orbFloat2 28s ease-in-out infinite;
}

.orb-3 {
  animation: orbFloat3 32s ease-in-out infinite;
}

.orb-4 {
  animation: orbFloat4 26s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(50px, -50px) scale(1.2);
    opacity: 0.5;
  }
  66% {
    transform: translate(-40px, 40px) scale(0.85);
    opacity: 0.35;
  }
}

@keyframes orbFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  33% {
    transform: translate(-45px, 45px) scale(1.1);
    opacity: 0.45;
  }
  66% {
    transform: translate(35px, -35px) scale(0.9);
    opacity: 0.3;
  }
}

@keyframes orbFloat3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(calc(-50% + 60px), calc(-50% - 60px)) scale(1.25);
    opacity: 0.4;
  }
  66% {
    transform: translate(calc(-50% - 50px), calc(-50% + 50px)) scale(0.8);
    opacity: 0.25;
  }
}

@keyframes orbFloat4 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
  33% {
    transform: translate(35px, 35px) scale(1.15);
    opacity: 0.35;
  }
  66% {
    transform: translate(-30px, -30px) scale(0.85);
    opacity: 0.2;
  }
}

/* Hero Section */
.section-hero {
  padding: 120px 0 80px;
  position: relative;
}

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

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

.hero-text .sub {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 90%;
}

.cta-group {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'MomoTrustDisplay', sans-serif;
  transition: all var(--animation-duration) var(--ease-out);
  cursor: pointer;
  will-change: transform, background, box-shadow, border-color;
  position: relative;
  overflow: hidden;
  border: none;
  border-bottom: none;
  letter-spacing: 0.02em;
  outline: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(113, 151, 53, 0.65) 0%, rgba(132, 169, 73, 0.65) 100%);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF;
  box-shadow: 
    0 4px 20px rgba(113, 151, 53, 0.4),
    0 0 0 1px rgba(132, 169, 73, 0.2) inset;
  border: 1px solid rgba(132, 169, 73, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, rgba(132, 169, 73, 0.65) 0%, rgba(113, 151, 53, 0.65) 100%);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  box-shadow: 
    0 8px 32px rgba(113, 151, 53, 0.5),
    0 0 0 1px rgba(132, 169, 73, 0.4) inset,
    0 0 24px rgba(132, 169, 73, 0.3);
  border-color: var(--primary-hover);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border-color: var(--primary);
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 6px 24px rgba(132, 169, 73, 0.25),
    0 0 0 1px rgba(132, 169, 73, 0.2) inset;
}

.btn-secondary:active {
  transform: translateY(-1px) scale(1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF !important;
  border-color: rgba(132, 169, 73, 0.3);
}

.trust {
  margin-top: 32px;
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Mockup / Visuals */
.mock {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.mock-header {
  padding: 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.mock-body {
  padding: 24px;
  min-height: 500px;
  max-height: 600px;
  overflow-y: auto;
}

.mock-chat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  padding-right: 24px;
}

.mock-chat-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'InterVar', 'Inter', sans-serif;
  min-width: 60px;
  flex-shrink: 0;
  padding-top: 2px;
}

.mock-chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.code-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 0;
}

.mock-chat-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  align-self: center;
  box-shadow: 0 0 12px rgba(255, 68, 68, 0.6);
  animation: pulse-red 2s ease-in-out infinite;
}

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

.mock-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 20px 0;
  position: relative;
}

.mock-separator::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Section Background Patterns */
.section-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.section .container {
  position: relative;
  z-index: 1;
}

/* Problema Section - Minimalist Lines Pattern */
.section-bg-problema {
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(132, 169, 73, 0.03) 60px,
      rgba(132, 169, 73, 0.03) 61px
    );
  background-size: 100% 100%;
  opacity: 0.4;
}

/* Valor Section - Minimalist Dots Pattern */
.section-valor {
  background: #030303;
}

.section-bg-valor {
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(132, 169, 73, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, rgba(113, 151, 53, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(132, 169, 73, 0.02) 0.5px, transparent 0.5px);
  background-size: 120px 120px, 150px 150px, 100px 100px;
  background-position: 0 0, 60px 60px, 30px 30px;
  opacity: 0.5;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 50px 50px, 25px 25px;
  }
  100% {
    background-position: 100px 100px, 150px 150px, 125px 125px;
  }
}

/* ROI Section - Minimalist Grid Pattern */
.section-bg-roi {
  background: transparent;
  position: relative;
}

.section-bg-roi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(132, 169, 73, 0.02) 80px,
      rgba(132, 169, 73, 0.02) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(132, 169, 73, 0.02) 80px,
      rgba(132, 169, 73, 0.02) 81px
    );
  opacity: 0.3;
}

.section-bg-roi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(132, 169, 73, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(113, 151, 53, 0.02) 0%, transparent 40%);
  opacity: 0.4;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes orbPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Casos Section - Star/Checkmark Pattern */
.section-bg-casos {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(132, 169, 73, 0.1) 3px, transparent 3px),
    radial-gradient(circle at 75% 75%, rgba(113, 151, 53, 0.12) 2px, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(99, 137, 39, 0.08) 1px, transparent 1px);
  background-size: 80px 80px, 100px 100px, 60px 60px;
  background-position: 0 0, 40px 40px, 20px 20px;
}

/* Cómo funciona Section - Arrow/Flow Pattern */
.section-bg-como {
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(132, 169, 73, 0.08) 30px,
      rgba(132, 169, 73, 0.08) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(113, 151, 53, 0.06) 30px,
      rgba(113, 151, 53, 0.06) 32px
    );
  background-size: 60px 60px;
  background-position: 0 0;
}

/* Infraestructura Section - Grid/Security Pattern */
.section-bg-infraestructura {
  background-image: 
    linear-gradient(rgba(132, 169, 73, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 169, 73, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(113, 151, 53, 0.05) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 20px 20px;
  background-position: 0 0, 0 0, 10px 10px;
}

/* Contacto Section - Wave/Radiation Pattern */
.section-bg-contacto {
  background-image: 
    radial-gradient(circle at center, rgba(132, 169, 73, 0.1) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(113, 151, 53, 0.08) 2px, transparent 2px),
    radial-gradient(circle at center, rgba(99, 137, 39, 0.06) 3px, transparent 3px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  background-position: 0 0, 30px 30px, 50px 50px;
  animation: wavePattern 15s ease-in-out infinite;
}

@keyframes wavePattern {
  0%, 100% {
    background-position: 0 0, 30px 30px, 50px 50px;
    opacity: 0.15;
  }
  50% {
    background-position: 30px 30px, 60px 60px, 80px 80px;
    opacity: 0.2;
  }
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.benefits-grid .benefit-card:nth-child(1),
.benefits-grid .benefit-card:nth-child(2),
.benefits-grid .benefit-card:nth-child(3) {
  grid-column: span 2;
}

.benefits-grid .benefit-card:nth-child(4) {
  grid-column: 2 / 4;
}

.benefits-grid .benefit-card:nth-child(5) {
  grid-column: 4 / 6;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-grid .benefit-card:nth-child(1),
  .benefits-grid .benefit-card:nth-child(2),
  .benefits-grid .benefit-card:nth-child(3),
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5) {
    grid-column: span 1;
  }
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  will-change: transform, border-color, box-shadow;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(132, 169, 73, 0.1), transparent);
  transition: left 0.5s var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(132, 169, 73, 0.2);
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card .icon {
  width: 50px;
  height: 50px;
  background: rgba(132, 169, 73, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, background, box-shadow;
}

.benefit-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(132, 169, 73, 0.2);
  box-shadow: 0 0 20px rgba(132, 169, 73, 0.3);
}

.benefit-card:hover .icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(132, 169, 73, 0.6));
}

.benefit-card .icon svg {
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, filter;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

/* Tabs & Panels */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 999px;
  width: fit-content;
  margin-inline: auto;
}

.tab {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, background, color;
  position: relative;
  overflow: hidden;
}

.tab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(132, 169, 73, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow) var(--ease-out), height var(--transition-slow) var(--ease-out);
}

.tab:hover::before,
.tab.active::before {
  width: 300px;
  height: 300px;
}

.tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  position: relative;
  z-index: 1;
}

.tab.active:hover {
  transform: translateY(-2px);
}

.panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  transition: opacity var(--transition-slow) var(--ease-out), transform var(--transition-slow) var(--ease-out);
  will-change: opacity, transform;
}

.panel.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp var(--transition-slow) var(--ease-out);
}

.panel:not(.active) {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.keypoints {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}


.keypoints li {
  transition: all 0.3s var(--ease-out);
}

.keypoints li:hover {
  transform: translateX(4px);
  color: var(--text);
}

.keypoints li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  transition: all 0.3s var(--ease-out);
}

.keypoints li:hover::before {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(132, 169, 73, 0.6);
}

.metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
}

.metric span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, text-shadow;
}

.metric:hover span {
  transform: scale(1.1);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, border-color, box-shadow;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(132, 169, 73, 0.15);
}

.step:hover .num {
  color: rgba(132, 169, 73, 0.2);
}

.step h3 {
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, color;
}

.step .num {
  transition: all var(--transition-base) var(--ease-out);
  will-change: color;
}

.step:hover h3 {
  color: var(--primary);
  transform: translateX(4px);
}

.step .num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.compliance {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background: rgba(132, 169, 73, 0.1);
  border: 1px solid rgba(132, 169, 73, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base) var(--ease-out);
  cursor: default;
  will-change: transform, background, border-color, box-shadow;
}

.badge:hover {
  background: rgba(132, 169, 73, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(132, 169, 73, 0.3);
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, border-color, box-shadow;
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(132, 169, 73, 0.15);
}

.testi-card:hover .avatar {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(132, 169, 73, 0.4);
}

.testi-card blockquote {
  font-size: 1rem;
  font-family: 'MomoTrustDisplay';
  margin: 0 0 20px;
  color: var(--text);
}

figcaption {
  font-family: 'MomoTrustDisplay';
}

.avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #000);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, box-shadow;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(132, 169, 73, 0.1);
}

.price-card .price span {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  font-family: 'MomoTrustDisplay';
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 60px 0;
  margin-top: 80px;
  background: #000;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

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

.site-footer .left .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-footer .left .brand .logo-img {
  height: 30px;
  width: auto;
}

.site-footer .left .brand .logo-text {
  font-family: 'Akira Expanded';
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-family: 'MomoTrustDisplay', sans-serif;
}

.footer-cta {
  color: #FFFFFF;
  text-decoration: none !important;
  font-size: 1.1rem;
  background: rgba(113, 151, 53, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-bottom: none;
  transition: all var(--animation-duration) var(--ease-out);
  position: relative;
  display: inline-block;
  will-change: transform, color, background, backdrop-filter;
  margin: 8px 0;
  font-family: 'MomoTrustDisplay', sans-serif;
  font-weight: 600;
  outline: none;
}

.footer-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(113, 151, 53, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(113, 151, 53, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text .sub {
    margin-inline: auto;
  }

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

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

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

  .menu-toggle {
    display: flex;
  }


}

/* Advanced Scroll Animations */
.reveal {
  opacity: 0;
  transition: all var(--animation-duration) var(--ease-out);
  will-change: opacity, transform, filter;
}

/* Fade Animation */
.reveal.reveal-fade {
  opacity: 0;
}

.reveal.reveal-fade.revealed {
  opacity: 1;
}

/* Slide Up Animation */
.reveal.reveal-slide-up {
  opacity: 0;
  transform: translateY(50px);
}

.reveal.reveal-slide-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Down Animation */
.reveal.reveal-slide-down {
  opacity: 0;
  transform: translateY(-50px);
}

.reveal.reveal-slide-down.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Left Animation */
.reveal.reveal-slide-left {
  opacity: 0;
  transform: translateX(50px);
}

.reveal.reveal-slide-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide Right Animation */
.reveal.reveal-slide-right {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal.reveal-slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale Animation */
.reveal.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
}

.reveal.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Rotate Animation */
.reveal.reveal-rotate {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
}

.reveal.reveal-rotate.revealed {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Blur Animation */
.reveal.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
}

.reveal.reveal-blur.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Flip Animation */
.reveal.reveal-flip {
  opacity: 0;
  transform: perspective(1000px) rotateY(-90deg);
  transform-style: preserve-3d;
}

.reveal.reveal-flip.revealed {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg);
}

/* Bounce Animation */
.reveal.reveal-bounce {
  opacity: 0;
  transform: translateY(50px) scale(0.8);
}

.reveal.reveal-bounce.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: bounceIn calc(var(--animation-duration) * 1.6) var(--ease-spring);
}

@keyframes bounceIn {
  0% {
    transform: translateY(50px) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
  70% {
    transform: translateY(5px) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Legacy support */
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Effect for Grids */
.benefits-grid .reveal,
.testi-preview .reveal,
.testimonials-vertical-grid .reveal {
  transition-delay: 0s;
}

.benefits-grid .reveal:nth-child(1),
.testi-preview .reveal:nth-child(1),
.testimonials-vertical-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.benefits-grid .reveal:nth-child(2),
.testi-preview .reveal:nth-child(2),
.testimonials-vertical-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.benefits-grid .reveal:nth-child(3),
.testi-preview .reveal:nth-child(3),
.testimonials-vertical-grid .reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.benefits-grid .reveal:nth-child(4),
.testi-preview .reveal:nth-child(4),
.testimonials-vertical-grid .reveal:nth-child(4) {
  transition-delay: 0.2s;
}

.benefits-grid .reveal:nth-child(5),
.testimonials-vertical-grid .reveal:nth-child(5) {
  transition-delay: 0.25s;
}

/* Steps Stagger */
.steps .reveal {
  transition-delay: 0s;
}

.steps .reveal:nth-child(1) { transition-delay: 0.1s; }
.steps .reveal:nth-child(2) { transition-delay: 0.2s; }
.steps .reveal:nth-child(3) { transition-delay: 0.3s; }
.steps .reveal:nth-child(4) { transition-delay: 0.4s; }

/* Parallax Elements */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.testi-grid .reveal {
  transition-delay: 0s;
}

.testi-grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.testi-grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.testi-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.steps .reveal {
  transition-delay: 0s;
}

.steps .reveal:nth-child(1) { transition-delay: 0.05s; }
.steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.steps .reveal:nth-child(3) { transition-delay: 0.15s; }
.steps .reveal:nth-child(4) { transition-delay: 0.2s; }
.steps .reveal:nth-child(5) { transition-delay: 0.25s; }

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

@keyframes revealFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Text glow effect */
.text-glow {
  text-shadow: 0 0 20px rgba(132, 169, 73, 0.4);
  transition: text-shadow 0.3s var(--ease-out);
}

/* Smooth text animations */
.hero-text h1,
.hero-text p {
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, color;
}

.hero-text:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* Panel content transitions */
.panel-copy,
.panel-visual {
  transition: opacity var(--transition-slow) var(--ease-out), transform var(--transition-slow) var(--ease-out);
}

.panel.active .panel-copy,
.panel.active .panel-visual {
  animation: slideIn var(--transition-slow) var(--ease-out) 0.1s both;
}

.panel.active .panel-visual {
  animation-delay: 0.2s;
}

.n8n-chat .chat-window-toggle,
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: rgba(113, 151, 53, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: #FFFFFF;
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(113, 151, 53, 0.4), 0 0 0 0 rgba(113, 151, 53, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, box-shadow, backdrop-filter;
  padding: 0;
  overflow: hidden;
}

.n8n-chat .chat-window-toggle:hover,
.n8n-chat .chat-window-toggle:focus,
.chat-fab:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(132, 169, 73, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  box-shadow: 0 8px 30px rgba(113, 151, 53, 0.6), 0 0 0 8px rgba(113, 151, 53, 0.1);
}

.n8n-chat .chat-window-toggle:active,
.chat-fab:active {
  transform: translateY(-2px) scale(1.02);
}

.n8n-chat .chat-window-toggle svg,
.chat-fab svg {
  width: 24px;
  height: 24px;
  stroke: #FFFFFF;
  transition: transform var(--transition-base) var(--ease-out);
}

.n8n-chat .chat-window-toggle:hover svg,
.chat-fab:hover svg {
  transform: scale(1.1);
}



@keyframes chatPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(113, 151, 53, 0.4), 0 0 0 0 rgba(113, 151, 53, 0.5);
  }
  50% {
    box-shadow: 0 4px 20px rgba(113, 151, 53, 0.6), 0 0 0 10px rgba(113, 151, 53, 0);
  }
}

.n8n-chat .chat-window-toggle::before,
.chat-fab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow) var(--ease-out), height var(--transition-slow) var(--ease-out);
}

.n8n-chat .chat-window-toggle:hover::before,
.chat-fab:hover::before {
  width: 100px;
  height: 100px;
}


.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  height: 600px;
  max-height: calc(100vh - 120px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(132, 169, 73, 0.2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity var(--transition-slow) var(--ease-out), transform var(--transition-slow) var(--ease-out);
  will-change: opacity, transform;
}

.chat-widget:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-widget-header {
  background: rgba(113, 151, 53, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(132, 169, 73, 0.3);
}

.chat-widget-header-content h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  font-family: 'InterVar', 'Inter', sans-serif;
}

.chat-widget-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  font-family: 'InterVar', 'Inter', sans-serif;
}

.chat-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #FFFFFF;
  transition: all var(--transition-base) var(--ease-out);
  flex-shrink: 0;
  padding: 0;
}

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

.chat-close svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

.chat-widget-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  position: relative;
}

.chat-widget-body::-webkit-scrollbar {
  width: 6px;
}

.chat-widget-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-widget-body::-webkit-scrollbar-thumb {
  background: rgba(132, 169, 73, 0.3);
  border-radius: 3px;
}

.chat-widget-body::-webkit-scrollbar-thumb:hover {
  background: rgba(132, 169, 73, 0.5);
}

#n8n-chat-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}


.chat-widget-input-container {
  padding: 16px 20px;
  border-top: 1px solid rgba(132, 169, 73, 0.2);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-widget-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bg);
  font-family: 'InterVar', 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-base) var(--ease-out);
}

.chat-widget-input::placeholder {
  color: rgba(3, 3, 3, 0.5);
}

.chat-widget-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(132, 169, 73, 0.1);
}

.chat-widget-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(113, 151, 53, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border: 1px solid rgba(132, 169, 73, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--animation-duration) var(--ease-out);
  flex-shrink: 0;
  padding: 0;
}

.chat-widget-send:hover {
  background: rgba(132, 169, 73, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(113, 151, 53, 0.4);
}

.chat-widget-send:active {
  transform: scale(1.05);
}

.chat-widget-send svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
}

@media (max-width: 900px) {
  .chat-fab {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .chat-fab svg {
    width: 22px;
    height: 22px;
  }

  .chat-widget {
    bottom: 90px;
    right: 20px;
    left: 20px;
    width: auto;
    height: calc(100vh - 110px);
    max-height: calc(100vh - 110px);
  }
}

/* n8n chat customization */
.n8n-chat .chat-window-wrapper .chat-window {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(132, 169, 73, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(132, 169, 73, 0.2);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  overflow: hidden;
}

.n8n-chat .chat-window-wrapper .chat-window .chat-layout {
  background: transparent;
}

.n8n-chat .chat-window-wrapper .chat-header {
  background: rgba(113, 151, 53, 0.95);
  border-bottom: 1px solid rgba(132, 169, 73, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.n8n-chat .chat-window-wrapper .chat-header h1{
  color: #ffffff;
}

.n8n-chat .chat-message.chat-message-from-bot {
  background: rgba(255, 255, 255, 0.95);
  color: #030303;
  border: 1px solid rgba(132, 169, 73, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.n8n-chat .chat-header {
  font-family: 'MomoTrustDisplay', sans-serif;
}
.n8n-chat .chat-message.chat-message-from-user {
  background: #719735;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(113, 151, 53, 0.25);
}

.n8n-chat .chat-message .chat-message-markdown {
  font-family: 'InterVar', 'Inter', sans-serif;
}

.chat-message-markdown p { 
  color: #030303;
}

.n8n-chat .chat-layout .chat-header {
  background: rgba(53, 53, 53, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.n8n-chat .chat-layout .chat-body {
  background: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.n8n-chat .chat-footer {
  display: none !important;
}

.n8n-chat .chat-layout .chat-footer {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.n8n-chat .chat-inputs textarea {
  border-radius: 24px;
  border: 1px solid rgba(132, 169, 73, 0.4);
  background: rgba(255, 255, 255, 0.95);
  color: #030303;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.n8n-chat .chat-inputs textarea::placeholder {
  color: rgba(3, 3, 3, 0.45);
}

.n8n-chat .chat-inputs textarea:focus {
  border-color: rgba(132, 169, 73, 0.8);
  box-shadow: 0 0 0 3px rgba(132, 169, 73, 0.15);
}

.n8n-chat .chat-input-send-button {
  background: #719735;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(113, 151, 53, 0.35);
}

.n8n-chat .chat-input-send-button:hover {
  background: #84a949;
  color: #ffffff;
}

.n8n-chat .chat-input-file-button {
  background: transparent;
  color: #719735;
}

.n8n-chat .chat-window-wrapper .chat-window-toggle {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(132, 169, 73, 0.4);
}

.n8n-chat .chat-window-wrapper .chat-window-toggle:hover,
.n8n-chat .chat-window-wrapper .chat-window-toggle:focus {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(132, 169, 73, 0.2);
}

.n8n-chat .chat-window-wrapper .chat-window-toggle svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.n8n-chat .chat-message-typing .chat-message-typing-circle {
  background: #719735;
}

.n8n-chat .chat-window-wrapper .chat-window .chat-footer button {
  font-family: 'InterVar', 'Inter', sans-serif;
}

/* Section Problema */
.section-problema {
  background: #030303;
}

.section-problema .section-head p strong {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ROI Calculator Section */
.section-roi {
  background: #030303;
  position: relative;
}

.section-roi .section-head h2 {
  color: var(--primary);
}

.section-roi .section-head p {
  color: var(--text);
  font-weight: 500;
}

.roi-calculator {
  max-width: 1400px;
  margin: 0 auto;
}

.roi-calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.roi-left-column,
.roi-right-column {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.roi-column-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 0 20px 0;
  font-family: 'MomoTrustDisplay';
  border-bottom: 1px solid rgba(132, 169, 73, 0.2);
  padding-bottom: 10px;
}

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

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi-input-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'MomoTrustDisplay', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.info-icon {
  font-size: 0.9rem;
  cursor: help;
  opacity: 0.7;
  transition: opacity var(--transition-base);
  position: relative;
  display: inline-block;
}

.info-icon:hover {
  opacity: 1;
}

/* Tooltip para info-icon */
.info-icon::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: normal;
  width: 280px;
  max-width: 90vw;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(132, 169, 73, 0.3);
  border: 1px solid rgba(132, 169, 73, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 1000;
  text-align: left;
}

.info-icon:hover::after,
.info-icon.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
  pointer-events: auto;
}

/* Flecha del tooltip */
.info-icon::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  border: 6px solid transparent;
  border-top-color: rgba(132, 169, 73, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: 1001;
}

.info-icon:hover::before,
.info-icon.active::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

.roi-input {
  padding: 14px 18px;
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 20, 0.65);
  color: var(--text);
  font-family: 'InterVar', 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-base) var(--ease-out);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
}

.roi-input::placeholder {
  color: var(--text-muted);
}

.roi-input:focus {
  border-color: var(--primary);
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  box-shadow: 0 0 0 2px rgba(132, 169, 73, 0.15);
}

/* ROI Sliders */
.roi-slider-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(132, 169, 73, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(132, 169, 73, 0.5);
  transition: all var(--transition-base);
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(132, 169, 73, 0.7);
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(132, 169, 73, 0.5);
  transition: all var(--transition-base);
}

.roi-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(132, 169, 73, 0.7);
}

.roi-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.roi-slider-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* Financial Impact */
.roi-financial-impact {
  margin-top: 24px;
}

.roi-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(132, 169, 73, 0.15);
}

.roi-metric:last-child {
  border-bottom: none;
}

.roi-metric label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.roi-metric-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'MomoTrustDisplay';
}

.roi-metric-highlight {
  color: var(--primary);
}

/* Performance Benchmarks */
.roi-benchmarks {
  margin-bottom: 24px;
}

.roi-benchmarks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.roi-industry-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.roi-industry-selector label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.roi-industry-select {
  padding: 8px 14px;
  border: 1px solid rgba(132, 169, 73, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  color: var(--text);
  font-family: 'InterVar', 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.roi-industry-select:hover {
  border-color: var(--primary);
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
}

.roi-industry-select:focus {
  border-color: var(--primary);
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  box-shadow: 0 0 0 2px rgba(132, 169, 73, 0.15);
}

.roi-benchmark-item {
  margin-bottom: 18px;
}

.roi-benchmark-item:last-child {
  margin-bottom: 0;
}

.roi-benchmark-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}

.roi-benchmark-comparison {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-benchmark-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(132, 169, 73, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(132, 169, 73, 0.15);
}

.roi-benchmark-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.roi-benchmark-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'MomoTrustDisplay';
}

.roi-benchmark-highlight {
  color: var(--primary);
}

.roi-cta {
  text-align: center;
  margin-top: 32px;
}

/* ROI Calculator Responsive */
@media (max-width: 1200px) {
  .roi-calculator-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .roi-benchmarks-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .roi-left-column,
  .roi-right-column {
    padding: 24px;
  }

  .roi-column-title {
    font-size: 1.3rem;
  }

  .roi-metric-value {
    font-size: 1.1rem;
  }

  .roi-benchmark-value {
    font-size: 1rem;
  }
}

/* Section Infraestructura */
.section-infraestructura {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(132, 169, 73, 0.02));
}

/* Guarantee Section */
.guarantee-details {
  margin: 32px 0;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.guarantee-details p {
  margin-bottom: 16px;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.guarantee-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
  transition: all var(--transition-base) var(--ease-out);
}

.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.guarantee-list li:hover {
  transform: translateX(4px);
  color: var(--text);
}

/* Footer Updates */
.footer-cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-family: 'MomoTrustDisplay', sans-serif;
}

.footer-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-button-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.site-footer .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 8px;
}

.site-footer .right p {
  margin: 0;
}

/* Responsive adjustments for ROI Calculator */
@media (max-width: 900px) {
  .roi-calculator {
    max-width: 100%;
  }

  .roi-calculator-container {
    flex-direction: column;
    gap: 24px;
  }

  .roi-left-column,
  .roi-right-column {
    width: 100%;
  }
  
  .formula-text {
    font-size: 0.95rem;
    padding: 12px;
  }

  .testi-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testi-preview-card {
    padding: 20px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  
  .site-footer .right {
    align-items: flex-start;
    text-align: left;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Ajustes del modal en pantallas pequeñas */
  .modal-nav {
    padding: 24px;
  }

  .modal-nav a {
    padding: 16px 24px;
    font-size: 1.1rem;
    min-width: 160px;
  }

  .modal-nav-cta {
    padding: 16px 24px;
    font-size: 1.1rem;
    min-width: 160px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Testimonials Preview Section (index.html) */
.testi-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.testi-preview-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, border-color, box-shadow;
}

.testi-preview-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(132, 169, 73, 0.15);
}

.testi-preview-card .avatar {
  margin-bottom: 16px;
}

.testi-preview-image-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 16px;
}

.testi-preview-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base) var(--ease-out);
  display: block;
}

.testi-preview-image-link:hover .testi-preview-image {
  transform: scale(1.05);
}

.testi-preview-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.testi-preview-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}

.testi-preview-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'MomoTrustDisplay';
}

.testi-cta {
  text-align: center;
  margin-top: 32px;
}

/* Testimonials Page - Vertical Layout */
.section-testimonials-hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.section-testimonials-grid {
  padding-top: 0;
  padding-bottom: 120px;
}

.testimonials-vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-vertical-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition-base) var(--ease-out);
  will-change: transform, border-color, box-shadow;
}

.testimonial-vertical-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(132, 169, 73, 0.25);
}

.testimonial-photo-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.testimonial-photo {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}

.testimonial-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow) var(--ease-out);
  display: block;
}

.testimonial-vertical-card:hover .testimonial-image {
  transform: scale(1.03);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-1 {
  background: linear-gradient(135deg, #406701 0%, #638927 50%, #719735 100%);
}

.photo-2 {
  background: linear-gradient(135deg, #638927 0%, #719735 50%, #84a949 100%);
}

.photo-3 {
  background: linear-gradient(135deg, #537912 0%, #406701 50%, #638927 100%);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.9) 0%, transparent 100%);
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

.photo-label {
  font-family: 'MomoTrustDisplay';
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-vertical-card:hover .photo-placeholder {
  transform: scale(1.05);
  transition: transform var(--transition-slow) var(--ease-out);
}

.testimonial-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.testimonial-content h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text);
}

.testimonial-preview {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'MomoTrustDisplay';
  margin: 0;
}

.testimonial-cta {
  font-size: 0.95rem;
  color: #FFFFFF !important;
  font-family: 'MomoTrustDisplay';
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(113, 151, 53, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border-radius: 8px;
  border: 1px solid rgba(132, 169, 73, 0.2);
  border-bottom: none;
  transition: all var(--animation-duration) var(--ease-out);
  text-decoration: none !important;
  outline: none;
}

.testimonial-vertical-card:hover .testimonial-cta {
  transform: translateX(4px);
  color: #FFFFFF !important;
  background: rgba(113, 151, 53, 0.65);
  backdrop-filter: blur(3.3px) saturate(50%);
  -webkit-backdrop-filter: blur(3.3px) saturate(50%);
  border-color: rgba(132, 169, 73, 0.3);
}

/* Testimonials Detail Page - Innovative Design */
.section-detail-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.detail-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.detail-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.detail-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.detail-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
  animation-delay: 5s;
}

.detail-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-hover) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.detail-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.detail-hero-badge {
  display: inline-block;
  background: rgba(132, 169, 73, 0.15);
  border: 1px solid rgba(132, 169, 73, 0.3);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--primary);
  font-family: 'MomoTrustDisplay';
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Detail Section - Side by Side Layout */
.section-detail-mosaic {
  padding-top: 80px;
  padding-bottom: 120px;
}

.testimonial-detail-section {
  margin-bottom: 120px;
  scroll-margin-top: 100px;
}

.testimonial-detail-section:last-child {
  margin-bottom: 0;
}

.testimonial-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 60px;
  transition: all var(--transition-base) var(--ease-out);
}

.testimonial-detail-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(132, 169, 73, 0.15);
}

.testimonial-detail-image {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.testimonial-detail-photo {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow) var(--ease-out);
  display: block;
}

.testimonial-detail-wrapper:hover .testimonial-detail-photo {
  transform: scale(1.03);
}

.testimonial-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.testimonial-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(132, 169, 73, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-detail-content h3 {
  font-size: 2rem;
  margin: 0;
  color: var(--text);
  font-family: 'MomoTrustDisplay';
}

.testimonial-detail-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-detail-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.testimonial-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: 'MomoTrustDisplay';
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-stat-label {
  font-size: 1rem;
  color: var(--text);
  font-family: 'MomoTrustDisplay';
}

.testimonial-detail-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
}

.testimonial-detail-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  color: var(--text);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testimonial-detail-name {
  font-size: 1.2rem;
  color: var(--text);
  margin: 0;
  font-family: 'MomoTrustDisplay';
}

.testimonial-detail-title {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 4px 0 0 0;
}

/* Detail CTA Section */
.section-detail-cta {
  padding-top: 80px;
  padding-bottom: 120px;
}

.detail-cta-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.detail-cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text);
}

.detail-cta-box p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Responsive Design for Testimonials Pages */
@media (max-width: 1200px) {
  .testimonials-vertical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .testimonial-photo {
    height: 450px;
  }

  .testimonial-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .testimonial-detail-image {
    height: 500px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .testi-preview {
    grid-template-columns: 1fr;
  }

  .testimonials-vertical-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .testimonial-photo {
    height: 400px;
  }

  .testimonial-detail-section {
    margin-bottom: 80px;
  }

  .testimonial-detail-wrapper {
    padding: 32px 24px;
    gap: 32px;
  }

  .testimonial-detail-image {
    height: 400px;
  }

  .testimonial-detail-content h3 {
    font-size: 1.6rem;
  }

  .testimonial-detail-quote {
    font-size: 1.1rem;
  }

  .testimonial-stat-number {
    font-size: 2.5rem;
  }

  .testimonial-detail-stats {
    gap: 24px;
  }

  .detail-hero-title {
    font-size: 2rem;
  }

  .detail-hero-subtitle {
    font-size: 1.1rem;
  }

  .detail-cta-box {
    padding: 40px 24px;
  }

  .detail-cta-box h2 {
    font-size: 2rem;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZATION
   ============================================ */

/* Breakpoint: 1200px - Tablets grandes */
@media (max-width: 1200px) {
  .container {
    width: min(1000px, 92%);
  }

  /* Mostrar menú hamburguesa */
  .menu-toggle {
    display: flex;
  }
  
  /* Ocultar navegación de escritorio en pantallas medianas */
  .nav-desktop {
    display: none;
  }

  .roi-calculator-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-vertical-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-photo {
    height: 450px;
  }

  .testimonial-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .testimonial-detail-image {
    height: 500px;
    order: -1;
  }
}

/* Breakpoint: 900px - Tablets y móviles grandes */
@media (max-width: 900px) {
  .container {
    width: min(100%, 95%);
  }

  /* Header */
  .header-inner {
    padding: 12px 24px;
  }

  .menu-toggle {
    display: flex;
  }



  /* Hero Section */
  .section-hero {
    padding: 80px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text .sub {
    margin-inline: auto;
    font-size: 1.1rem;
  }

  .cta-group {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 400px;
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  /* Mock */
  .mock {
    max-width: 100%;
  }

  .mock-body {
    min-height: 400px;
    max-height: 500px;
    padding: 20px;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-grid .benefit-card:nth-child(1),
  .benefits-grid .benefit-card:nth-child(2),
  .benefits-grid .benefit-card:nth-child(3),
  .benefits-grid .benefit-card:nth-child(4),
  .benefits-grid .benefit-card:nth-child(5) {
    grid-column: span 1;
  }

  .benefit-card {
    padding: 24px;
  }

  /* ROI Calculator */
  .roi-calculator {
    max-width: 100%;
  }

  .roi-calculator-container {
    flex-direction: column;
    gap: 24px;
  }

  .roi-left-column,
  .roi-right-column {
    width: 100%;
  }

  .roi-benchmarks-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Testimonials Preview */
  .testi-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testi-preview-card {
    padding: 20px;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Panel Grid */
  .panel-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer .right {
    align-items: flex-start;
    text-align: left;
    margin-top: 0;
  }

  /* Chat Widget */
  .chat-fab {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .chat-fab svg {
    width: 22px;
    height: 22px;
  }

  .chat-widget {
    bottom: 90px;
    right: 20px;
    left: 20px;
    width: auto;
    height: calc(100vh - 110px);
    max-height: calc(100vh - 110px);
  }
}

/* Breakpoint: 768px - Tablets pequeñas y móviles */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  p {
    font-size: 1rem;
  }

  /* Header */
  .header-inner {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo-img {
    height: 3.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }


  /* Hero Section */
  .section-hero {
    padding: 60px 0 40px;
  }

  .hero-text .sub {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .cta-group {
    gap: 10px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Mock */
  .mock-body {
    min-height: 350px;
    max-height: 450px;
    padding: 16px;
  }

  .mock-chat {
    gap: 8px;
    padding-right: 16px;
  }

  .mock-chat-time {
    font-size: 0.7rem;
    min-width: 50px;
  }

  .mock-chat-indicator {
    width: 10px;
    height: 10px;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-head p {
    font-size: 0.95rem;
  }

  /* Cards */
  .benefit-card {
    padding: 20px;
  }

  .benefit-card .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 16px;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  /* ROI Calculator */
  .roi-left-column,
  .roi-right-column {
    padding: 20px;
  }

  .roi-column-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .roi-input-group {
    gap: 6px;
  }

  .roi-input-group label {
    font-size: 0.9rem;
  }

  .roi-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .roi-metric-value {
    font-size: 1rem;
  }

  .roi-benchmark-value {
    font-size: 0.95rem;
  }

  /* Testimonials */
  .testi-preview {
    grid-template-columns: 1fr;
  }

  .testimonials-vertical-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-photo {
    height: 400px;
  }

  .testimonial-detail-section {
    margin-bottom: 80px;
  }

  .testimonial-detail-wrapper {
    padding: 32px 24px;
    gap: 32px;
  }

  .testimonial-detail-image {
    height: 400px;
  }

  .testimonial-detail-content h3 {
    font-size: 1.6rem;
  }

  .testimonial-detail-quote {
    font-size: 1.1rem;
  }

  .testimonial-stat-number {
    font-size: 2.5rem;
  }

  .testimonial-detail-stats {
    gap: 24px;
  }

  /* Steps */
  .step {
    padding: 20px;
  }

  .step .num {
    font-size: 2.5rem;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0;
    margin-top: 60px;
  }

  .footer-cta-text {
    font-size: 1.1rem;
  }

  .footer-subtext {
    font-size: 0.85rem;
  }

  .footer-cta {
    font-size: 1rem;
    padding: 10px 20px;
  }

  /* Detail Hero */
  .detail-hero-title {
    font-size: 2rem;
  }

  .detail-hero-subtitle {
    font-size: 1.1rem;
  }

  .detail-cta-box {
    padding: 40px 24px;
  }

  .detail-cta-box h2 {
    font-size: 2rem;
  }
}

/* Breakpoint: 600px - Móviles medianos */
@media (max-width: 600px) {
  /* Container */
  .container {
    width: min(100%, 92%);
    padding: 0 4%;
  }

  /* Typography */
  h1 {
    font-size: clamp(1.75rem, 7vw, 3rem);
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  h3 {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Header */
  .header-inner {
    padding: 8px 12px;
    border-radius: 20px;
  }

  .logo-img {
    height: 3rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  /* Hero Section */
  .section-hero {
    padding: 50px 0 30px;
  }

  .hero-text .sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  /* Mock */
  .mock-body {
    min-height: 300px;
    max-height: 400px;
    padding: 12px;
  }

  .mock-chat {
    margin-bottom: 16px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  /* Cards */
  .benefit-card {
    padding: 18px;
  }

  .benefit-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  /* ROI Calculator */
  .roi-left-column,
  .roi-right-column {
    padding: 18px;
  }

  .roi-column-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .roi-input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .roi-metric {
    padding: 10px 0;
  }

  .roi-metric label {
    font-size: 0.85rem;
  }

  .roi-metric-value {
    font-size: 0.95rem;
  }

  /* Testimonials */
  .testimonial-photo {
    height: 350px;
  }

  .testimonial-detail-image {
    height: 350px;
  }

  .testimonial-detail-content h3 {
    font-size: 1.4rem;
  }

  .testimonial-detail-quote {
    font-size: 1rem;
  }

  .testimonial-stat-number {
    font-size: 2rem;
  }

  /* Steps */
  .step {
    padding: 16px;
  }

  .step .num {
    font-size: 2rem;
    top: 8px;
    right: 16px;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .step p {
    font-size: 0.9rem;
  }
}

/* Breakpoint: 480px - Móviles pequeños */
@media (max-width: 480px) {
  /* Container */
  .container {
    width: min(100%, 90%);
    padding: 0 5%;
  }

  /* Typography */
  h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.15;
  }

  h2 {
    font-size: clamp(1.25rem, 7vw, 2rem);
    margin-bottom: 0.5rem;
  }

  h3 {
    font-size: clamp(1rem, 6vw, 1.3rem);
  }

  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Header */
  .header-inner {
    padding: 6px 10px;
    border-radius: 16px;
    margin-top: 10px;
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .logo-img {
    height: 2.5rem;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: 28px;
    height: 28px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
  }

  /* Ajustes del modal en móviles pequeños */
  .modal-menu-content {
    padding: 60px 16px 16px;
  }

  .modal-nav {
    padding: 20px;
  }

  .modal-nav a {
    padding: 14px 24px;
    font-size: 1rem;
    min-width: 150px;
  }

  .modal-nav-cta {
    padding: 14px 24px;
    font-size: 1rem;
    min-width: 150px;
  }

  /* Hero Section */
  .section-hero {
    padding: 40px 0 20px;
  }

  .hero-text .sub {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .cta-group {
    gap: 8px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    border-radius: 20px;
  }

  .trust {
    font-size: 0.75rem;
    margin-top: 24px;
  }

  /* Mock */
  .mock {
    border-radius: 16px;
  }

  .mock-header {
    padding: 12px;
  }

  .mock-header span {
    width: 10px;
    height: 10px;
  }

  .mock-body {
    min-height: 250px;
    max-height: 350px;
    padding: 10px;
  }

  .mock-chat {
    gap: 6px;
    margin-bottom: 12px;
    padding-right: 12px;
  }

  .mock-chat-time {
    font-size: 0.65rem;
    min-width: 45px;
  }

  .mock-chat-messages {
    gap: 6px;
  }

  .code-line {
    height: 8px;
  }

  .mock-chat-indicator {
    width: 8px;
    height: 8px;
  }

  .mock-separator {
    margin: 12px 0;
  }

  /* Sections */
  .section {
    padding: 30px 0;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head h2 {
    font-size: clamp(1.2rem, 8vw, 1.75rem);
  }

  .section-head p {
    font-size: 0.85rem;
  }

  /* Cards */
  .benefit-card {
    padding: 16px;
    border-radius: 16px;
  }

  .benefit-card .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

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

  .benefit-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }

  /* ROI Calculator */
  .roi-left-column,
  .roi-right-column {
    padding: 16px;
    border-radius: 16px;
  }

  .roi-column-title {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .roi-form {
    gap: 16px;
  }

  .roi-input-group {
    gap: 4px;
  }

  .roi-input-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .roi-input {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .roi-slider {
    height: 6px;
  }

  .roi-slider::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
  }

  .roi-slider-labels {
    font-size: 0.75rem;
  }

  .roi-slider-value {
    font-size: 0.9rem;
  }

  .roi-metric {
    padding: 8px 0;
  }

  .roi-metric label {
    font-size: 0.8rem;
  }

  .roi-metric-value {
    font-size: 0.9rem;
  }

  .roi-benchmark-item {
    margin-bottom: 14px;
  }

  .roi-benchmark-item label {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .roi-benchmark-row {
    padding: 8px 12px;
  }

  .roi-benchmark-label {
    font-size: 0.8rem;
  }

  .roi-benchmark-value {
    font-size: 0.9rem;
  }

  .roi-industry-selector {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .roi-industry-select {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testi-preview-card {
    padding: 16px;
  }

  .testi-preview-image {
    max-height: 250px;
  }

  .testi-preview-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .testi-preview-text {
    font-size: 0.85rem;
  }

  .testi-preview-author {
    font-size: 0.8rem;
  }

  .testimonials-vertical-grid {
    gap: 20px;
  }

  .testimonial-photo {
    height: 300px;
  }

  .testimonial-content {
    padding: 24px;
  }

  .testimonial-content h3 {
    font-size: 1.2rem;
  }

  .testimonial-preview {
    font-size: 0.9rem;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .testimonial-cta {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .testimonial-detail-wrapper {
    padding: 24px 16px;
    gap: 24px;
    border-radius: 16px;
  }

  .testimonial-detail-image {
    height: 300px;
  }

  .testimonial-detail-content {
    gap: 16px;
  }

  .testimonial-detail-header {
    gap: 12px;
    margin-bottom: 4px;
  }

  .testimonial-detail-icon {
    width: 48px;
    height: 48px;
  }

  .testimonial-detail-content h3 {
    font-size: 1.2rem;
  }

  .testimonial-detail-quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-detail-stats {
    gap: 16px;
    margin: 12px 0;
  }

  .testimonial-stat-item {
    gap: 4px;
  }

  .testimonial-stat-number {
    font-size: 1.75rem;
  }

  .testimonial-stat-label {
    font-size: 0.85rem;
  }

  .testimonial-detail-author {
    padding-top: 16px;
    gap: 12px;
  }

  .testimonial-detail-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .testimonial-detail-name {
    font-size: 1rem;
  }

  .testimonial-detail-title {
    font-size: 0.85rem;
  }

  /* Steps */
  .step {
    padding: 14px;
    border-radius: 12px;
  }

  .step .num {
    font-size: 1.75rem;
    top: 6px;
    right: 12px;
  }

  .step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .step p {
    font-size: 0.85rem;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0;
    margin-top: 40px;
  }

  .footer-inner {
    gap: 24px;
  }

  .site-footer .left .brand .logo-img {
    height: 24px;
  }

  .site-footer .left .brand .logo-text {
    font-size: 1rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-cta-text {
    font-size: 1rem;
  }

  .footer-subtext {
    font-size: 0.8rem;
  }

  .footer-cta {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .footer-button-subtext {
    font-size: 0.75rem;
  }

  /* Detail Hero */
  .section-detail-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .detail-hero-badge {
    padding: 6px 16px;
    font-size: 0.75rem;
    margin-bottom: 16px;
  }

  .detail-hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 16px;
  }

  .detail-hero-subtitle {
    font-size: 1rem;
  }

  .detail-cta-box {
    padding: 32px 20px;
  }

  .detail-cta-box h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .detail-cta-box p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .detail-cta-box .cta-group {
    flex-direction: column;
  }

  .detail-cta-box .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Chat Widget */
  .chat-fab {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .chat-fab svg {
    width: 20px;
    height: 20px;
  }

  .chat-widget {
    bottom: 70px;
    right: 16px;
    left: 16px;
    height: calc(100vh - 86px);
    max-height: calc(100vh - 86px);
  }

  /* Orbs - Reducir en móviles pequeños para mejor rendimiento */
  .orb {
    filter: blur(60px);
    opacity: 0.2;
  }

  .orb-1,
  .orb-2,
  .orb-3,
  .orb-4 {
    width: 300px;
    height: 300px;
  }

  .detail-orb {
    filter: blur(60px);
    opacity: 0.2;
  }

  .detail-orb-1,
  .detail-orb-2,
  .detail-orb-3 {
    width: 250px;
    height: 250px;
  }
}
