/* ========================================
   BONY - LANDING PAGE STYLES
   Futuristic AI & Automation Theme
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #1bd472;
    --primary-dark: #15a85a;
    --primary-light: #2ef08a;
    --primary-glow: rgba(27, 212, 114, 0.3);
    --primary-glow-strong: rgba(27, 212, 114, 0.5);
    
    /* Background Colors */
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-gradient: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #111111 100%);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #a0a0a0;
    --text-dark: #666666;
    
    /* Other Colors */
    --error: #ff4757;
    --warning: #ffa502;
    --success: #1bd472;
    
    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 70px 0;
    --container-padding: 0 24px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-glow-strong: 0 0 50px var(--primary-glow-strong);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(27, 212, 114, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 212, 114, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(27, 212, 114, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: glowMove 20s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

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

.highlight-text {
    color: var(--primary);
    position: relative;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(27, 212, 114, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-cta:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 14px;
}

.badge-separator {
    opacity: 0.5;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--bg-dark);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-primary .btn-icon {
    font-size: 18px;
}

.btn-primary .btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(27, 212, 114, 0.1);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ai-brain {
    position: relative;
    width: 300px;
    height: 300px;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-glow-strong);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 30px var(--primary-glow); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 60px var(--primary-glow-strong); }
}

.brain-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(27, 212, 114, 0.3);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.ring-1 {
    width: 150px;
    height: 150px;
    border-style: dashed;
}

.ring-2 {
    width: 220px;
    height: 220px;
    animation-direction: reverse;
    animation-duration: 30s;
}

.ring-3 {
    width: 290px;
    height: 290px;
    border-style: dotted;
    animation-duration: 40s;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.brain-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    font-size: 24px;
    animation: nodeFloat 4s ease-in-out infinite;
}

.n1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.n2 { top: 25%; right: 0; animation-delay: 0.5s; }
.n3 { bottom: 25%; right: 0; animation-delay: 1s; }
.n4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.n5 { bottom: 25%; left: 0; animation-delay: 2s; }
.n6 { top: 25%; left: 0; animation-delay: 2.5s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   LOGOS SECTION
   ======================================== */
.logos-section {
    padding: 20px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.logos-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-slider {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 30px;
    animation: slideLogos 25s linear infinite;
}

.logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: var(--transition-normal);
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes slideLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */
.problems-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-normal);
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(27, 212, 114, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.problems-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.problems-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.2);
    border-radius: var(--radius-lg);
}

.result-icon {
    font-size: 32px;
}

.problems-result p {
    font-size: 18px;
    color: var(--text-light);
}

.problems-result .highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-darker), transparent);
    pointer-events: none;
}

.about-badges {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.about-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.badge-number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.badge-text {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 20px;
}

.about-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text.emphasis {
    color: var(--text-white);
    font-weight: 600;
    font-size: 18px;
}

.highlight-box {
    padding: 20px;
    background: rgba(27, 212, 114, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-white);
}

.about-quote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 212, 114, 0.2);
}

.quote-icon {
    font-size: 32px;
}

.about-quote p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Clients Slider */
.clients-slider {
    overflow: hidden;
    padding: 30px 0;
    background: transparent;
}

.clients-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-track {
    display: flex;
    gap: 20px;
    animation: slideLogos 35s linear infinite;
}

.clients-track img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: var(--transition-normal);
    transition: var(--transition-normal);
    cursor: pointer;
}

.clients-track img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO SERVICE - SERVICIO PRINCIPAL DESTACADO
   ======================================== */
.hero-service-wrapper {
    margin-bottom: 40px;
}

.hero-service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(27, 212, 114, 0.15) 0%, rgba(27, 212, 114, 0.05) 30%, var(--bg-card) 100%);
    border: 2px solid rgba(27, 212, 114, 0.5);
    border-radius: var(--radius-xl);
    padding: 48px;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(27, 212, 114, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-service-card:hover {
    border-color: rgba(27, 212, 114, 0.7);
    box-shadow: 
        0 0 80px rgba(27, 212, 114, 0.3),
        0 25px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Fondo animado */
.hero-service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.bg-gradient-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 212, 114, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.bg-gradient-orb.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(27, 212, 114, 0.3) 0%, transparent 70%);
    bottom: -50px;
    right: 20%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.bg-gradient-orb.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(46, 240, 138, 0.3) 0%, transparent 70%);
    top: 30%;
    right: -50px;
    animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Contenido del servicio hero */
