/* RadicaPro Landing Page Styles - Diseño Profesional 2024 */

/* Color Variables - Paleta Moderna */
:root {
    /* Colores Primarios */
    --primary: #2563eb;        /* Azul vibrante */
    --primary-dark: #1d4ed8;   /* Azul oscuro */
    --primary-light: #3b82f6;  /* Azul claro */
    --secondary: #0ea5e9;      /* Cian moderno */
    --tertiary: #0f172a;       /* Azul muy oscuro */

    /* Acentos */
    --accent: #10b981;         /* Verde esmeralda */
    --accent-dark: #059669;    /* Verde oscuro */
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%);

    /* Colores adicionales */
    --purple: #8b5cf6;         /* Púrpura para destacar */
    --orange: #f97316;         /* Naranja para CTAs */
    --pink: #ec4899;           /* Rosa para acentos */

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);

    /* Neutros */
    --error: #ef4444;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    /* Bordes */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botones Modernos */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

/* Navbar Styles - Moderno */
.navbar {
    background: var(--gradient-dark);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 80px;
    max-height: 80px;
    max-width: 320px;
    background-color: white;
    padding: 10px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 600;
    margin: 0 0.5rem;
    color: #ffffff !important;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover, .nav-link:focus {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Asegurar que los enlaces activos mantengan el color blanco */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ffffff !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 0.5rem;
    z-index: 1001;
}

.dropdown-item {
    color: #333333 !important;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--primary);
    color: #ffffff !important;
}

.dropdown-divider {
    margin: 5px 0;
    border-color: #e9ecef;
}

/* Professional Consulting Styles */
.hero-landing.professional {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.hero-badge.professional {
    background-color: rgba(57, 119, 175, 0.1);
    color: var(--primary);
    border: 1px solid rgba(57, 119, 175, 0.2);
}

.hero-title.professional {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--tertiary);
}

.hero-stats-compact.professional .stat-number-compact {
    color: var(--primary);
    font-weight: 600;
}

.feature-highlight-box.professional {
    border: 1px solid #e9ecef;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services-section.professional {
    background-color: #ffffff;
    padding: 5rem 0;
}

.service-card.professional {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card.professional:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features li:before {
    content: "•";
    color: var(--primary);
    margin-right: 0.5rem;
}

.methodology-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.expertise-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.expertise-card {
    text-align: center;
    padding: 2rem 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.expertise-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.pricing-section.professional {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.pricing-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-secondary);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "✓";
    color: var(--primary);
    margin-right: 0.8rem;
    font-weight: bold;
}

.section-title.professional {
    color: var(--tertiary);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    color: var(--text-primary);
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero .tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-height: 120px;
    
}

.cta-buttons {
    margin-top: 2rem;
}

.hero-image-placeholder {
    background-color: rgba(255, 255, 255, 0.2);
    height: auto;
    min-height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    text-align: center;
    padding: 1rem;
    border: 1px solid #eee;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(57, 119, 175, 0.3);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(57, 119, 175, 0.4);
}

.tech-badge i {
    font-size: 1.1rem;
}

/* Tech Differential Section */
.tech-differential {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.tech-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.tech-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(57, 119, 175, 0.15);
}

.tech-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tech-icon-wrapper i {
    color: var(--primary);
    animation: pulse 2s infinite;
}

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

.tech-feature-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.tech-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tech-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.tech-list li {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list li i {
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tech-stat {
    background: linear-gradient(135deg, #1a2a3a 0%, #2d4a5e 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 1.5rem;
}

.tech-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tech-stat .stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Tech Impact Banner */
.tech-impact-banner {
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 52, 63, 0.2);
}

.impact-content h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.impact-content h4 i {
    margin-right: 0.5rem;
}

.impact-metrics {
    margin-top: 2rem;
}

.impact-metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.impact-metric:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.impact-metric .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.impact-metric .metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.impact-metric small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    line-height: 1.4;
}

/* Problem Section */
.problem {
    background-color: var(--light-gray);
}

.problems-list {
    margin-top: 3rem;
}

.problem-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.problem-icon i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(176, 0, 32, 0.1);
}

/* Solution Section */
.solution {
    background-color: var(--white);
}

.solution-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.solution-list li {
    padding: 0.8rem 0;
    font-size: 1.2rem;
}

.solution-list li i {
    color: var(--accent);
    margin-right: 0.8rem;
}

.solution-list li strong {
    font-weight: 700;
}

.solution-image-placeholder {
    background-color: var(--light-gray);
    height: auto;
    min-height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    text-align: center;
    padding: 1rem;
}

/* How it Works Section */
.how-it-works {
    background-color: var(--light-gray);
    margin-top: 3rem;
    padding-top: 7rem;
}

.process-steps {
    margin-top: 3rem;
}

.process-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    min-height: 352px;
}

