/* =========================================
   Company Page Styles
   ========================================= */

.company-main {
    background: linear-gradient(100deg, rgba(185, 34, 51, 1) 0%, rgba(121, 42, 54, 1) 40%, rgba(223, 29, 49, 1) 100%);
    min-height: 100vh;
    padding-bottom: 140px;
    color: var(--color-white);
}

.company-hero {
    position: relative;
    width: 100%;
    background: transparent;
    color: var(--color-white);
    padding-top: 220px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
}

.company-hero__bg-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.company-hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.company-hero__title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0;
}

.company-menu-section {
    position: relative;
    z-index: 1;
}

.company-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.company-menu-card {
    background-color: var(--color-white);
    border-radius: 20px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #eb3b49;
}

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

.company-menu-card__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .company-hero {
        padding-top: 230px;
        padding-bottom: 150px;
    }

    .company-hero__title {
        font-size: 36px;
    }

    .company-hero__bg-text {
        font-size: 80px;
        top: 50%;
    }

    .company-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .company-menu-card {
        height: 180px;
        padding: 20px;
    }

    .company-menu-card__title {
        font-size: 24px;
    }
}