.hero-service-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-star {
    animation: starSpin 4s linear infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(27, 212, 114, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(27, 212, 114, 0.3); }
}

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

.hero-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hero-service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

.hero-service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 2;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.1); }
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(27, 212, 114, 0.3);
    border-radius: 50%;
}

.icon-ring.ring-a {
    width: 70px;
    height: 70px;
    animation: ringPulse 2s ease-in-out infinite;
}

.icon-ring.ring-b {
    width: 90px;
    height: 90px;
    border-style: dashed;
    animation: ringRotate 10s linear infinite;
}

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

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-service-number {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(27, 212, 114, 0.3) 0%, rgba(27, 212, 114, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-service-title {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-service-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-service-subtitle strong {
    color: var(--text-white);
}

.hero-service-features {
    list-style: none;
}

.hero-service-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
    transition: var(--transition-normal);
}

.hero-service-features li:hover {
    background: rgba(27, 212, 114, 0.1);
    transform: translateX(5px);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Visualización de IA */
.hero-service-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ai-results-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ai-brain-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.brain-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: brainPulse 2s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

.brain-icon {
    font-size: 40px;
    position: relative;
    z-index: 2;
    animation: brainFloat 3s ease-in-out infinite;
}

@keyframes brainFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.brain-orbit {
    position: absolute;
    border: 2px dashed rgba(27, 212, 114, 0.3);
    border-radius: 50%;
}

.brain-orbit.orbit-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 8s linear infinite;
}

.brain-orbit.orbit-2 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 12s linear infinite reverse;
}

.brain-orbit.orbit-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 16s linear infinite;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-node {
    position: absolute;
    font-size: 20px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.brain-orbit.orbit-2 .orbit-node {
    top: auto;
    bottom: -10px;
}

.brain-orbit.orbit-3 .orbit-node {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

/* Métricas de resultados */
.ai-results-metrics {
    display: flex;
    gap: 16px;
    width: 100%;
}

.metric-card {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    background: rgba(27, 212, 114, 0.08);
    border: 1px solid rgba(27, 212, 114, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.metric-card:hover {
    background: rgba(27, 212, 114, 0.15);
    border-color: rgba(27, 212, 114, 0.4);
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.metric-value {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* Caja de resultado */
.hero-result-box {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, rgba(27, 212, 114, 0.15) 0%, rgba(27, 212, 114, 0.05) 100%);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.result-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 212, 114, 0.1) 0%, transparent 50%);
    animation: resultGlow 5s ease-in-out infinite;
}

@keyframes resultGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.result-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hero-result-box p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-result-box strong {
    color: var(--text-white);
}

.highlight-green {
    color: var(--primary);
    font-weight: 600;
}

/* CTA del servicio hero */
.hero-service-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(27, 212, 114, 0.3);
}

.hero-service-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 212, 114, 0.4);
}

.hero-service-cta svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

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

/* Título de otros servicios */
.other-services-title {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(27, 212, 114, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    border-color: rgba(27, 212, 114, 0.5);
    background: linear-gradient(135deg, rgba(27, 212, 114, 0.1) 0%, var(--bg-card) 100%);
}

.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.service-icon {
    font-size: 40px;
    position: relative;
    z-index: 1;
}

.service-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
}

.service-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-features .check {
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.service-result {
    padding: 16px;
    background: rgba(27, 212, 114, 0.1);
    border-radius: var(--radius-md);
    margin-top: auto;
}

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

.service-result p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.service-badge-highlight {
    padding: 16px;
    background: rgba(27, 212, 114, 0.1);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-top: auto;
}

.service-badge-highlight span {
    color: var(--primary);
    font-weight: 600;
}

/* Services CTA */
.services-cta {
    display: flex;
    justify-content: center;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 48px;
    background: var(--bg-card);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-xl);
    max-width: 900px;
}

.cta-icon {
    font-size: 48px;
}

.cta-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 50px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

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

.stat-card {
    text-align: center;
    padding: 24px 16px;
}

.stat-card .stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-card .stat-value {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card .stat-desc {
    font-size: 13px;
    color: var(--text-gray);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(27, 212, 114, 0.3);
    transform: translateY(-5px);
}

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

.testimonial-icon {
    font-size: 32px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-meta .company {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.testimonial-meta .industry {
    font-size: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-quote strong {
    color: var(--text-white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: var(--text-dark);
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(27, 212, 114, 0.1);
    border-radius: var(--radius-md);
}

.testimonial-result .result-number {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-result .result-text {
    font-size: 13px;
    color: var(--text-gray);
}

/* ========================================
   DIFFERENTIATOR SECTION
   ======================================== */
.differentiator-section {
    padding: var(--section-padding);
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.comparison-column {
    flex: 1;
    max-width: 400px;
    padding: 40px;
    border-radius: var(--radius-xl);
}

.comparison-column.others {
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.comparison-column.bony {
    background: rgba(27, 212, 114, 0.05);
    border: 1px solid rgba(27, 212, 114, 0.3);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.column-icon {
    font-size: 28px;
}

.column-header h3 {
    font-size: 18px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

.comparison-column.others .comparison-list li {
    color: var(--text-dark);
}

.comparison-column.bony .comparison-list li {
    color: var(--text-light);
}

.comparison-vs {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.differentiator-result {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.result-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-full);
}

.result-box .result-icon {
    font-size: 28px;
}

.result-box p {
    font-size: 18px;
    color: var(--text-light);
}

.value-proposition {
    text-align: center;
}

.vp-title {
    font-size: 28px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(27, 212, 114, 0.2));
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 36px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content .step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.process-highlight {
    display: flex;
    justify-content: center;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-xl);
}

.highlight-icon {
    font-size: 32px;
}

.highlight-box p {
    font-size: 18px;
    color: var(--text-light);
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.guarantee-section {
    padding: 70px 0 50px;
    background: var(--bg-darker);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

/* Gráfico Comparativo */
.process-comparison {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.comparison-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

/* Flujo de Proceso */
.process-flow {
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.process-flow.inefficient {
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.process-flow.efficient {
    background: rgba(27, 212, 114, 0.05);
    border: 1px solid rgba(27, 212, 114, 0.3);
}

.process-flow:hover {
    transform: translateX(5px);
}

.flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.flow-badge {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flow-badge.bad {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.flow-badge.good {
    background: rgba(27, 212, 114, 0.2);
    color: var(--primary);
}

.flow-time {
    font-size: 12px;
    color: var(--text-gray);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    min-width: 70px;
    text-align: center;
    transition: var(--transition-normal);
}

.flow-step.chaos {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.flow-step.chaos.lost {
    background: rgba(255, 71, 87, 0.2);
}

.flow-step.optimized {
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.2);
}

.flow-step.optimized.success {
    background: rgba(27, 212, 114, 0.2);
    box-shadow: 0 0 20px rgba(27, 212, 114, 0.2);
}

.step-icon-flow {
    font-size: 24px;
}

.flow-step span:not(.step-icon-flow) {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.2;
}

/* Conectores */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    max-width: 60px;
}

.connector-line {
    width: 100%;
    height: 2px;
    position: relative;
}

.flow-connector.slow .connector-line {
    background: linear-gradient(90deg, rgba(255, 71, 87, 0.5), rgba(255, 71, 87, 0.2));
}

.flow-connector.fast .connector-line {
    background: linear-gradient(90deg, var(--primary), rgba(27, 212, 114, 0.5));
}

.connector-line.animated {
    overflow: hidden;
}

.connector-line.animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    animation: flowAnimation 1.5s ease-in-out infinite;
}

@keyframes flowAnimation {
    0% { left: -100%; }
    100% { left: 100%; }
}

.delay-tag, .instant-tag {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.delay-tag {
    background: rgba(255, 71, 87, 0.2);
    color: #ff6b7a;
}

.instant-tag {
    background: rgba(27, 212, 114, 0.2);
    color: var(--primary);
}

/* Resultado del flujo */
.flow-result {
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
}

.flow-result.bad {
    background: rgba(255, 71, 87, 0.1);
    color: #ff6b7a;
}

.flow-result.good {
    background: rgba(27, 212, 114, 0.15);
    color: var(--primary);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(27, 212, 114, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(27, 212, 114, 0.1); }
}

/* Flecha de Transformación */
.transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    margin: 8px 0;
}

.transform-arrow .arrow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    max-width: 80px;
}

.transform-arrow .arrow-icon {
    font-size: 28px;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.transform-arrow span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tarjeta de Garantía */
.guarantee-card {
    position: relative;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(27, 212, 114, 0.15) 0%, var(--bg-card) 100%);
    border: 2px solid rgba(27, 212, 114, 0.4);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.guarantee-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 212, 114, 0.15) 0%, transparent 50%);
    animation: guaranteeGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes guaranteeGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.guarantee-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.guarantee-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.guarantee-title {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.guarantee-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(27, 212, 114, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.guarantee-badge span {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.guarantee-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.guarantee-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.guarantee-list li:hover {
    background: rgba(27, 212, 114, 0.1);
    transform: translateX(5px);
}

.guarantee-check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.guarantee-cta {
    width: 100%;
    justify-content: center;
}

/* Indicador de Scroll */
.scroll-teaser {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.scroll-teaser p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.scroll-bounce {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-bounce svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Responsive para Guarantee Section */
@media (max-width: 1024px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-comparison {
        order: 2;
    }
    
    .guarantee-card {
        order: 1;
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 60px 0 40px;
    }
    
    .process-comparison {
        padding: 20px;
    }
    
    .comparison-title {
        font-size: 20px;
    }
    
    .flow-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .flow-step {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .step-icon-flow {
        font-size: 20px;
    }
    
    .flow-connector {
        display: none;
    }
    
    .guarantee-card {
        padding: 32px 24px;
    }
    
    .guarantee-icon {
        font-size: 56px;
    }
    
    .guarantee-title {
        font-size: 24px;
    }
    
    .scroll-teaser p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .flow-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .flow-step span:not(.step-icon-flow) {
        font-size: 10px;
    }
    
    .guarantee-list li {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(27, 212, 114, 0.05) 100%);
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(27, 212, 114, 0.1);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.benefit-icon {
    font-size: 20px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-dark);
}

/* CTA Visual */
.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(27, 212, 114, 0.3);
}

.graphic-circle.c1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: graphicPulse 3s ease-in-out infinite;
}

.graphic-circle.c2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: rgba(27, 212, 114, 0.4);
    animation: graphicPulse 3s ease-in-out infinite 0.5s;
}

.graphic-circle.c3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: rgba(27, 212, 114, 0.5);
    animation: graphicPulse 3s ease-in-out infinite 1s;
}

@keyframes graphicPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.graphic-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0 30px;
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-size: 24px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition-normal);
}

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

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

.footer-links h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-contact h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.contact-link {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-dark);
}

.footer-quote {
    font-style: italic;
    color: var(--text-gray);
}

/* ========================================
   CTA AGENDA SECTION
   ======================================== */
.cta-agenda-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(27, 212, 114, 0.03) 50%, var(--bg-darker) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Glow de fondo sutil */
.cta-agenda-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 212, 114, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Card con borde sutil */
.cta-agenda-card {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(27, 212, 114, 0.5), rgba(27, 212, 114, 0.2), rgba(27, 212, 114, 0.5));
    background-size: 200% 200%;
    animation: subtleBorder 6s ease infinite;
    box-shadow: 
        0 0 30px rgba(27, 212, 114, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.cta-agenda-content {
    text-align: center;
    padding: 50px 40px;
    background: var(--bg-darker);
    border-radius: 18px;
    position: relative;
    z-index: 1;
}

.cta-agenda-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-agenda-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.cta-agenda-subtitle .highlight-text {
    color: var(--primary);
    font-weight: 500;
}

.cta-agenda-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-agenda {
    padding: 18px 40px;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(27, 212, 114, 0.3);
    transition: all 0.3s ease;
}

.btn-agenda:hover {
    box-shadow: 0 0 35px rgba(27, 212, 114, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-agenda-content {
        padding: 40px 24px;
    }
    
    .btn-agenda {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Popup Agenda */
.agenda-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.agenda-popup {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 85vh;
    max-height: 700px;
    background: var(--bg-card);
    border: 1px solid rgba(27, 212, 114, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(27, 212, 114, 0.2);
}

.agenda-popup-overlay.active .agenda-popup {
    transform: scale(1) translateY(0);
}

.agenda-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
}

.agenda-popup-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-white);
}

.agenda-popup-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.agenda-popup-close:hover svg {
    color: var(--bg-dark);
}

.agenda-popup-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.agenda-popup-content iframe {
    border-radius: var(--radius-md);
}

/* Responsive para popup */
@media (max-width: 768px) {
    .agenda-popup {
        width: 95%;
        height: 90vh;
        max-height: none;
        border-radius: var(--radius-lg);
    }
    
    .agenda-popup-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .agenda-popup-content {
        padding: 15px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ========================================
   RESPONSIVE DESIGN - OPTIMIZADO PARA MÓVILES
   ======================================== */

/* Mejoras generales para touch */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-secondary, .nav-cta, .social-link {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-link {
        padding: 12px 8px;
    }
}

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    /* Hero Service Responsive */
    .hero-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-service-card {
        padding: 32px;
    }
    
    .hero-service-title {
        font-size: 28px;
    }
    
    .hero-service-number {
        font-size: 56px;
    }
    
    .ai-brain-visual {
        width: 180px;
        height: 180px;
    }
    
    .ai-results-metrics {
        flex-wrap: wrap;
    }
    
    .metric-card {
        min-width: calc(50% - 8px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        flex-direction: column;
    }
    
    .comparison-column {
        max-width: 100%;
    }
    
    .comparison-vs {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-visual {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    /* Logos más pequeños en tablet */
    .logo-img {
        height: 150px;
    }
    
    .clients-track img {
        height: 150px;
    }
}

/* Móviles grandes y tablets pequeñas */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 16px;
    }
    
    /* Navegación móvil mejorada */
    .navbar {
        padding: 12px 0;
    }
    
    .navbar.scrolled {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(27, 212, 114, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-cta {
        margin-top: 16px;
        padding: 16px 32px;
        text-align: center;
        font-size: 16px;
    }
    
    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .nav-toggle span {
        width: 22px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 16px;
        font-size: 10px;
    }
    
    .badge-separator {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 0;
    }
    
    .stat-item {
        text-align: center;
        padding: 12px;
        background: rgba(27, 212, 114, 0.05);
        border-radius: var(--radius-md);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Logos Section Mobile */
    .logos-section {
        padding: 16px 0;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .logos-track {
        gap: 20px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 32px;
        padding: 0 8px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Problems Section Mobile */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problem-card {
        padding: 24px;
    }
    
    .problem-icon {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .problem-card h3 {
        font-size: 18px;
    }
    
    .problem-card p {
        font-size: 14px;
    }
    
    .problems-result {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .problems-result p {
        font-size: 16px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .about-badges {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
    
    .about-badge {
        padding: 12px 20px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-subtitle {
        font-size: 17px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .highlight-box {
        padding: 16px;
    }
    
    .about-quote {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .about-quote p {
        font-size: 16px;
    }
    
    .clients-slider {
        padding: 20px 0;
    }
    
    .clients-track img {
        height: 100px;
    }
    
    /* Hero Service Mobile */
    .hero-service-wrapper {
        margin-bottom: 32px;
    }
    
    .hero-service-card {
        padding: 24px 20px;
    }
    
    .hero-service-content {
        gap: 32px;
    }
    
    .hero-service-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-service-number {
        font-size: 48px;
        position: absolute;
        top: 16px;
        right: 16px;
        opacity: 0.3;
    }
    
    .hero-service-title {
        font-size: 22px;
    }
    
    .hero-service-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-service-features li {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .ai-brain-visual {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .brain-center {
        width: 60px;
        height: 60px;
    }
    
    .brain-icon {
        font-size: 28px;
    }
    
    .ai-results-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .metric-card {
        width: 100%;
        padding: 16px;
    }
    
    .metric-icon {
        font-size: 24px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .metric-label {
        font-size: 11px;
    }
    
    .hero-result-box {
        padding: 20px;
    }
    
    .hero-result-box p {
        font-size: 15px;
    }
    
    .hero-service-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 16px;
        margin-top: 24px;
    }
    
    /* Other Services Mobile */
    .other-services-title {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        font-size: 32px;
    }
    
    .service-number {
        font-size: 40px;
        top: 16px;
        right: 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-subtitle {
        font-size: 14px;
    }
    
    .service-features li {
        font-size: 13px;
    }
    
    .service-badge-highlight {
        font-size: 13px;
        padding: 14px;
    }
    
    /* Services CTA Mobile */
    .services-cta {
        padding: 0 8px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 20px;
    }
    
    .cta-icon {
        font-size: 40px;
    }
    
    .cta-content h3 {
        font-size: 18px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-card .stat-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .stat-card .stat-value {
        font-size: 26px;
    }
    
    .stat-card .stat-desc {
        font-size: 12px;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-icon {
        font-size: 28px;
    }
    
    .testimonial-meta .company {
        font-size: 13px;
    }
    
    .testimonial-quote {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .testimonial-result {
        padding: 10px 14px;
    }
    
    .testimonial-result .result-number {
        font-size: 20px;
    }
    
    .testimonial-result .result-text {
        font-size: 12px;
    }
    
    /* Differentiator Mobile */
    .differentiator-section {
        padding: 50px 0;
    }
    
    .comparison-column {
        padding: 28px 20px;
    }
    
    .column-icon {
        font-size: 24px;
    }
    
    .column-header h3 {
        font-size: 16px;
    }
    
    .comparison-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .comparison-vs {
        font-size: 20px;
    }
    
    .result-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .result-box p {
        font-size: 16px;
    }
    
    .vp-title {
        font-size: 22px;
        padding: 0 8px;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 50px 0;
    }
    
    .process-timeline {
        padding-left: 8px;
    }
    
    .process-line {
        left: 22px;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .process-step {
        gap: 16px;
        margin-bottom: 28px;
    }
    
    .step-content {
        padding-top: 6px;
    }
    
    .step-content .step-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
    
    .highlight-icon {
        font-size: 28px;
    }
    
    .highlight-box p {
        font-size: 16px;
    }
    
    /* CTA Agenda Mobile */
    .cta-agenda-section {
        padding: 50px 0;
    }
    
    .cta-agenda-content {
        padding: 36px 20px;
    }
    
    .cta-agenda-title {
        font-size: 26px;
    }
    
    .cta-agenda-subtitle {
        font-size: 15px;
    }
    
    .cta-agenda-text {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .btn-agenda {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }
    
    /* Final CTA Mobile */
    .final-cta-section {
        padding: 50px 0;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-badge {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .cta-benefits {
        text-align: left;
        margin-bottom: 32px;
    }
    
    .cta-benefits li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .cta-note {
        font-size: 13px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact h4 {
        margin-bottom: 16px;
    }
    
    .footer-contact .btn-primary {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 32px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

/* Móviles medianos */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 14px;
    }
    
    /* Hero más compacto */
    .hero {
        padding: 90px 0 32px;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 8px 12px;
        gap: 4px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 10px 8px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Section Headers más compactos */
    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* About Mobile Small */
    .about-badges {
        flex-direction: row;
        gap: 12px;
    }
    
    .about-badge {
        padding: 10px 16px;
    }
    
    .badge-number {
        font-size: 22px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    /* Hero Service Extra Small */
    .hero-service-card {
        padding: 20px 16px;
    }
    
    .hero-service-badge {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .hero-service-title {
        font-size: 20px;
    }
    
    .hero-service-number {
        font-size: 40px;
        top: 12px;
        right: 12px;
    }
    
    .hero-service-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .hero-service-icon {
        font-size: 32px;
    }
    
    .icon-ring.ring-a {
        width: 48px;
        height: 48px;
    }
    
    .icon-ring.ring-b {
        width: 64px;
        height: 64px;
    }
    
    .hero-service-features li {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .ai-brain-visual {
        width: 120px;
        height: 120px;
    }
    
    .brain-orbit.orbit-1 {
        width: 70px;
        height: 70px;
    }
    
    .brain-orbit.orbit-2 {
        width: 90px;
        height: 90px;
    }
    
    .brain-orbit.orbit-3 {
        width: 110px;
        height: 110px;
    }
    
    .orbit-node {
        font-size: 14px;
    }
    
    .metric-card {
        padding: 14px 12px;
    }
    
    .metric-value {
        font-size: 22px;
    }
    
    .hero-result-box p {
        font-size: 14px;
    }
    
    .hero-service-cta {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Service Cards Small */
    .service-card {
        padding: 24px 18px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-number {
        font-size: 36px;
    }
    
    /* Stats Small */
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 10px;
    }
    
    .stat-card .stat-value {
        font-size: 22px;
    }
    
    .stat-card .stat-desc {
        font-size: 11px;
    }
    
    /* Testimonials Small */
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .testimonial-quote {
        font-size: 13px;
    }
    
    /* Comparison Small */
    .comparison-column {
        padding: 24px 16px;
    }
    
    .comparison-list li {
        font-size: 13px;
    }
    
    .vp-title {
        font-size: 20px;
    }
    
    /* Process Small */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .process-line {
        left: 20px;
    }
    
    .step-content h3 {
        font-size: 17px;
    }
    
    /* Guarantee Small */
    .flow-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .flow-step span:not(.step-icon-flow) {
        font-size: 10px;
    }
    
    .guarantee-list li {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    /* CTA Small */
    .cta-agenda-content {
        padding: 32px 16px;
    }
    
    .cta-agenda-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    /* Footer Small */
    .footer-logo .logo-text {
        font-size: 22px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Móviles pequeños (320px - 360px) */
@media (max-width: 360px) {
    :root {
        --container-padding: 0 12px;
    }
    
    .hero {
        padding: 85px 0 28px;
    }
    
    .hero-badge {
        font-size: 8px;
        padding: 6px 10px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .problem-card {
        padding: 20px 16px;
    }
    
    .problem-card h3 {
        font-size: 16px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .about-badge {
        width: 100%;
    }
    
    .hero-service-card {
        padding: 18px 14px;
    }
    
    .hero-service-title {
        font-size: 18px;
    }
    
    .hero-service-features li {
        font-size: 12px;
    }
    
    .service-card {
        padding: 20px 14px;
    }
    
    .service-title {
        font-size: 17px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card .stat-value {
        font-size: 20px;
    }
    
    .testimonial-quote {
        font-size: 12px;
    }
    
    .comparison-column {
        padding: 20px 14px;
    }
    
    .column-header h3 {
        font-size: 14px;
    }
    
    .comparison-list li {
        font-size: 12px;
    }
    
    .vp-title {
        font-size: 18px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .process-line {
        left: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .guarantee-title {
        font-size: 22px;
    }
    
    .guarantee-icon {
        font-size: 52px;
    }
    
    .cta-agenda-title {
        font-size: 22px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .footer-links h4 {
        font-size: 12px;
    }
}

/* Orientación landscape para móviles */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-menu {
        height: auto;
        max-height: calc(100vh - 60px);
    }
}

/* Mejoras para accesibilidad y usabilidad en móviles */
@media (max-width: 768px) {
    /* Prevenir zoom en inputs */
    input, select, textarea {
        font-size: 16px;
    }
    
    /* Mejor área de toque para botones */
    .btn-primary, .btn-secondary {
        min-height: 52px;
    }
    
    /* Scroll suave para anclas */
    html {
        scroll-padding-top: 80px;
    }
    
    /* Ocultar scroll horizontal */
    body {
        overflow-x: hidden;
    }
    
    /* Mejorar contraste en textos */
    .problem-card p,
    .service-features li,
    .testimonial-quote {
        color: var(--text-light);
    }
}
