/* 2026 Figma refresh */
:root {
    --LayoutContainer: 1110px;
    --SectionGap: 90px;
    --CardRadius: 16px;
}

body {
    margin: 0;
    background: #f7f9f6;
    color: var(--Color-800);
    font-family: "Instrument Sans", sans-serif;
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--LayoutContainer);
    }
}

.styledButton {
    min-height: 52px;
    padding: 5px 6px !important;
    border: 0;
    border-radius: 999px;
    display: inline-grid;
    grid-template-columns: 42px minmax(max-content, 1fr) 42px;
    align-items: center;
    justify-items: center;
    column-gap: 0;
    color: #fff;
    background: var(--Color-700);
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.styledButtonText {
    grid-column: 2;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.styledButtonIcon {
    grid-column: 3;
    justify-self: center;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: var(--Color-700);
    flex: 0 0 auto;
}

.styledButtonIcon img {
    width: 18px;
    height: 15px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.styledButtonNoIcon {
    grid-template-columns: auto;
    padding-right: 32px !important;
    padding-left: 32px !important;
    justify-content: center;
}

.styledButtonNoIcon .styledButtonText {
    grid-column: 1;
}

.styledButtonColorType1 {
    color: var(--Color-800);
    background: var(--Orange);
}

.styledButtonColorType2 {
    color: #fff;
    background: var(--Color-700);
}

.styledButtonColorType3 {
    color: #fff;
    background: transparent;
    border: 1px solid var(--Orange);
}

.styledButtonColorType1 .styledButtonIcon,
.styledButtonColorType2 .styledButtonIcon,
.styledButtonColorType3 .styledButtonIcon {
    background: var(--Color-700);
    border-color: #fff;
}

.styledButton:hover,
.styledButton:focus {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(11, 30, 15, .16);
}

.styledButtonColorType1:hover,
.styledButtonColorType1:focus {
    color: var(--Color-800);
    background: #F5A300;
}

.styledButtonColorType2:hover,
.styledButtonColorType2:focus {
    color: #fff;
    background: var(--Color-800);
}

.styledButtonColorType3:hover,
.styledButtonColorType3:focus {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: var(--Orange);
}

#navBar .site-header-top {
    padding: 28px 0 80px;
}

#navBar .brand-logo {
    width: 64px;
}

#navBar .brand-text {
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
}

#navBar .small-quick-link {
    font-size: 15px;
    opacity: .92;
}

#navBar .header-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

#navBar .nav-pill-wrapper {
    margin-top: -54px;
    position: relative;
    z-index: 5;
}

#navBar .nav-pill-wrapper .nav-pill {
    min-height: 86px;
    border-radius: 999px;
    padding: 15px 18px 15px 28px;
}

#navBar .nav-pill-wrapper .nav-left .nav-pills .nav-link {
    font-size: 16px;
    padding: 13px 18px;
}

#navBar .nav-pill-wrapper .nav-right .cta-btn {
    min-height: 51px;
    padding: 5px 7px 5px 22px;
}

@media (min-width: 1200px) {
    body.has-home-banner #navBar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: transparent;
    }

    body.has-home-banner #navBar .site-header-top {
        background: transparent;
        padding: 28px 0 22px;
    }

    body.has-home-banner #navBar .nav-pill-wrapper {
        background: transparent;
        margin-top: 0;
    }
}

@media (max-width: 1199px) {
    #navBar .site-header-top {
        padding: 18px 0 24px;
    }

    #navBar #headContainer {
        padding: 8px 12px;
    }

    #navBar .brand-logo {
        width: 48px;
    }

    #navBar .brand-text {
        font-size: 14px;
    }

    #navBar .mobile-menu-collapse {
        padding-bottom: 24px;
    }
}

#homePageBanner {
    min-height: 570px;
    margin-top: 0;
    border-radius: 0 0 0 40px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

#homePageBanner .home-banner-container {
    min-height: 570px;
    display: flex;
    align-items: center;
}

#homePageBanner .home-banner-content {
    max-width: 680px;
    padding-top: 150px;
}

#homePageBanner .home-banner-title {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 4.3vw, 76px);
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 700;
}

#homePageBanner .home-banner-line {
    display: block;
    color: #fff !important;
}

