* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00f5ff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --glow: 0 0 20px var(--primary-color);
    
    /* Logo gradient colors - Silver to Gray */
    --logo-silver: #e5e7eb;
    --logo-gray: #6b7280;
    --logo-silver-hover: #f3f4f6;
    --logo-gray-hover: #4b5563;
    --logo-gradient: linear-gradient(135deg, var(--logo-silver) 0%, var(--logo-gray) 100%);
    --logo-gradient-hover: linear-gradient(135deg, var(--logo-silver-hover) 0%, var(--logo-gray-hover) 100%);
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particles Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: float 3s infinite ease-in-out;
    opacity: 0.7;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    z-index: 1000;
}

/* Logo Frame Styles
   Gradiente plateado-gris elegante que realza el logo sin texto adicional
   Logo maximizado dentro del marco para compensar espacios blancos del PNG
   object-fit: contain asegura que el logo se vea completo sin distorsión */

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    flex: 0 0 auto;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.logo-image {
    height: 110px;
    width: auto;
    margin-right: 0;
    padding: 12px 16px;
    background: var(--logo-gradient);
    border-radius: 18px;
    box-shadow: 
        0 8px 25px rgba(107, 114, 128, 0.4), 
        0 0 35px rgba(229, 231, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    object-fit: contain;
}

.logo-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--logo-gradient);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    background: var(--logo-gradient-hover);
    box-shadow: 
        0 10px 35px rgba(75, 85, 99, 0.5), 
        0 0 45px rgba(243, 244, 246, 0.4),
        0 0 55px rgba(229, 231, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.logo-image:hover::before {
    opacity: 0.5;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-toggle {
    display: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .second-line {
    display: block;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-light);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--secondary-color);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.glow-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-color); }
    50% { box-shadow: 0 0 40px var(--primary-color), 0 0 60px var(--primary-color); }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-inner {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: white;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 50px var(--primary-color);
}

.orbit {
    position: absolute;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    animation: rotate-reverse 15s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    border-top-color: var(--primary-color);
}

.orbit-2 {
    width: 250px;
    height: 250px;
    border-right-color: var(--secondary-color);
    animation-duration: 20s;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    border-bottom-color: var(--accent-color);
    animation-duration: 25s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    margin-top: 2rem;
}

/* Video Showcase */
.video-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 245, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.2);
}

