/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 120px 0 30px;
    overflow: hidden;
}

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

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.hero-text {
    flex: 0 1 45%;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero .subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--color-white);
    opacity: 0.9;
}

.hero-video {
    flex: 0 1 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 31.25%;
    height: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--color-dark);
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.hero-badges {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.limited-spots {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-white);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero .cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.hero .cta-buttons .btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.hero .cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #7c4dff 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #7c4dff 0%, var(--accent) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero .cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero .cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logos {
    margin-top: var(--spacing-xl);
}

.partner-logos p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-weight: 500;
}

.logos-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.logos-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
    width: max-content;
}

.partner-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    margin-right: var(--spacing-lg);
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.carousel-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:hover svg {
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav.disabled {
    cursor: not-allowed;
    opacity: 0.3;
    pointer-events: none;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--color-white);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        flex: none;
        max-width: 800px;
        text-align: center;
    }

    .hero-video {
        flex: none;
        width: 100%;
        margin-top: var(--spacing-lg);
    }

    .hero .cta-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .feature-badges {
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-video {
        padding-bottom: 56.25%;
    }

    .hero .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero .cta-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .partner-logos p {
        font-size: 1rem;
    }

    .logos-carousel {
        padding: 0 50px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .partner-logo {
        height: 50px;
        margin-right: var(--spacing-md);
    }

    .hero-text {
        padding-top: 0;
    }

    .feature-badges {
        gap: 8px;
        margin: 25px auto var(--spacing-sm);
        justify-content: center;
        padding: 0;
        position: static;
    }

    .feature-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    .hero-badges {
        justify-content: center;
        gap: 8px;
        margin: 25px auto var(--spacing-sm);
        padding: 0;
        position: static;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    .logos-carousel {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .partner-logo {
        height: 40px;
        margin-right: var(--spacing-sm);
    }

    .feature-badges {
        margin: 0 auto 12px;
        gap: 5px;
        top: -5px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 3px 8px;
        border-radius: 12px;
    }

    /* Disable animations for better performance */
    .feature-badge {
        animation: none !important;
        transform: none !important;
    }

    .hero-badges {
        margin: 0 auto 12px;
        gap: 5px;
        top: -5px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 3px 8px;
        border-radius: 12px;
    }

    /* Disable animations for better performance */
    .badge {
        animation: none !important;
        transform: none !important;
    }
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-md);
    width: 100%;
    margin-top: 40px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Add subtle animation to badges */
@keyframes badgeFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-badge:nth-child(1) {
    animation: badgeFloat 3s ease-in-out infinite;
}

.feature-badge:nth-child(2) {
    animation: badgeFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.feature-badge:nth-child(3) {
    animation: badgeFloat 3s ease-in-out infinite;
    animation-delay: 1s;
}

.feature-badge:nth-child(4) {
    animation: badgeFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-badges {
        gap: 8px;
        margin-bottom: var(--spacing-sm);
    }

    .feature-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .feature-badges {
        justify-content: center;
        gap: 6px;
        margin: 20px auto var(--spacing-sm);
    }

    .feature-badge {
        padding: 4px 10px;
        font-size: 0.8rem;
        border-radius: 15px;
    }
} 