:root {
    /* New Color Palette with Gradients */
    --gradient-cyan-purple: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    --gradient-lime-cyan: linear-gradient(135deg, #9BCB3C 0%, #06B6D4 100%);
    --gradient-orange-pink: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    --gradient-rainbow: linear-gradient(135deg, #9BCB3C 0%, #06B6D4 25%, #8B5CF6 50%, #EC4899 75%, #F59E0B 100%);
    
    /* Colors */
    --color-cyan: #06B6D4;
    --color-purple: #8B5CF6;
    --color-lime: #9BCB3C;
    --color-orange: #F59E0B;
    --color-pink: #EC4899;
    --color-red: #FF6B6B;
    
    /* Backgrounds */
    --dark-bg: #0a0e27;
    --dark-bg-secondary: #1a1f3a;
    --dark-bg-tertiary: #252b48;
    --teal-bg: #2C7A7B;
    --teal-light: #38B2AC;
    
    /* Text */
    --dark-text: #e4e6eb;
    --dark-text-secondary: #b0b3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor - DESACTIVADO */
#custom-cursor {
    display: none;
}

#cursor-trail {
    display: none;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-rainbow);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-logo .dot {
    color: var(--color-cyan);
}

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

/* Background Effects */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-lime-cyan);
    top: 10%;
    left: 5%;
    filter: blur(100px);
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-cyan-purple);
    bottom: 10%;
    right: 10%;
    filter: blur(120px);
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-orange-pink);
    top: 50%;
    left: 50%;
    filter: blur(100px);
    animation-delay: 10s;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: -1;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid rgba(6, 182, 212, 0.3);
    animation: rotate-ring 10s linear infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

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

.logo-icon svg,
.logo-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
    display: block;
    position: relative;
    z-index: 1;
}

.logo-icon img {
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: normal;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-text .dot {
    color: var(--color-cyan);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-lime-cyan);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--color-cyan);
}

.nav-cta {
    background: var(--gradient-lime-cyan);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--dark-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 2px solid var(--color-cyan);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(6, 182, 212, 0.1);
        transform: translateX(10px);
    }

    .nav-cta.desktop-only {
        display: none;
    }

    .mobile-only {
        display: block !important;
    }

    .nav-cta-mobile {
        background: var(--gradient-lime-cyan);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .nav-cta-mobile:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

.gradient-text-animated {
    background: var(--gradient-lime-cyan);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.gradient-text-rainbow {
    background: var(--gradient-rainbow);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 5s linear infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

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

@keyframes rainbowShift {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-lime-cyan);
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--color-cyan);
}

.btn-secondary:hover {
    background: var(--color-cyan);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.floating-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-rainbow);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: floatingLogoText 6s ease-in-out infinite, rainbowShift 4s linear infinite;
    filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.6));
    letter-spacing: 3px;
}

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

.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 450px;
    height: 450px;
}

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

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

.orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
}

.dot-1 { 
    background: var(--color-lime); 
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.dot-2 { 
    background: var(--color-cyan); 
    top: auto; 
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%);
}

.dot-3 { 
    background: var(--color-orange); 
    top: 50%; 
    left: 0; 
    transform: translateY(-50%); 
}

.dot-4 { 
    background: var(--color-pink); 
    top: 50%; 
    left: auto; 
    right: 0; 
    transform: translateY(-50%); 
}

/* Services Section New */
.how-we-do-it-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-bg);
    overflow: hidden;
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-text-secondary);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-new {
    background: var(--teal-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-new:hover {
    background: var(--teal-light);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(56, 178, 172, 0.4);
    border-color: var(--color-cyan);
}

.service-icon-new {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.service-card-new h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-arrow {
    font-size: 1.5rem;
    color: white;
    margin-top: auto;
    align-self: flex-end;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-arrow {
    transform: translateX(10px);
}

/* Service Form Modal */
.service-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.97);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.service-form-modal.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.service-form-modal.closing {
    opacity: 0;
}

/* Success notification */
.form-success-notification {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-lime-cyan);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(155, 203, 60, 0.4);
    animation: slideInRight 0.4s ease;
    z-index: 10;
}

.form-success-notification i {
    font-size: 1.5rem;
}

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

.service-form-container {
    background: rgba(30, 41, 59, 0.95);
    border-radius: 20px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 198, 169, 0.15);
    border: 2px solid #9BCB3C;
    animation: modalSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.close-form-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #FF6B6B;
    color: #FF6B6B;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.close-form-btn:hover {
    background: #FF6B6B;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
}

.form-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: 90vh;
    max-height: 800px;
}

