/* ===== Modern SaaS Variables (Audaz Design System) ===== */
:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --accent: #FB4C0A;
    --accent-hover: #E03E00;
    --dark: #0F172A;
    --dark-surface: #1E293B;
    --light: #F8FAFC;
    --light-surface: #FFFFFF;
    --gray: #64748B;
    --gray-light: #E2E8F0;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    --gradient-2: linear-gradient(135deg, #818CF8 0%, #10B981 100%);
    --gradient-dark: linear-gradient(145deg, #0F172A 0%, #1E1B4B 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px -12px rgba(99, 102, 241, 0.18);
    --radius-lg: 25px;
    --radius-md: 25px;
    --radius-sm: 25px;
    --radius-xl: 25px;
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
}

/* ===== Navigation (Isla Flotante con Bordes a 25px) ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1488px;
    z-index: 1000;
    padding: 10px 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(11, 17, 33, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.navbar.scrolled {
    top: 12px;
    background: rgba(8, 12, 24, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 20px rgba(99, 102, 241, 0.15);
    padding: 8px 24px;
    border-radius: 25px !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.logo img {
    width: auto;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Logo solo (sin texto) */
.logo.logo-only img {
    width: auto;
    height: 48px;
    border-radius: 0;
    background: transparent;
}

.navbar.scrolled .logo.logo-only img {
    height: 42px;
}

.logo:hover img {
    filter: brightness(1.2) saturate(1.3);
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: #E2E8F0;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: #818CF8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366F1, #10B981);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.navbar .btn {
    border-radius: 25px !important;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
}