.showcase-video {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

.video-container:hover .showcase-video {
    filter: brightness(0.9) contrast(1.2);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-container:hover .video-overlay {
    transform: translateY(0);
}

.video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Video Loading State */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 245, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.showcase-video:not([data-loaded]) + .video-container::before {
    display: block;
}

.showcase-video[data-loaded] + .video-container::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Automation Showcase */
.automation-showcase {
    padding: 8rem 0;
    background: var(--bg-dark);
    margin-top: 2rem;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.automation-item {
    background: rgba(0, 245, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.automation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.automation-item:hover::before {
    left: 100%;
}

.automation-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.automation-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.automation-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.automation-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tech Keywords Highlight */
.tech-keyword {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.3);
}

/* Service Images */
.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-image:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: var(--bg-darker);
    text-align: center;
    margin-top: 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer-logo .logo-image {
    height: 75px;
    padding: 12px 16px;
    background: linear-gradient(135deg, 
        rgba(229, 231, 235, 0.9) 0%, 
        rgba(107, 114, 128, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 
        0 5px 18px rgba(107, 114, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    object-fit: contain;
}

.footer-logo .logo-image:hover {
    background: linear-gradient(135deg, 
        rgba(243, 244, 246, 0.95) 0%, 
        rgba(75, 85, 99, 0.95) 100%);
    box-shadow: 
        0 6px 22px rgba(75, 85, 99, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container, .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .logo-image {
        height: 100px;
        padding: 10px 14px;
        object-fit: contain;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 95px;
        padding: 10px 14px;
        margin-right: 0;
        object-fit: contain;
    }
    
    .footer-logo .logo-image {
        height: 70px;
        padding: 10px 14px;
        object-fit: contain;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid rgba(0, 245, 255, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-toggle:hover {
        background: rgba(0, 245, 255, 0.1);
        transform: translateY(-50%) scale(1.1);
    }
    
    /* Features Mobile */
    .features {
        padding: 5rem 0;
        margin-top: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Video Mobile */
    .video-showcase {
        padding: 5rem 0;
        margin-top: 1rem;
    }
    
    .video-container {
        margin: 2rem auto 0;
        border-radius: 15px;
    }
    
    .showcase-video {
        min-height: 300px;
    }
    
    .video-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .video-content h3 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }

    /* Automation Mobile */
    .automation-showcase {
        padding: 5rem 0;
        margin-top: 1rem;
    }
    
    .automation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .automation-item {
        padding: 1.5rem 1rem;
    }
    
    .automation-item i {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    /* CTA Mobile */
    .cta {
        padding: 5rem 0;
        margin-top: 1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-stats {
        gap: 2rem;
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    /* AI Circle Mobile */
    .ai-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-inner {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .orbit-1 { width: 170px; height: 170px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 230px; height: 230px; }
}

@media (max-width: 480px) {
    .container, .nav-container, .hero-content {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 3rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .ai-circle {
        width: 200px;
        height: 200px;
    }
    
    .circle-inner {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .orbit-1 { width: 140px; height: 140px; }
    .orbit-2 { width: 170px; height: 170px; }
    .orbit-3 { width: 200px; height: 200px; }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Video Extra Small */
    .video-container {
        margin: 1.5rem auto 0;
        border-radius: 12px;
    }
    
    .showcase-video {
        min-height: 250px;
    }
    
    .video-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .video-content h3 {
        font-size: 1.3rem;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn, .btn-large {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .ai-circle {
        width: 180px;
        height: 180px;
    }
    
    .circle-inner {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .orbit-1 { width: 120px; height: 120px; }
    .orbit-2 { width: 140px; height: 140px; }
    .orbit-3 { width: 160px; height: 160px; }
    
    .logo-image {
        height: 90px;
        padding: 8px 12px;
        margin-right: 0;
        object-fit: contain;
    }
    
    .footer-logo .logo-image {
        height: 65px;
        padding: 8px 12px;
        object-fit: contain;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(21, 32, 43, 0.95));
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(79, 172, 254, 0.2);
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(138, 43, 226, 0.1));
}

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(79, 172, 254, 0.3);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 8px;
    background: rgba(13, 17, 23, 0.8);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

/* Calendario Styles */
.calendario-container {
    margin: 1rem 0;
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.calendario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(138, 43, 226, 0.2));
}

.calendario-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.nav-btn {
    background: rgba(79, 172, 254, 0.2);
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(79, 172, 254, 0.3);
    transform: scale(1.1);
}

.calendario-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
}

.dia-semana {
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.dia-btn {
    padding: 0.8rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(79, 172, 254, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    font-size: 0.9rem;
}

.dia-btn:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: var(--primary-color);
}

.dia-btn.selected {
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    color: white;
    font-weight: bold;
}

.dia-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.dia-btn:disabled:hover {
    background: rgba(13, 17, 23, 0.8);
    border-color: rgba(79, 172, 254, 0.2);
}

/* Horarios Styles */
.horarios-container {
    margin-top: 1.5rem;
}

.horarios-container h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
}

.horario-btn {
    padding: 0.8rem 1rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.horario-btn:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: var(--primary-color);
}

.horario-btn.selected {
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    color: white;
    font-weight: bold;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(79, 172, 254, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-body {
        padding: 1rem;
    }

    .horarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendario-grid {
        gap: 2px;
        padding: 0.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-header {
        padding: 1.5rem;
    }
}

/* New Pages Styles */

/* Automation Diagram */
.automation-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(79, 172, 254, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.process-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 15px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.process-node.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
    transform: scale(1.05);
}

.process-node.processing {
    border-color: #ffa500;
    animation: pulse 2s infinite;
}

.process-node.completed {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.process-node i {
    font-size: 2rem;
    color: var(--primary-color);
}

.process-node span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.arrow-flow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: flow 2s infinite;
}

@keyframes flow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Process Examples */
.process-examples {
    padding: 8rem 0;
    background: rgba(13, 17, 23, 0.5);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-card {
    background: linear-gradient(135deg, rgba(21, 32, 43, 0.8), rgba(13, 17, 23, 0.9));
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.1);
}

.example-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.example-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.time-saved {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.example-flow {
    margin: 2rem 0;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.flow-step:nth-child(2) { animation-delay: 0.2s; }
.flow-step:nth-child(4) { animation-delay: 0.4s; }
.flow-step:nth-child(6) { animation-delay: 0.6s; }
.flow-step:nth-child(8) { animation-delay: 0.8s; }

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.flow-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.example-results {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(79, 172, 254, 0.2);
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Tech Stack */
.tech-stack {
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tech-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ROI Calculator */
.roi-calculator {
    padding: 8rem 0;
    background: rgba(21, 32, 43, 0.3);
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8), rgba(21, 32, 43, 0.9));
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.input-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-group input[type="number"],
.input-group input[type="range"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 8px;
    background: rgba(13, 17, 23, 0.8);
    color: var(--text-primary);
    font-size: 1rem;
}

.input-group input[type="range"] {
    padding: 0;
    height: 8px;
    background: transparent;
    outline: none;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 15px;
}

.result-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

/* Workflow Gallery */
.workflow-gallery {
    padding: 8rem 0;
}

.workflow-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.workflows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.workflow-card {
    background: linear-gradient(135deg, rgba(21, 32, 43, 0.8), rgba(13, 17, 23, 0.9));
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.1);
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(79, 172, 254, 0.2);
}

.workflow-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.workflow-content {
    padding: 1.5rem;
}

.workflow-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.workflow-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workflow-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.workflow-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(79, 172, 254, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.workflow-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(79, 172, 254, 0.2);
}

.btn-action {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 8px;
    background: rgba(13, 17, 23, 0.8);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-action:hover {
    border-color: var(--primary-color);
    background: rgba(79, 172, 254, 0.1);
}

.btn-action.primary {
    background: var(--primary-color);
    color: white;
}

.btn-action.primary:hover {
    background: #3d8bfe;
}

/* Workflow Preview */
.workflow-preview {
    padding: 2rem;
    background: rgba(79, 172, 254, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.node-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid rgba(79, 172, 254, 0.3);
    border-radius: 15px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.workflow-node.trigger {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.workflow-node.processing {
    border-color: #ffa500;
    animation: pulse 2s infinite;
}

.workflow-node.output {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.2);
}

.connection-line {
    width: 40px;
    height: 2px;
    background: rgba(79, 172, 254, 0.3);
    position: relative;
}

.connection-line.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.connection-line.active::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Assessment Styles */
.quick-assessment {
    padding: 8rem 0;
    background: rgba(13, 17, 23, 0.5);
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(79, 172, 254, 0.2);
    border-radius: 4px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #8a2be2);
    border-radius: 4px;
    width: 16.67%;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    top: -30px;
    right: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.question-container {
    min-height: 500px;
    position: relative;
}

.question {
    display: none;
    background: linear-gradient(135deg, rgba(21, 32, 43, 0.8), rgba(13, 17, 23, 0.9));
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 20px;
    padding: 3rem;
    animation: fadeInUp 0.5s ease-out;
}

.question.active {
    display: block;
}

.question h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.answer-options {
    display: grid;
    gap: 1rem;
}

.answer-options.multi-select {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.answer-option {
    display: block;
    cursor: pointer;
}

.answer-option input[type="radio"],
.answer-option input[type="checkbox"] {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid rgba(79, 172, 254, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.option-content:hover {
    border-color: var(--primary-color);
    background: rgba(79, 172, 254, 0.05);
}

.answer-option input:checked + .option-content {
    border-color: var(--primary-color);
    background: rgba(79, 172, 254, 0.1);
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.2);
}

.option-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.option-content span {
    color: var(--text-primary);
    font-weight: 500;
}

.assessment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* Progress Circle */
.progress-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.circle-progress {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg, rgba(79, 172, 254, 0.2) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.5s ease;
}

.circle-progress[data-percentage="16"] {
    background: conic-gradient(var(--primary-color) 58deg, rgba(79, 172, 254, 0.2) 58deg);
}

.circle-progress[data-percentage="33"] {
    background: conic-gradient(var(--primary-color) 119deg, rgba(79, 172, 254, 0.2) 119deg);
}

.circle-progress[data-percentage="50"] {
    background: conic-gradient(var(--primary-color) 180deg, rgba(79, 172, 254, 0.2) 180deg);
}

.circle-progress[data-percentage="67"] {
    background: conic-gradient(var(--primary-color) 241deg, rgba(79, 172, 254, 0.2) 241deg);
}

.circle-progress[data-percentage="83"] {
    background: conic-gradient(var(--primary-color) 299deg, rgba(79, 172, 254, 0.2) 299deg);
}

.circle-progress[data-percentage="100"] {
    background: conic-gradient(var(--primary-color) 360deg, rgba(79, 172, 254, 0.2) 360deg);
}

.circle-inner {
    width: 160px;
    height: 160px;
    background: rgba(13, 17, 23, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(79, 172, 254, 0.3);
}

.percentage {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.step-text {
    font-size: 0.9rem;
    color: white;
    margin-top: 0.5rem;
}

/* Results Styles */
.assessment-results {
    padding: 8rem 0;
    background: rgba(21, 32, 43, 0.3);
}

.plan-overview {
    margin-bottom: 4rem;
}

.plan-card {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8), rgba(21, 32, 43, 0.9));
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.score-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.score-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(79, 172, 254, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-item div {
    display: flex;
    flex-direction: column;
}

.benefit-item strong {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.benefit-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Implementation Roadmap */
.implementation-roadmap {
    margin-bottom: 4rem;
}

.implementation-roadmap h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), #8a2be2);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid rgba(13, 17, 23, 1);
}

.timeline-content {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    color: var(--text-primary);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Next Steps */
.next-steps h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8), rgba(21, 32, 43, 0.9));
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.step-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botón Empezar Ahora especial */
#empezarAhora {
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.4);
}

/* Asegurar que todos los elementos mantengan colores correctos */
.nav-link, .nav-menu a {
    color: var(--text-light) !important;
}

.circle-inner i {
    color: white !important;
}

.ai-circle .fa-brain {
    color: white !important;
}

#empezarAhora::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;
}

#empezarAhora:hover::before {
    left: 100%;
}

#empezarAhora:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(79, 172, 254, 0.6);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .automation-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow-flow {
        transform: rotate(90deg);
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .workflows-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .plan-benefits {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -2rem;
        width: 30px;
        height: 30px;
    }
}