.form-left-panel {
    background: #111D32;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
    position: relative;
}

.form-left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.form-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.form-brand h2 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 0;
}

.form-service-info h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.form-service-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.form-benefits {
    background: rgba(155, 203, 60, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #9BCB3C;
    backdrop-filter: blur(10px);
}

.form-benefits h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-benefits i {
    color: #9BCB3C;
    font-size: 1.1rem;
}

.form-right-panel {
    background: #FFFFFF;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.form-embed-wrapper {
    width: 100%;
    height: 100%;
    min-height: 700px;
    position: relative;
    opacity: 0;
    animation: fadeInForm 0.4s ease 0.2s forwards;
    background: #FFFFFF;
    border-radius: 0 20px 20px 0;
    padding: 2rem;
}

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

.form-embed-wrapper iframe {
    display: block;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--dark-bg);
    padding: 3rem;
}

.form-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--teal-bg);
}

.form-placeholder p {
    color: var(--dark-text-secondary);
}

/* How We Do It Video Section */
.how-we-do-it-section.video-section {
    background: var(--dark-bg-secondary);
}

.how-title {
    margin-bottom: 4rem;
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.how-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.6);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.step-item:hover {
    border-color: var(--color-cyan);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-cyan);
}

.step-info p {
    color: var(--dark-text-secondary);
    line-height: 1.6;
}

.how-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 5rem;
    color: var(--color-cyan);
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.8));
}

.video-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--dark-text-secondary);
    font-style: italic;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-bg-secondary);
    overflow: hidden;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-cyan);
    background: rgba(6, 182, 212, 0.05);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.2rem;
    color: var(--dark-text-secondary);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-dark {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-bg);
    overflow: hidden;
}

/* Section Titles with Different Effects */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.highlight-green {
    color: var(--color-lime);
    filter: drop-shadow(0 0 15px rgba(155, 203, 60, 0.6));
}

.highlight-cyan {
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6));
}

/* Value Proposition */
.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-lime-cyan);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 0.3;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2) drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card p {
    color: var(--dark-text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tool-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cyan-purple);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.tool-card:hover::before {
    opacity: 0.2;
}

.tool-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: none;
}

.card-icon {
    font-size: 3.5rem;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
    transition: color 0.3s ease;
}

.tool-card:hover .card-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

/* 3D Tilt Cards */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-3d.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
    background: var(--dark-bg-secondary);
}

/* New About Content Grid with Accordion */
.about-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* About Accordion Styles */
.about-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-accordion-item {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-accordion-item:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateX(5px);
}

.about-accordion-item.active {
    border-color: var(--color-cyan);
    background: rgba(6, 182, 212, 0.05);
}

.about-accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark-text);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-accordion-btn:hover {
    background: rgba(6, 182, 212, 0.05);
}

.accordion-title {
    text-align: left;
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-icon {
    font-size: 1rem;
    color: var(--color-cyan);
    transition: transform 0.3s ease;
}

.about-accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.about-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.about-accordion-item.active .about-accordion-content {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.about-accordion-content p {
    color: var(--dark-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-accordion-content p:last-child {
    margin-bottom: 0;
}

.about-accordion-content strong {
    color: var(--color-lime);
    font-weight: 600;
}

/* Old about-content for backward compatibility */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
}

.lead-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-cyan);
}

.about-text strong {
    color: var(--color-lime);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-text-secondary);
}