@media (max-width: 991px) {
    #homePageBanner {
        min-height: 430px;
        border-radius: 0 0 0 40px;
    }

    #homePageBanner .home-banner-container {
        min-height: 430px;
        align-items: flex-end;
        padding-bottom: 56px;
    }

    #homePageBanner .home-banner-content {
        padding-top: 0;
    }

    #homePageBanner .home-banner-title {
        font-size: 42px;
        line-height: 1.12;
    }

}

#mainActivity {
    margin: -42px 0 var(--SectionGap);
    position: relative;
    z-index: 0;
}

#mainActivity .main-activity-panel {
    background: #fff;
    border-radius: 16px;
    padding: 92px 54px 58px;
    box-shadow: 0 18px 42px rgba(11, 30, 15, .06);
}

#mainActivity .main-activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 260px));
    justify-content: center;
    gap: 28px;
}

#mainActivity .main-activity-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 94px 22px 22px;
    background: #F1F1F1;
    border-radius: 16px;
    color: var(--Color-800);
    position: relative;
}

#mainActivity .main-activity-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Color-300);
    border-radius: 16px 0 16px 0;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}

#mainActivity .main-activity-icon img {
    max-width: 62px;
    max-height: 62px;
    object-fit: contain;
}

#mainActivity .main-activity-content {
    flex: 1 1 auto;
}

#mainActivity .main-activity-content h2 {
    margin: 0 0 14px;
    color: var(--Color-700);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

#mainActivity .main-activity-content p {
    margin: 0;
    color: var(--Color-800);
    font-size: 14px;
    line-height: 1.55;
}

#mainActivity .main-activity-link {
    margin-top: auto;
    width: 100%;
    font-size: 14px !important;
}

@media (max-width: 991px) {
    #mainActivity {
        margin-top: -30px;
    }

    #mainActivity .main-activity-panel {
        padding: 72px 24px 36px;
    }

    #mainActivity .main-activity-grid {
        grid-template-columns: 1fr;
    }

    #mainActivity .main-activity-card {
        min-height: 0;
    }
}

#notificationBar {
    margin: -72px 0 0;
    background: linear-gradient(90deg, var(--Orange) 0%, #F58200 100%);
    border-radius: 0 0 0 40px;
    position: relative;
    z-index: 1;
    padding: 72px 0 0;
    top: auto;
}

#notificationBar .notification-bar-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

#notificationBar .notification-strip {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
    padding: 10px 32px;
    background: transparent;
    border-radius: 0;
}

#notificationBar .notification-message {
    display: flex;
    align-items: center;
    gap: 10px;
}

#notificationBar .notification-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

#notificationBar h2 {
    max-width: none;
    margin: 0;
    color: #0B1E0F;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}

#notificationBar .notification-action {
    min-width: 222px;
}

#contentBanner {
    margin: 0 0 var(--SectionGap);
}

#contentBanner .content-banner-card {
    min-height: 440px;
    display: grid;
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 52px 52px 48px;
    border-radius: 16px;
    color: #fff;
    background: transparent;
}

#contentBanner .content-banner-card::before {
    content: "";
    position: absolute;
    inset: 0 52px 0 0;
    z-index: 0;
    border-radius: 16px;
    background:
        radial-gradient(circle at 96% 78%, rgba(255, 255, 255, .42) 0, rgba(255, 255, 255, .18) 26%, rgba(255, 255, 255, 0) 48%),
        linear-gradient(100deg, var(--Color-800) 0%, var(--Color-700) 38%, var(--Color-500) 70%, var(--Color-400) 100%);
}

#contentBanner .content-banner-copy {
    position: relative;
    z-index: 2;
    max-width: 390px;
}

#contentBanner h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: 0;
}

#contentBanner .content-banner-text {
    color: rgba(255, 255, 255, .94);
    font-size: 18px;
    line-height: 1.5;
}

#contentBanner .content-banner-text p {
    margin: 0 0 18px;
}

#contentBanner .content-banner-text small {
    font-size: inherit;
}

#contentBanner .content-banner-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin-top: 48px;
}

#contentBanner .phoneButton,
#contentBanner .priceButton {
    min-width: 148px;
    min-height: 48px;
    font-size: 14px !important;
    grid-template-columns: 34px minmax(max-content, 1fr) 34px;
}

