* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-width: 320px;
    color: #333;
    background: #f7f7f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ff7a00;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-wrap {
    width: 1280px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 50;
    height: 120px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.brand {
    display: flex;
    align-items: center;
    width: 245px;
    flex: 0 0 auto;
}

.brand img {
    width: 245px;
    max-height: 90px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 42px;
    color: #2f3035;
    font-size: 16px;
    font-weight: 600;
}

.nav-menu > a {
    padding: 44px 0;
    transition: color .2s ease;
}

.nav-menu > a.active,
.nav-menu > a:hover {
    color: #ff7a00;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 58px;
}

.nav-btn,
.nav-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 32px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    line-height: 32px;
}

.nav-btn {
    color: #fff !important;
    background: #ff7a00;
}

.nav-btn-outline {
    color: #36383d !important;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: #333;
    transition: transform .2s ease, opacity .2s ease;
}

@media (min-width: 769px) {
    .site-header,
    .header-inner {
        height: 120px;
    }

    .brand {
        width: 245px;
    }

    .brand img {
        width: 245px;
        max-height: 90px;
    }

    .hamburger {
        display: none !important;
    }

    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 42px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu > a {
        padding: 44px 0;
        border-bottom: 0;
    }
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-section {
    min-height: 40vh;
}

.page-banner {
    padding:40px 0 0;
    background: #f7f7f7;
}

.page-banner img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    color: #36383d;
    cursor: pointer;
}

.user-dropdown-menu {
    position: absolute;
    top: 38px;
    right: 0;
    min-width: 142px;
    padding: 8px 0;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.user-dropdown-item .glyphicon {
    width: 14px;
    color: #aaa;
    font-size: 13px;
    text-align: center;
}

.user-dropdown-item:hover {
    color: #ff7a00;
    background: #fff7ef;
}

.user-dropdown-item:hover .glyphicon {
    color: #ff7a00;
}

.user-dropdown-divider {
    height: 1px;
    margin: 6px 0;
    background: #f0f0f0;
}

.site-footer {
    padding: 76px 0 48px;
    background: #f7f7f7;
    color: #8e8e8e;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.55fr .75fr .75fr .75fr 1fr;
    gap: 62px;
    align-items: start;
}

.footer-brand {
    width: 245px;
    margin-bottom: 30px;
}

.footer-about p {
    max-width: 345px;
    margin: 0;
    color: #8d8d8d;
    font-size: 15px;
    line-height: 2;
}

.footer-col h4 {
    margin: 5px 0 26px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.footer-col a,
.footer-col p {
    display: block;
    margin: 0 0 12px;
    color: #858585;
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #ff7a00;
}

.footer-records {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
    color: #b0b0b0;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}
.footer-badges a{
    padding:7px 10px;
    background: #fff;
    display: flex;
    border-radius: 10px;
    color: #454545;
}
.footer-badges a img{
    width:20px;
    height: 20px;
    margin-right: 5px;
}
.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 6px;
    background: #fff;
    color: #8b8b8b;
    font-size: 13px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.float-service-btn {
    position: fixed;
    right: 38px;
    bottom: 42px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ffb139 0%, #eb9320 100%);
    box-shadow: 0 12px 26px rgba(235, 147, 32, .38);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.float-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(235, 147, 32, .44);
}

.float-service-btn .glyphicon {
    font-size: 24px;
}

.float-service-modal {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2100;
    display: none;
}

.float-service-modal.open {
    display: block;
}

.float-service-dialog {
    width: 300px;
    max-width: calc(100vw - 32px);
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.float-service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 0 14px;
    color: #fff;
    background: #e99a25;
    font-size: 14px;
    font-weight: 600;
}

.float-service-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.float-service-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 28px 25px;
}

.float-service-body img {
    width: 210px;
    height: 210px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .site-header,
    .header-inner {
        height: 92px;
    }

    .brand,
    .brand img {
        width: 190px;
    }

    .nav-menu {
        gap: 24px;
        font-size: 15px;
    }

    .nav-actions {
        margin-left: 24px;
        gap: 12px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .site-wrap {
        max-width: calc(100% - 28px);
    }

    .float-service-btn {
        right: 18px;
        bottom: 22px;
        width: 54px;
        height: 54px;
    }

    .float-service-modal {
        right: 18px;
        bottom: 88px;
        left: 18px;
    }

    .float-service-dialog {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
    }

    .site-header,
    .header-inner {
        height: 72px;
    }

    .brand,
    .brand img {
        width: 148px;
        max-height: 54px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 24px 22px;
        background: #fff;
        box-shadow: 0 14px 26px rgba(0, 0, 0, .08);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > a {
        padding: 12px 0;
        border-bottom: 1px solid #f4f4f4;
    }

    .page-banner {
        padding-top: 18px;
    }

    .nav-actions {
        margin: 14px 0 0;
    }

    .user-dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .user-dropdown:hover .user-dropdown-menu {
        display: none;
    }

    .user-dropdown.open .user-dropdown-menu {
        display: block;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-about {
        grid-column: auto;
    }

    .site-footer {
        padding: 34px 0 24px;
    }

    .footer-brand {
        width: 150px;
        margin-bottom: 14px;
    }

    .footer-about p {
        max-width: none;
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-col:not(.footer-contact) {
        display: none;
    }

    .footer-col h4 {
        font-size: 16px;
        margin: 0 0 10px;
    }

    .footer-col a,
    .footer-col p {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .footer-records {
        margin-top: 22px;
        justify-content: flex-start;
        gap: 8px 14px;
        font-size: 12px;
        line-height: 1.7;
    }

    .footer-records span:nth-child(n+3),
    .footer-badges {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-wrap {
        max-width: calc(100% - 24px);
    }

    .site-header,
    .header-inner {
        height: 64px;
    }

    .brand,
    .brand img {
        width: 136px;
        max-height: 50px;
    }

    .nav-menu {
        top: 64px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-banner {
        padding-top: 14px;
    }

    .footer-brand {
        width: 142px;
    }
}