/* Chat Mockup */
.chat-mockup {
    background: rgba(26, 31, 58, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chat-header {
    background: var(--gradient-lime-cyan);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-name {
    font-weight: 600;
    color: white;
}

.chat-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.chat-messages {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    max-width: 80%;
    animation: messageSlide 0.4s ease;
}

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

.chat-message.bot {
    background: var(--gradient-cyan-purple);
    color: white;
    align-self: flex-start;
}

.chat-message.user {
    background: rgba(6, 182, 212, 0.2);
    color: var(--dark-text);
    align-self: flex-end;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-bg);
    overflow: hidden;
}

.pricing-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-text-secondary);
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid transparent;
    color: var(--dark-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn.active {
    background: var(--gradient-lime-cyan);
    color: white;
    border-color: transparent;
}

.discount-badge {
    background: var(--color-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-card.recommended {
    border-color: var(--color-lime);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(155, 203, 60, 0.3);
}

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

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-lime-cyan);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-subtitle {
    color: var(--dark-text-secondary);
    font-size: 1rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency-small {
    font-size: 1.2rem;
    color: var(--dark-text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    color: var(--color-cyan);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-text);
}

.period {
    font-size: 1.2rem;
    color: var(--dark-text-secondary);
}

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

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-text-secondary);
}

.pricing-features i {
    color: var(--color-lime);
    font-size: 1.1rem;
}

.pricing-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-lime);
    color: var(--color-lime);
}

.btn-outline:hover {
    background: var(--color-lime);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 203, 60, 0.4);
}

.btn-filled {
    background: var(--gradient-lime-cyan);
    color: white;
    border: none;
}

.btn-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.btn-outline-red {
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
}

.btn-outline-red:hover {
    background: var(--color-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* View Details Button */
.view-details-btn {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--color-cyan);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.view-details-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--color-cyan);
}

.view-details-btn i {
    transition: transform 0.3s ease;
}

.pricing-card.details-open .view-details-btn i {
    transform: rotate(180deg);
}

/* Pricing Details Dropdown */
.pricing-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.pricing-card.details-open .pricing-details {
    max-height: 800px;
}

.pricing-details h4 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--color-cyan);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.pricing-details ul {
    list-style: none;
    padding: 1.5rem;
}

.pricing-details li {
    padding: 0.8rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.pricing-details li:last-child {
    border-bottom: none;
}

.pricing-details i {
    color: var(--color-lime);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-details strong {
    color: var(--dark-text);
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--dark-text-secondary);
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--dark-bg);
    overflow: hidden;
}

.reviews-title {
    margin-bottom: 1rem;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: var(--color-orange);
    font-size: 1.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
}

.reviews-count {
    color: var(--dark-text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.review-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: var(--color-orange);
    font-size: 1.2rem;
}

.review-text {
    color: var(--dark-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-lime-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.review-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-cyan);
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Clients Carousel */
.clients-carousel-section {
    position: relative;
    padding: 4rem 0;
    background: var(--dark-bg-secondary);
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text-secondary);
    transition: all 0.3s ease;
}

.client-logo:hover .client-name {
    background: var(--gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Qualified Companies Section */
.qualified-companies-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-bg-secondary) 0%, var(--teal-bg) 100%);
    overflow: hidden;
}

.qualified-companies-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.qualified-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.qualified-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-lime {
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qualified-subtitle {
    font-size: 1.3rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.qualified-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-orange-pink);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.qualified-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.qualified-cta i {
    font-size: 1.3rem;
}

/* FAQ Section */
.faq-accordion-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2C7A7B 0%, #1a1f3a 100%);
    overflow: hidden;
}

.faq-title {
    color: white;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.highlight-text {
    color: var(--teal-light);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal-light);
    animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%, 100% { width: 0%; left: 50%; }
    50% { width: 100%; left: 0%; }
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(56, 178, 172, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(56, 178, 172, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.accordion-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item:hover {
    border-color: var(--teal-light);
    box-shadow: 0 10px 30px rgba(56, 178, 172, 0.2);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(56, 178, 172, 0.1);
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.accordion-icon {
    color: var(--teal-light);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 800px; /* Aumentado para acomodar respuestas más largas (3-4 párrafos) */
}

.accordion-content p {
    padding: 0 2rem 1.5rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.accordion-content strong {
    color: var(--teal-light);
}

/* Epic CTA Section */
.epic-cta-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--dark-bg);
    overflow: hidden;
}

.epic-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.cta-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--color-lime);
    top: -200px;
    left: 10%;
}

.cta-glow-2 {
    width: 600px;
    height: 600px;
    background: var(--color-cyan);
    bottom: -250px;
    right: 10%;
    animation-delay: 2s;
}

.cta-glow-3 {
    width: 400px;
    height: 400px;
    background: var(--color-purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.epic-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.epic-cta-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.epic-cta-subtitle {
    font-size: 1.5rem;
    color: var(--dark-text-secondary);
    margin-bottom: 3rem;
}

.epic-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f1629 0%, #1a1f3a 100%);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-section .logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-section .logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 203, 60, 0.1) 0%, transparent 70%);
    animation: pulse-ring-footer 2s ease-in-out infinite;
    z-index: -1;
}

.footer-logo-section .logo-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px solid rgba(155, 203, 60, 0.3);
    animation: rotate-ring 10s linear infinite;
    z-index: -1;
}

@keyframes pulse-ring-footer {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.footer-logo-section .logo-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(155, 203, 60, 0.5));
    display: block;
    position: relative;
    z-index: 1;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-lime-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 2px;
}