#contentBanner .phoneButton {
    min-width: 174px;
}

#contentBanner .phoneButton .styledButtonIcon,
#contentBanner .priceButton .styledButtonIcon {
    width: 34px;
    height: 34px;
}

#contentBanner .phoneButton .styledButtonIcon img,
#contentBanner .priceButton .styledButtonIcon img {
    width: 15px;
    height: 13px;
}

#contentBanner .content-banner-media {
    position: relative;
    min-height: 320px;
    z-index: 1;
}

#contentBanner .content-banner-truck {
    width: min(560px, 54vw);
    max-width: none;
    height: auto;
    position: absolute;
    right: -72px;
    top: 50%;
    transform: translateY(-48%);
    filter: drop-shadow(0 28px 24px rgba(11, 30, 15, .30));
}

@media (max-width: 767px) {
    #notificationBar {
        margin-top: -48px;
        margin-bottom: 0;
        padding-top: 48px;
        border-radius: 0 0 0 40px;
    }

    #notificationBar .notification-strip {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        padding: 22px 20px;
        border-radius: 0;
    }

    #notificationBar .notification-bar-container {
        width: 100%;
        max-width: none;
    }

    #notificationBar .notification-message {
        justify-content: center;
    }

    #notificationBar h2 {
        font-size: 20px;
        text-align: center;
    }

    #notificationBar .notification-action {
        align-self: center;
        min-width: 200px;
    }
}

@media (max-width: 991px) {
    #contentBanner .content-banner-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 24px 28px;
        overflow: hidden;
    }

    #contentBanner .content-banner-card::before {
        inset: 0;
    }

    #contentBanner .content-banner-copy {
        max-width: none;
    }

    #contentBanner .content-banner-actions {
        flex-wrap: wrap;
        margin-top: 32px;
        gap: 16px;
    }

    #contentBanner .phoneButton,
    #contentBanner .priceButton {
        min-width: 210px;
    }

    #contentBanner .content-banner-media {
        min-height: 230px;
    }

    #contentBanner .content-banner-truck {
        width: min(500px, 105vw);
        right: -72px;
        top: 52%;
    }
}

@media (max-width: 575px) {
    #contentBanner .content-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    #contentBanner .phoneButton,
    #contentBanner .priceButton {
        width: 100%;
    }
}

#mainPageNews {
    margin-bottom: 0;
}

#mainPageNews .newsBackground {
    width: calc((100vw + var(--LayoutContainer)) / 2);
    min-height: 740px;
    border-radius: 0 120px 120px 0;
    padding-right: 48px;
}

#mainPageNews .container {
    left: 0;
    margin-left: max(24px, calc((100vw - var(--LayoutContainer)) / 2));
}

#mainPageNews .newsCard {
    width: 100%;
    overflow: hidden;
    border-radius: var(--CardRadius);
}

#mainPageNews .cardImg {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

#mainPageNews .newsCard h3 {
    color: var(--Color-700);
    font-size: 22px;
    font-weight: 700;
}

#mainPageNews .card-title {
    color: var(--Color-700) !important;
}

@media (max-width: 767px) {
    #mainPageNews .newsBackground {
        width: 100%;
        min-height: 0;
        border-radius: 0 72px 72px 0;
        padding-right: 0;
    }

    #mainPageNews .container {
        margin-left: auto;
    }
}

#information .container {
    min-height: 510px;
    border-radius: var(--CardRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#information .informationContent {
    max-width: 790px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.55;
}

#career {
    padding: 38px 0 72px;
    border-radius: 0 0 0 120px;
}

#career .careerCard {
    width: 100%;
    border-radius: var(--CardRadius);
}

#career .careerCard h4 {
    color: var(--Color-700);
    font-weight: 700;
}

#faq .container {
    max-width: var(--LayoutContainer);
}

#faq h2 {
    color: var(--Color-700);
    font-weight: 700;
}

#faq h4 {
    max-width: 720px;
    color: var(--Color-600);
    font-size: 20px;
    line-height: 1.45;
}

#footerPage {
    border-radius: 0 120px 0 0;
}

#footerPage .footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

#footerPage h3 {
    font-size: 28px;
    font-weight: 700;
}

#footerPage a:hover,
#footerPage a:focus {
    color: var(--Orange) !important;
}
