/* ================= COMPANY DETAILS ================= */

#company-details {
    background: #f6f4ef;
    padding: 100px 20px 80px;
}

/* ---------- BRAND OUTSIDE ---------- */

.company-brand-outside {
    max-width: 1100px;
    margin: 0 auto 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #4b1c5c;
}

/* ---------- MAIN CARD ---------- */

#company-details .talk-container {
    max-width: 1100px;
    margin: 0 auto 36px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;

    padding: 56px 64px;

    background: #1A061F;
    border-radius: 28px;
    color: #e9eef3;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* ---------- LEFT ---------- */

#company-details .section-label {
    color: #ffffff;
    margin-bottom: 10px;
}

#company-details .talk-left p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

#company-details .company-data {
    margin-top: 16px;
    font-size: 14px;
    color: #c9d3dd;
}

/* ---------- SOCIALS INSIDE CARD ---------- */

.company-socials-inside {
    margin-top: 28px;
    display: flex;
    gap: 14px;
}

.company-socials-inside a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    color: #ffffff;
    text-decoration: none;

    font-size: 18px;
    line-height: 1;
    padding: 0;

    transition: transform 0.2s ease, background 0.2s ease;
}

.company-socials-inside a span {
    display: block;
    line-height: 1;
}

.company-socials-inside a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ---------- RIGHT ---------- */

#company-details .talk-right h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* ---------- BANK BOX ---------- */

#company-details .bank {
    background: #24102C;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
}

#company-details .bank strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
}

/* ---------- REGISTRY LOGOS ---------- */

.registry-link {
    display: inline-block;
    margin-bottom: 12px;
}

.registry-logo {
    display: block;
    max-width: 100%;
}

.registry-logo--gov {
    height: 52px;
}


.registry-logo--eu {
    height: 30px;
}

/* ---------- QUICK LINKS HORIZONTAL ---------- */

.company-links-horizontal {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 10px;

    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    font-size: 14px;
}

.company-links-horizontal strong {
    margin-right: 10px;
}

.company-links-horizontal a {
    color: #4b1c5c;
    text-decoration: none;
    font-weight: 500;
}

.company-links-horizontal a:hover {
    text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    #company-details .talk-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .company-links-horizontal {
        justify-content: flex-start;
    }

}
/* ---------- COMPANY ROWS WITH ICONS ---------- */

.company-row {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #e9eef3;
}

.company-row img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

.company-row span {
    display: block;
}
/* ================= MOBILE FIX: COMPANY DETAILS ================= */
@media (max-width: 768px) {

    #company-details {
        padding: 40px 14px 40px !important;
    }

    .company-brand-outside {
        font-size: 22px !important;
        letter-spacing: 1px !important;
        margin: 0 auto 14px !important;
        text-align: left;
    }

    #company-details .talk-container {
        grid-template-columns: 1fr !important;
        gap: 22px !important;

        padding: 22px 18px !important;
        border-radius: 18px !important;
        margin-bottom: 22px !important;
    }

    #company-details .talk-right h2 {
        font-size: 18px !important;
        margin-bottom: 14px !important;
    }

    #company-details .bank {
        padding: 16px 16px !important;
        border-radius: 14px !important;
        margin-bottom: 14px !important;
    }

    .company-row {
        font-size: 14px !important;
        gap: 10px !important;
        margin-bottom: 10px !important;


        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .company-row span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .registry-logo--gov {
        height: 44px !important;
    }

    .registry-logo--eu {
        height: 26px !important;
    }

    .company-socials-inside {
        margin-top: 18px !important;
        gap: 12px !important;
        flex-wrap: wrap;
    }

    .company-links-horizontal {
        padding-top: 6px !important;
        font-size: 13px !important;
        gap: 10px !important;
    }

}


