/* ============================================
   CIFRE COMPANY - Main Company Section
   ============================================ */

/* Company Slide - Now part of carousel */
.company-slide .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.company-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0a0e27 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.company-text p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-company {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    border: none;
}

.btn-company:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.btn-company::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-company:hover::after {
    transform: translateX(4px);
}

.company-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.company-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.company-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 255, 0.15));
}

/* Floating animation for illustration */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.company-visual img {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .company-hero {
        padding: 7rem 1.5rem 3rem;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .company-text h1 {
        font-size: 2.4rem;
    }

    .company-text p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .company-visual {
        order: -1;
    }

    .company-visual::before {
        width: 200px;
        height: 200px;
    }
}