.footer-brand-name .dot {
    color: var(--color-cyan);
}

.footer-tagline {
    color: var(--dark-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: white;
}

.social-facebook {
    background: #1877F2;
}

.social-facebook:hover {
    background: #145dbf;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-instagram:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(221, 42, 123, 0.4);
}

.social-linkedin {
    background: #0A66C2;
}

.social-linkedin:hover {
    background: #084d94;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(10, 102, 194, 0.4);
}

.social-youtube {
    background: #FF0000;
}

.social-youtube:hover {
    background: #cc0000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.social-whatsapp {
    background: #25D366;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.social-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    }
}

.footer-title {
    color: var(--color-orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--color-cyan);
    font-size: 1.1rem;
}

.footer-contact-item a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--color-lime);
}

.footer-cta-text {
    color: var(--dark-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-cta-button {
    background: var(--gradient-lime-cyan);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.footer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 203, 60, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
}

.footer-bottom p {
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-lime);
}

/* Scroll Reveal Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Touch Improvements */
button, a {
    -webkit-tap-highlight-color: rgba(6, 182, 212, 0.2);
    touch-action: manipulation;
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 100%;
}

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

    .hero-visual {
        height: 400px;
        display: block !important;
        margin: 2rem auto 0;
    }

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

    .pricing-card.recommended {
        transform: scale(1);
    }

    .how-content {
        grid-template-columns: 1fr;
    }

    .form-content-wrapper {
        grid-template-columns: 1fr;
    }

    .form-left-panel {
        display: block;
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
        background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    }

    .form-left-panel .form-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-left-panel .form-brand h2 {
        font-size: 1.5rem;
        margin: 0;
    }

    .form-left-panel .form-service-info,
    .form-left-panel .form-benefits {
        display: none;
    }

    .service-form-container {
        width: 95%;
        max-height: 85vh;
    }

    .form-embed-wrapper {
        min-height: 600px;
    }

    .form-success-notification {
        top: 1rem;
        right: 5%;
        left: 5%;
        width: 90%;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    /* Tablet Optimization */
    .container {
        padding: 0 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .accordion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* Pricing Tablet */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    /* Services Tablet */
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Tools Tablet */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Reviews Tablet */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Hero Tablet */
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text .subtitle {
        font-size: 1.3rem;
    }

    /* Section Titles Tablet */
    .section-title {
        font-size: 2.5rem;
    }

    /* Modal Tablet */
    .form-content-wrapper {
        grid-template-columns: 1fr;
    }

    .form-left-panel {
        display: block;
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
        background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    }

    .form-left-panel .form-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .form-left-panel .form-brand h2 {
        font-size: 1.5rem;
        margin: 0;
    }

    .form-left-panel .form-service-info,
    .form-left-panel .form-benefits {
        display: none;
    }

    .service-form-container {
        width: 95%;
        max-height: 90vh;
    }
}

/* Medium devices optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .hero-visual {
        height: 350px;
        display: block !important;
        margin: 2rem auto 0;
    }

    /* Ajustar tamaño de elementos en tablet */
    .floating-logo-text {
        font-size: 5rem;
    }

    .orbit-1 {
        width: 300px;
        height: 300px;
    }

    .orbit-2 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    #custom-cursor, #cursor-trail {
        display: none;
    }

    /* Header Mobile */
    header {
        padding: 1rem 0;
    }

    nav {
        padding: 0 1.5rem;
    }

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

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon svg,
    .logo-icon img {
        width: 30px;
        height: 30px;
    }

    /* Nav links should be hidden but available for active state */
    /* Removed display: none to allow mobile menu to work */

    .mobile-menu-toggle {
        display: block;
    }

    .nav-cta.desktop-only {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Hero Mobile */
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    /* Mostrar animación IA en móvil */
    .hero-visual {
        height: 300px;
        display: block !important;
        margin: 2rem auto 0;
    }

    .floating-logo-text {
        font-size: 4rem;
    }

    .orbit-1 {
        width: 250px;
        height: 250px;
    }

    .orbit-2 {
        width: 320px;
        height: 320px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-text .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 3rem 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .section-dark, .services-section {
        padding: 3rem 1.5rem;
    }

    /* About Section Mobile - NEW ACCORDION */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }

    .about-accordion-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .about-accordion-content {
        font-size: 0.95rem;
    }

    .about-accordion-item.active .about-accordion-content {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    /* Value Proposition Mobile */
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        font-size: 3rem;
    }

    .value-card h3 {
        font-size: 1.5rem;
    }

    .value-card p {
        font-size: 1rem;
    }

    /* Services Grid Mobile */
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card-new {
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .service-card-new h3 {
        font-size: 1.1rem;
        text-align: center;
    }

    .service-arrow {
        align-self: center;
        margin-top: 1rem;
    }

    /* Tools Grid Mobile */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

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

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    .chat-mockup {
        max-width: 100%;
    }

    /* How We Do It Mobile */
    .how-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .step-list {
        gap: 1rem;
    }

    .step-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .step-info h4 {
        font-size: 1.2rem;
    }

    .step-info p {
        font-size: 0.95rem;
    }

    .video-wrapper {
        max-width: 100%;
    }

    /* Pricing Mobile */
    .pricing-section {
        padding: 3rem 1.5rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .toggle-btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .plan-name {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 3rem;
    }

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

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .pricing-btn {
        font-size: 1rem;
        padding: 1rem;
    }

    .view-details-btn {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .pricing-details li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    /* Reviews Mobile */
    .reviews-section {
        padding: 3rem 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    /* Carousel Mobile */
    .clients-carousel-section {
        padding: 2rem 0;
    }

    .client-logo {
        min-width: 150px;
        height: 80px;
    }

    .client-name {
        font-size: 1.2rem;
    }

    /* FAQ Mobile */
    .faq-accordion-section {
        padding: 3rem 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .accordion-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .accordion-header {
        padding: 1rem 1.5rem;
    }

    .accordion-title {
        font-size: 1rem;
        padding-right: 2rem;
    }

    .accordion-content p {
        padding: 0 1.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Epic CTA Mobile */
    .epic-cta-section {
        padding: 4rem 1.5rem;
    }

    .epic-cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .epic-cta-subtitle {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .epic-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Footer Mobile */
    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-name {
        font-size: 1.8rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    /* Qualified Companies Section Mobile */
    .qualified-companies-section {
        padding: 4rem 1rem;
    }

    .qualified-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .qualified-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .qualified-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .qualified-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }


    .footer-contact-item {
        font-size: 0.85rem;
    }

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

    .footer-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Modal Mobile Improvements */
    .service-form-modal {
        padding: 0.5rem;
    }

    .service-form-container {
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 15px;
        margin: 0.5rem;
    }

    .form-content-wrapper {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }

    .form-left-panel {
        display: block !important;
        padding: 1.5rem;
        min-height: auto;
        border-radius: 15px 15px 0 0;
        background: #00C6A9;
        position: relative;
    }
    
    .form-left-panel::before {
        border-radius: 15px 15px 0 0;
    }

    .form-left-panel .form-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .form-left-panel .form-brand h2 {
        font-size: 1.3rem;
        margin: 0;
    }

    .form-left-panel .form-brand .logo-icon img {
        width: 40px;
        height: 40px;
    }

    .form-left-panel .form-service-info,
    .form-left-panel .form-benefits {
        display: none;
    }

    .form-benefits {
        display: none;
    }

    .form-right-panel {
        border-radius: 15px;
    }

    .form-embed-wrapper {
        min-height: 600px;
    }

    .close-form-btn {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .form-success-notification {
        top: 1rem;
        right: 5%;
        left: 5%;
        width: 90%;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
}