.process-card:hover {
    transform: translateY(-5px);
}

.highlight-card {
    border: 2px solid var(--accent);
    background-color: rgba(76, 175, 80, 0.05);
    transform: scale(1.03);
    animation: pulse 2s infinite;
}

.highlight-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.process-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-icon {
    margin: 1.5rem 0;
    font-size: 2rem;
    color: var(--accent);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
    margin-top: 3rem;
    padding-top: 7rem;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    min-height: 352px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    background-color: var(--white);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Normative Banner */
.normative-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 5px solid var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.normative-banner h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.normative-banner h4 i {
    margin-right: 0.5rem;
}

.normative-banner p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.normative-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.normative-tag {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.normative-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.normative-tag i {
    color: var(--accent);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background:  var(--primary);
    color: var(--white);
}

.cta .section-title, 
.cta .section-subtitle {
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 4px;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--tertiary);
    color: var(--white);
    padding: 2rem 0;
}

.footer-link {
    color: var(--white);
    margin-left: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

/* Active Navigation */
.nav-link.active {
    color: var(--accent) !important;
    font-weight: 700;
}

/* Module Cards */
.module-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.module-card.active {
    border-color: var(--accent);
    background-color: rgba(76, 175, 80, 0.05);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.module-icon i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(57, 119, 175, 0.1);
}

.module-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.module-card:hover .module-arrow {
    transform: translateX(5px);
}

.module-details {
    margin-top: 3rem;
    animation: fadeInUp 0.5s ease;
}

.module-detail-card {
    background-color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.module-detail-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.module-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.module-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.module-features li i {
    color: var(--accent);
    margin-right: 0.8rem;
    width: 20px;
}

.module-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.module-features-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.module-features-list li i {
    color: var(--accent);
    margin-right: 0.8rem;
    width: 20px;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.featured-plan {
    border-color: var(--accent);
    position: relative;
}

.featured-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.featured-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.enterprise-description {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.plan-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.plan-features-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features-list li i {
    margin-right: 0.8rem;
    width: 16px;
    font-size: 0.9rem;
}

.pricing-tiers {
    margin-bottom: 1.5rem;
}

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--secondary);
    transition: all 0.2s ease;
}

.price-tier:hover {
    background: #e9ecef;
    transform: translateX(2px);
}

.price-tier.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-left-color: var(--accent-dark);
    font-weight: 600;
}

.tier-range {
    font-weight: 600;
    font-size: 0.9rem;
}

.tier-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.price-tier.highlight .tier-price {
    color: white;
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(57, 119, 175, 0.1);
    border-radius: 6px;
    border-left: 4px solid var(--primary);
}

.btn-block {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enterprise Plan Styles */
.enterprise-plan {
    border-color: var(--tertiary);
    position: relative;
}

.enterprise-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tertiary), #1a2530);
}

.enterprise-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: var(--tertiary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Hero Landing Styles */
.hero-landing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Hero Image Section */
.hero-image-section {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
}

.hero-process-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-process-image:hover {
    transform: scale(1.02);
}

/* Compact Stats */
.hero-stats-compact {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item-compact {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    min-width: 110px;
    flex: 1;
    max-width: 130px;
}

.stat-item-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.stat-number-compact {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label-compact {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.2rem;
    line-height: 1.1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.hero-visual {
    padding: 2rem;
}

.feature-highlight-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.feature-highlight-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.feature-highlight-header h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 1.3rem;
}

.feature-highlight-content {
    space-y: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.highlight-item i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.highlight-item.success {
    background: rgba(76, 175, 80, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    border-left: 3px solid var(--accent);
}

.solution-arrow {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    font-weight: 600;
    color: var(--accent);
}

.solution-arrow i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-process-image {
        max-width: 300px;
    }
    
    .hero-stats-compact {
        gap: 0.8rem;
    }
    
    .stat-item-compact {
        min-width: 100px;
        max-width: 110px;
        padding: 0.5rem 0.6rem;
    }
    
    .stat-number-compact {
        font-size: 1.4rem;
    }
    
    .stat-label-compact {
        font-size: 0.7rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .feature-highlight-box {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    /* Tech section responsive */
    .tech-badges {
        justify-content: center;
    }

    .tech-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .tech-feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .tech-feature-card h3 {
        font-size: 1.2rem;
    }

    .tech-icon-wrapper i {
        font-size: 2rem;
    }

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

    .tech-impact-banner {
        padding: 1.5rem;
    }

    .impact-content h4 {
        font-size: 1.3rem;
    }

    .impact-metric {
        margin-bottom: 1rem;
    }

    .impact-metric .metric-value {
        font-size: 2rem;
    }

    .normative-banner {
        padding: 1.5rem;
    }

    .normative-list {
        flex-direction: column;
    }

    .normative-tag {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Landing Visual Styles */
.hero-landing-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-visual-image {
    position: relative;
    padding: 2rem;
}

.main-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-element {
    position: absolute;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.2rem;
}

.element-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 2s;
}

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

/* Before/After Section */
.before-after-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.before-section, .after-section {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.before-section h4, .after-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 0.8rem;
}

.process-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.arrow-transition {
    font-size: 2rem;
    color: var(--accent);
    animation: pulse 2s infinite;
}

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

/* Benefits Visual Section */
.benefits-visual-section {
    padding: 4rem 0;
    background: white;
}

.benefit-visual-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.benefit-image {
    height: 200px;
    overflow: hidden;
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-visual-card:hover .benefit-img {
    transform: scale(1.05);
}

.benefit-content {
    padding: 1.5rem;
}

.benefit-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.testimonial-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-quote {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-quote blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 2px solid var(--light-gray);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Pilot CTA Section */
.pilot-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.pilot-cta-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.pilot-content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.pilot-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(76, 175, 80, 0.6);
    }
}

.pilot-content {
    flex: 1;
}

.pilot-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pilot-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.pilot-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pilot-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pilot-benefit i {
    font-size: 1rem;
    flex-shrink: 0;
}

.pilot-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-pilot {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    white-space: nowrap;
}

.btn-pilot:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.6);
    color: white;
}

.btn-pilot i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.pilot-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.pilot-note i {
    margin-right: 0.5rem;
    color: var(--primary);
}

/* Decorative Elements */
.pilot-decoration {
    position: absolute;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(57, 119, 175, 0.1));
    border-radius: 50%;
    animation: float-decoration 6s ease-in-out infinite;
}

.pilot-decoration-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    animation-delay: 0s;
}

.pilot-decoration-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    animation-delay: 2s;
}

.pilot-decoration-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -30px;
    animation-delay: 4s;
}

@keyframes float-decoration {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Contact Form Mini Styles */
.contact-form-mini {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.form-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mini-contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mini-contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(57, 119, 175, 0.15);
}

.mini-contact-form .form-control::placeholder {
    color: #adb5bd;
}

.form-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 119, 175, 0.4);
}

.form-security-note {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.form-security-note i {
    margin-right: 0.5rem;
}

/* Features Content Styles */
.features-content {
    padding: 1rem 0;
}

.features-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.module-features-list-single {
    list-style: none;
    padding: 2rem;
    margin-bottom: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.module-features-list-single li {
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin: 0 -1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.module-features-list-single li:hover {
    background: rgba(57, 119, 175, 0.05);
    transform: translateX(5px);
}

.module-features-list-single li:last-child {
    border-bottom: none;
}

.module-features-list-single li i {
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Feature Detail Items Styles */
.feature-detail-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-detail-item:hover {
    box-shadow: 0 6px 20px rgba(57, 119, 175, 0.15);
    transform: translateY(-3px);
}

.feature-detail-item h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-detail-item h4 i {
    font-size: 1.4rem;
}

.feature-detail-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Sub Features List */
.sub-features-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0 0;
}

.sub-features-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    position: relative;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.sub-features-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.sub-features-list li i {
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Responsive adjustments for visual version */
@media (max-width: 768px) {
    .before-after-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow-transition {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .floating-element {
        position: static;
        margin: 0.5rem 0;
        justify-content: center;
    }
    
    .element-1, .element-2, .element-3 {
        position: static;
        animation: none;
    }
    
    .testimonial-section .row {
        flex-direction: column-reverse;
    }
    
    .testimonial-image {
        margin-top: 2rem;
        height: 250px;
    }
    
    .contact-form-mini {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .module-features-list-single li {
        font-size: 1rem;
    }
    
    .pilot-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .pilot-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .pilot-title {
        font-size: 1.5rem;
    }
    
    .pilot-subtitle {
        font-size: 1rem;
    }
    
    .pilot-benefits {
        align-items: center;
    }
    
    .pilot-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-pilot {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 70px !important;
    height: 70px !important;
    background-color: #25D366 !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-size: 32px !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    animation: pulse-whatsapp 2s infinite !important;
    cursor: pointer !important;
}

.whatsapp-float:hover {
    background-color: #128C7E !important;
    color: white !important;
    transform: scale(1.15) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7) !important;
    text-decoration: none !important;
}

.whatsapp-float:focus {
    color: white !important;
    text-decoration: none !important;
    outline: none !important;
}

.whatsapp-float:visited {
    color: white !important;
}

.whatsapp-float:active {
    color: white !important;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
    25% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.2);
    }
    50% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0.15);
    }
    75% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 10px !important; /* Reducido de 20px a 10px para moverlo más a la izquierda */
        width: 60px !important; /* Reducido ligeramente el tamaño */
        height: 60px !important;
        font-size: 26px !important;
    }
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-primary:hover, 
.btn-primary:focus {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-secondary:hover, 
.btn-secondary:focus {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--accent);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image-placeholder {
        margin-top: 3rem;
        height: auto;
        min-height: 300px;
    }

    .solution-image-placeholder {
        margin-top: 2rem;
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        text-align: center;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ============================================
   ESTILOS MÓDULO DIGITACIÓN AUTOMATIZADA
   ============================================ */

/* Sección de Comparativa Costo-Beneficio */
.cost-benefit-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.manual-card {
    border-top: 5px solid #dc3545;
}

.automated-card {
    border-top: 5px solid #28a745;
}

.comparison-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.comparison-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
}

.comparison-body {
    padding: 1rem 0;
}

.cost-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.cost-item:hover {
    background: #e9ecef;
}

.cost-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cost-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.cost-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cost-item small {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.2rem;
}

.comparison-footer {
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    margin-top: 1.5rem;
}

.comparison-footer h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.comparison-footer h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

/* ROI Calculator Card */
.roi-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
}

.roi-calculation {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.roi-calculation h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.roi-calculation h2 {
    font-weight: 800;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Pricing Section - Comparación con personal */
.comparison-label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 1rem 2rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

/* Responsive ajustes para comparativa */
@media (max-width: 992px) {
    .cost-benefit-section .col-lg-6 {
        margin-bottom: 2rem;
    }

    .comparison-header h3 {
        font-size: 1.5rem;
    }

    .comparison-footer h2 {
        font-size: 1.6rem;
    }

    .roi-calculation .col-md-4 h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cost-item {
        flex-direction: column;
        text-align: center;
    }

    .cost-item i {
        margin: 0 0 0.5rem 0;
    }

    .roi-calculation .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

/* =====================================================
   BANNER ESTRATÉGICO - No BPO
   ===================================================== */

.strategic-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.strategic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.strategic-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.strategic-banner .banner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(76, 175, 80, 0.6);
    }
}

.strategic-banner .banner-icon i {
    font-size: 2rem;
    color: white;
}

.strategic-banner .banner-text {
    flex: 1;
}

.strategic-banner .banner-text h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.strategic-banner .banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.strategic-banner .banner-text strong {
    color: #4caf50;
    font-weight: 600;
}

.strategic-banner .banner-cta {
    flex-shrink: 0;
}

.btn-banner {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    border: none;
}

.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    color: white;
    background: linear-gradient(135deg, #66bb6a 0%, #388e3c 100%);
}

.btn-banner i {
    font-size: 1.1rem;
}

/* Variante para distribuidores */
.strategic-banner.distribuidores-banner {
    background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 50%, #2d5a87 100%);
}

.strategic-banner.distribuidores-banner .banner-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
}

.strategic-banner.distribuidores-banner .banner-text strong {
    color: #4dd0e1;
}

.strategic-banner.distribuidores-banner .btn-banner {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    box-shadow: 0 5px 20px rgba(23, 162, 184, 0.3);
}

.strategic-banner.distribuidores-banner .btn-banner:hover {
    background: linear-gradient(135deg, #1fc8e3 0%, #17a2b8 100%);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
}

/* Responsive para banner */
@media (max-width: 991px) {
    .strategic-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .strategic-banner .banner-icon {
        width: 70px;
        height: 70px;
    }

    .strategic-banner .banner-icon i {
        font-size: 1.8rem;
    }

    .strategic-banner .banner-text h2 {
        font-size: 1.4rem;
    }

    .strategic-banner .banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .strategic-banner {
        padding: 1.5rem 0;
    }

    .strategic-banner .banner-icon {
        width: 60px;
        height: 60px;
    }

    .strategic-banner .banner-icon i {
        font-size: 1.5rem;
    }

    .strategic-banner .banner-text h2 {
        font-size: 1.2rem;
    }

    .strategic-banner .banner-text p {
        font-size: 0.9rem;
    }

    .btn-banner {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =====================================================
   MÓDULO DISTRIBUIDORES - Process Flow Section
   ===================================================== */

.process-flow-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.process-step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(57, 119, 175, 0.15);
    border-color: var(--primary);
}

.process-step-card .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(57, 119, 175, 0.3);
}

.process-step-card .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
}

.process-step-card .step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step-card h4 {
    color: var(--tertiary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Timeline Connector (opcional para desktop) */
@media (min-width: 992px) {
    .process-step-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15%;
        width: 30%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        z-index: 1;
    }

    .col-lg-3:last-child .process-step-card::after {
        display: none;
    }
}

/* Responsive para Process Flow */
@media (max-width: 991px) {
    .process-step-card {
        margin-bottom: 2rem;
    }

    .process-step-card::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-flow-section {
        padding: 60px 0;
    }

    .process-step-card {
        padding: 1.5rem 1rem;
    }

    .process-step-card .step-icon {
        width: 60px;
        height: 60px;
    }

    .process-step-card .step-icon i {
        font-size: 1.5rem;
    }
}

/* =====================================================
   MÓDULO DISTRIBUIDORES - Two Tools Section
   ===================================================== */

.two-tools-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.tool-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.tool-card.app-card {
    border-top: 4px solid #17a2b8;
}

.tool-card.web-card {
    border-top: 4px solid var(--primary);
}

.tool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon.app-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.tool-icon.web-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.tool-icon i {
    font-size: 1.8rem;
    color: white;
}

.tool-badge {
    background: #e9ecef;
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary);
    margin-bottom: 0.3rem;
}

.tool-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tool-description {
    margin-bottom: 1.5rem;
}

.tool-description p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tool-features li {
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.tool-features li:last-child {
    border-bottom: none;
}

.tool-features li i {
    font-size: 1rem;
    width: 20px;
}

.tool-flow {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tertiary);
}

.flow-step i {
    color: var(--primary);
}

.flow-arrow {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Tools Connection */
.tools-connection {
    position: relative;
    text-align: center;
    padding: 1rem 0;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.connection-content {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.connection-content i {
    color: var(--primary);
    font-size: 1.2rem;
}

.connection-content span {
    font-weight: 600;
    color: var(--tertiary);
}

/* Process Step Badges */
.process-step-card .step-badge {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.process-step-card.app-step .step-badge {
    background: #d1ecf1;
    color: #0c5460;
}

.process-step-card.web-step .step-badge {
    background: #cce5ff;
    color: #004085;
}

.process-step-card.app-step .step-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.process-step-card.web-step .step-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Features Section Badges */
.features-header {
    margin-bottom: 2rem;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.features-badge.app-features-badge {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.features-badge.web-features-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

/* Responsive para Two Tools */
@media (max-width: 991px) {
    .tool-card {
        margin-bottom: 2rem;
    }

    .tools-connection {
        display: none;
    }
}

@media (max-width: 768px) {
    .tool-card {
        padding: 1.5rem;
    }

    .tool-icon {
        width: 55px;
        height: 55px;
    }

    .tool-icon i {
        font-size: 1.4rem;
    }

    .tool-title {
        font-size: 1.3rem;
    }

    .tool-flow {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    .flow-step {
        font-size: 0.75rem;
    }

    .process-step-card .step-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ============================================
   ESTILOS MODERNOS 2024 - Hero y Componentes
   ============================================ */

/* Hero Section Moderno */
.hero-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 4rem;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(236, 72, 153, 0.15) 0%, transparent 30%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Efecto de partículas/grid en el fondo */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.min-vh-85 {
    min-height: 85vh;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-modern .badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.hero-title-modern {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-features-list {
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
    color: #34d399;
    font-size: 1.1rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-dark {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: transparent;
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: white;
}

/* Hero Visual - Tarjeta flotante */
.hero-visual-modern {
    position: relative;
    padding: 2rem;
}

.hero-main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header-modern .header-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-header-modern h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tertiary);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.comparison-item.negative {
    background: #fef2f2;
    color: #991b1b;
}

.comparison-item.negative i {
    color: #ef4444;
}

.comparison-item.positive {
    background: #f0fdf4;
    color: #166534;
}

.comparison-item.positive i {
    color: var(--accent);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    margin: 0.5rem 0;
    color: var(--accent);
    font-weight: 700;
}

.comparison-divider i {
    animation: bounceDown 1.5s infinite;
}

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

/* Tarjetas flotantes con estadísticas */
.stats-floating-card {
    position: absolute;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-floating-card:first-of-type {
    top: 0;
    left: -20px;
}

.stats-floating-card.bottom-right {
    bottom: 0;
    right: -20px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.floating-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.floating-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Sección de herramientas mejorada */
.two-tools-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
    position: relative;
}

.tool-card {
    background: white;
    border-radius: var(--radius-2xl) !important;
    padding: 2.5rem !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-2xl) !important;
}

/* CTA Section Mejorada */
.cta-section-form {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-section-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(16, 185, 129, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.cta-section-form .container {
    position: relative;
    z-index: 2;
}

.cta-section-form h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff !important;
}

.cta-section-form p {
    color: rgba(255, 255, 255, 0.9) !important;
}

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

.cta-section-form ul li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.cta-section-form .badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
    color: white !important;
    border: none !important;
}

.cta-section-form .card {
    border-radius: var(--radius-2xl) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    background: rgba(255, 255, 255, 0.98);
}

.cta-section-form .form-control {
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.cta-section-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.cta-section-form .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.cta-section-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

/* Tarjetas de características */
.feature-detail-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-detail-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-detail-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.feature-detail-item h4 i {
    font-size: 1.25rem;
}

/* Process Steps Mejorados */
.process-step-card {
    background: white !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.4s ease !important;
}

.process-step-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: var(--shadow-xl) !important;
}

.process-step-card .step-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
}

/* Footer Mejorado */
.footer {
    background: var(--gradient-dark) !important;
    color: white;
    padding: 3rem 0 !important;
}

/* WhatsApp Button Mejorado */
.whatsapp-float {
    box-shadow: var(--shadow-xl) !important;
    width: 65px !important;
    height: 65px !important;
}

.whatsapp-float i {
    font-size: 2rem !important;
}

/* Responsive para Hero Moderno */
@media (max-width: 991px) {
    .hero-modern {
        padding: 3rem 0;
    }

    .hero-visual-modern {
        margin-top: 3rem;
        padding: 1rem;
    }

    .stats-floating-card:first-of-type {
        left: 0;
        top: -15px;
    }

    .stats-floating-card.bottom-right {
        right: 0;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-floating-card {
        padding: 1rem;
    }

    .floating-stat .stat-value {
        font-size: 1.5rem;
    }
}