﻿.company-page {
    background: #fff;
}

.company-hero {
    max-width: 860px;
    margin-bottom: 42px;
}

.company-kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .65;
    margin-bottom: 12px;
}

.company-hero h1 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
}

.company-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.company-content {
    max-width: 980px;
}

.company-lead {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 36px;
}

.company-block {
    margin-bottom: 36px;
}

    .company-block h2 {
        font-size: 28px;
        font-weight: 750;
        margin-bottom: 14px;
    }

    .company-block p {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
    }

.company-quote {
    margin: 38px 0 22px;
    padding: 28px 32px;
    border-left: 5px solid #111;
    background: #f7f7f7;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.company-badge {
    display: inline-flex;
    padding: 14px 22px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 768px) {
    .company-hero h1 {
        font-size: 32px;
    }

    .company-hero p {
        font-size: 17px;
    }

    .company-lead {
        font-size: 17px;
    }

    .company-quote {
        font-size: 20px;
        padding: 22px;
    }
}

.hdr-top-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.hdr-top-menu-item {
    position: relative;
}

.hdr-top-menu-title {
    display: inline-flex;
    align-items: center;
    height: 32px;
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: all .15s ease;
}

    .hdr-top-menu-title::after {
        content: "▾";
        margin-left: 6px;
        font-size: 11px;
        opacity: .6;
    }

.hdr-top-menu-item:hover .hdr-top-menu-title {
    opacity: 1;
}

.hdr-top-menu-item {
    position: relative;
    padding-bottom: 8px;
}

.hdr-top-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 20px 40px rgba(0,0,0,.12);
    padding: 10px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity .18s ease, visibility .18s ease;
}

.hdr-top-menu-item:hover .hdr-top-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hdr-top-menu-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #222 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: all .15s ease;
}

    .hdr-top-menu-dropdown a:hover {
        background: #f5f7fa;
        color: #000 !important;
    }

.company-page-stores .company-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: none;
}

.company-page-stores .company-hero {
    max-width: 980px;
}

.company-store-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

    .company-store-card h2 {
        font-size: 18px;
        font-weight: 750;
        margin-bottom: 12px;
    }

    .company-store-card p {
        margin: 0 0 8px;
        font-size: 14px;
        line-height: 1.55;
        color: #444;
    }

.company-store-phone {
    font-weight: 700;
    color: #111 !important;
}

@media (max-width: 992px) {
    .company-page-stores .company-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .company-page-stores .company-content {
        grid-template-columns: 1fr;
    }
}