.navbar .btn-accent,
.navbar .btn-primary {
    background: linear-gradient(135deg, #FB4C0A 0%, #E03E00 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 25px !important;
    padding: 9px 24px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(251, 76, 10, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar .btn-accent:hover,
.navbar .btn-primary:hover {
    background: linear-gradient(135deg, #FF5C1F 0%, #FB4C0A 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(251, 76, 10, 0.6), 0 0 15px rgba(251, 76, 10, 0.4) !important;
    color: #FFFFFF !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #FFFFFF;
    cursor: pointer;
}

/* ===== Buttons (Bordes 25px) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

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

.btn-accent:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 25px;
}

.btn-sm {
    padding: 8px 22px;
    font-size: 14px;
    border-radius: 25px;
}

/* ===== Hero Section (Diseño de Líneas Modernas & Malla 2026) ===== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-color: #070913;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.4) 0%, transparent 65%),
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
    padding: clamp(130px, 15vh, 180px) 0 clamp(60px, 8vh, 100px);
    overflow: hidden;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(120, 119, 198, 0.25), transparent),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 32px);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #818CF8 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.65;
    margin-bottom: 36px;
    color: #94A3B8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: #94A3B8;
}

.hero-image {
    position: relative;
}

.dashboard-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: perspective(1000px) rotateY(-4deg);
    transition: transform 0.5s;
}

.dashboard-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 25px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
}

.floating-card i {
    font-size: 20px;
    flex-shrink: 0;
}

.card-1 {
    top: 6%;
    left: -8%;
    animation-delay: 0s;
}

.card-2 {
    top: 14%;
    right: -8%;
    animation-delay: 1.2s;
}

.card-3 {
    bottom: 18%;
    left: -6%;
    animation-delay: 2.4s;
}

.card-4 {
    bottom: 4%;
    right: -6%;
    animation-delay: 3.6s;
}

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

@media (max-width: 991px) {
    .floating-card {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 20px;
    }
    .card-1 { top: 2%; left: 0; }
    .card-2 { top: 22%; right: 0; }
    .card-3 { bottom: 20%; left: 0; }
    .card-4 { bottom: 2%; right: 0; }
}

@media (max-width: 576px) {
    .floating-card {
        display: none;
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

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

/* ===== Features Section ===== */
.features-section {
    background: var(--light);
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

.bg-blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.bg-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.bg-purple { background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%); }
.bg-orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bg-red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.bg-teal { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Benefits Section ===== */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.benefits-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 16px 0 32px;
    color: var(--dark);
}

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

.benefits-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefits-list i {
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--dark);
}

.benefits-list p {
    color: var(--gray);
    margin: 0;
}

/* ===== Pricing Section ===== */
.pricing-preview-section {
    background: var(--light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(150deg, #090D1A 0%, #11182E 50%, #0F172A 100%);
    color: var(--white);
    transform: scale(1.05);
    border: 1px solid rgba(99, 102, 241, 0.35);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #6366F1, #10B981);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    margin: 0 4px;
}

.period {
    font-size: 18px;
    color: var(--gray);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features i {
    color: var(--secondary);
    font-size: 18px;
}

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: 20px;
}

.pricing-card .btn-outline {
    background: #F8FAFC !important;
    color: #0F172A !important;
    border: 1.5px solid #CBD5E1 !important;
}

.pricing-card .btn-outline:hover {
    background: #0F172A !important;
    color: #FFFFFF !important;
    border-color: #0F172A !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.pricing-card.featured .btn-primary {
    background: linear-gradient(135deg, #FB4C0A 0%, #FF7337 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(251, 76, 10, 0.4) !important;
}

.pricing-card.featured .btn-primary:hover {
    background: linear-gradient(135deg, #E03E00 0%, #FB4C0A 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(251, 76, 10, 0.55) !important;
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 25px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo img {
    width: auto;
    height: 72px;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
}

.footer-logo:hover img {
    filter: brightness(1.3) saturate(1.4);
    transform: scale(1.05);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 12px;
        color: #FFFFFF;
        font-size: 19px;
        cursor: pointer;
        transition: all 0.25s ease;
        z-index: 1005;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-btn:hover,
    .mobile-menu-btn:active {
        background: rgba(251, 76, 10, 0.2);
        border-color: #FB4C0A;
        color: #FB4C0A;
    }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(11, 17, 33, 0.98);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 25px;
        flex-direction: column;
        padding: 22px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
        gap: 14px;
        display: none !important;
        z-index: 1004;
    }
    
    .nav-menu.active {
        display: flex !important;
        animation: mobileMenuFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-menu .nav-link {
        font-size: 15px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
        margin-top: 4px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid,
    .pricing-cards,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== Payment Modal ===== */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.payment-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.payment-modal-close:hover {
    color: var(--dark);
}

.payment-modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
}

.payment-package-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.payment-package-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-price {
    font-size: 36px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--gray);
    font-size: 14px;
}

.payment-info-box {
    background: #f0f9ff;
    border-left: 4px solid var(--primary);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-info-content {
    color: var(--dark);
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
}

.payment-success {
    text-align: center;
    padding: 40px 20px;
}

.payment-success i {
    font-size: 64px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.payment-success h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.payment-success p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .payment-modal-content {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* ===== WhatsApp Flotante ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    width: 200px;
    border-radius: 30px;
}

.whatsapp-float i {
    transition: all 0.3s ease;
}

.whatsapp-float:hover i {
    margin-right: 10px;
}

.whatsapp-text {
    display: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
    animation: slideIn 0.3s ease;
}

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

/* Animación de pulso */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

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

.whatsapp-float:hover::before {
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .whatsapp-float:hover {
        width: 56px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none !important;
    }
}

/* ==========================================================================
   AUDAZ - SOLUCIONES VERTICALES & DROPDOWN STYLES
   ========================================================================== */

/* Navbar Dropdown */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown.active .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: #0B0F1D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #FFFFFF;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
}

.nav-dd-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.nav-dd-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 2px;
}

.nav-dd-desc {
    font-size: 11px;
    color: #94A3B8;
    line-height: 1.3;
}

/* Mobile Navbar Dropdown Adaptation */
@media (max-width: 1024px) {
    .nav-item-dropdown {
        width: 100%;
        text-align: left;
    }
    .nav-dropdown-menu {
        position: static;
        transform: none !important;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 4px 0 8px 12px;
    }
}

/* ==========================================================================
   Home Solutions Tabs Showcase
   ========================================================================== */
.solution-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.solution-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #94A3B8;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
}

.solution-tab-btn.active {
    background: #0B0F1D;
    color: #FFFFFF;
    border-color: #FB4C0A;
    box-shadow: 0 4px 20px rgba(251, 76, 10, 0.35);
}

.solution-tab-pane {
    display: none;
    animation: fadeInTab 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-tab-pane.active {
    display: block;
}

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

.solution-tab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    background: rgba(19, 27, 49, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 44px;
    backdrop-filter: blur(16px);
}

@media (max-width: 900px) {
    .solution-tab-grid {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 30px;
    }
}

.solution-tab-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.solution-tab-heading {
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 14px;
}

.solution-tab-paragraph {
    font-size: 14.5px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-tab-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.solution-tab-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #E2E8F0;
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-card-mockup {
    background: #0B0F1D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 13px;
    color: #FFFFFF;
}

.mockup-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   Vertical Solution Master Page (/soluciones/{slug})
   ========================================================================== */
.solution-hero-section {
    position: relative;
    padding: 150px 0 90px 0;
    background: radial-gradient(circle at 80% 20%, rgba(251, 76, 10, 0.08) 0%, transparent 50%), #070A14;
    overflow: hidden;
}

.solution-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.solution-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.solution-hero-subtitle {
    font-size: 17px;
    color: #94A3B8;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 620px;
}

.solution-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-stat-card {
    text-align: left;
}

.solution-stat-val {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}

.solution-stat-lbl {
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
    line-height: 1.3;
}

.solution-visual-card {
    background: #0B0F1D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.solution-visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-visual-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 22px;
}

.solution-visual-title {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
}

.solution-visual-sub {
    font-size: 12.5px;
    color: #94A3B8;
}

.solution-target-title {
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.solution-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.solution-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #E2E8F0;
}

.solution-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.solution-cta-title {
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.solution-cta-desc {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 16px;
}

/* Features Grid on Solution Page */
.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.solution-feature-card {
    background: #0B0F1D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.solution-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.solution-feature-title {
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.solution-feature-desc {
    font-size: 13.5px;
    color: #94A3B8;
    line-height: 1.6;
}

/* Other Solutions Switcher Grid */
.other-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.other-solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.other-solution-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.other-sol-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.other-sol-info {
    flex: 1;
    min-width: 0;
}

.other-sol-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.other-sol-desc {
    font-size: 11px;
    color: #94A3B8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.other-sol-arrow {
    color: #64748B;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.other-solution-card:hover .other-sol-arrow {
    color: #FFFFFF;
    transform: translateX(3px);
}

