@charset "UTF-8";
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-primary: #00b0f0;
    --color-primary-dark: #0088b9;
    --color-secondary-light: #2920a0;
    --color-secondary: #333333;
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-text-light: #3a3a3a;
    --color-border: #dadada;
    --accent-background-color: #f1f2f4;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #da2127;
    --font-family-main: 'Roboto', sans-serif;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
@media (max-width: 1500px) {
    :root {
        --container-padding: 3%;
    }
}
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-main);
}

body {
    margin: 0;
    scroll-behavior: smooth;
    background-color: #fff;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-family: var(--font-family-main);
}

ul {
    padding-left: 20px;
}

.site-container {
    min-height: 400px;
    min-height: 100vh;
    margin-top: 124px;
}
@media (max-width: 1024px) {
    .site-container {
        margin-top: 65px;
    }
}

.container {
    max-width: var(--page-max-width);
    margin: 0 auto;
}

.is-hidden {
    display: none !important;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.exp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-secondary);
    font-family: var(--font-family-main);
    transition: all 0.3s ease;
}
.exp-header.exp-header--compact .exp-header__top {
    padding: 8px 0;
}
.exp-header.exp-header--compact .exp-header__bottom {
    padding: 8px 0;
}
.exp-header.exp-header--compact .exp-header__logo-svg {
    height: 32px;
}
.exp-header__top {
    border-bottom: 1px solid var(--color-primary);
    padding: 12px 0;
    transition: padding 0.3s ease;
}
.exp-header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.exp-header__logo a {
    display: flex;
    align-items: center;
}
.exp-header__logo-svg {
    height: 40px;
    width: auto;
    max-width: 100%;
    transition: height 0.3s ease;
}
.exp-header__actions {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1024px) {
    .exp-header__actions {
        display: none;
    }
}
.exp-header__action-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.exp-header__action-link:hover {
    color: var(--color-primary);
}
.exp-header__mobile-actions-top {
    display: none;
    align-items: center;
    gap: 16px;
}
@media (max-width: 1024px) {
    .exp-header__mobile-actions-top {
        display: flex;
    }
}
.exp-header__mobile-action-top {
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px;
    transition: color 0.3s ease;
}
.exp-header__mobile-action-top:hover {
    color: var(--color-primary);
}
.exp-header__mobile-search-top {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exp-header__mobile-search-top:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}
.exp-header__user-icon {
    width: 20px;
    height: 20px;
}
.exp-header__bottom {
    position: relative;
}
@media (max-width: 1024px) {
    .exp-header__bottom {
        display: none;
    }
}
.exp-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex: 1;
    padding: 20px 0;
    transition: padding 0.3s ease;
}
.exp-header--compact .exp-header__nav {
    padding: 8px 0;
}
.exp-header__nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}
.exp-header__nav-link:hover {
    color: var(--color-primary);
}
.exp-header__nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}
.exp-header__dropdown {
    position: relative;
}
.exp-header__dropdown:hover .exp-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.exp-header__dropdown-arrow {
    transition: transform 0.3s ease;
}
.exp-header__dropdown:hover .exp-header__dropdown-arrow {
    transform: rotate(180deg);
}
.exp-header__dropdown-menu {
    position: fixed;
    top: var(--header-height, 100px);
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}
.exp-header__dropdown-container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 40px var(--container-padding);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.exp-header__dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.exp-header__dropdown-title {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}
.exp-header__dropdown-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}
.exp-header__dropdown-link:hover {
    color: var(--color-primary);
}
.exp-header__search-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-main);
    margin-left: auto;
}
.exp-header__search-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .exp-header__search-btn {
        display: none;
    }
}
.exp-header__search-icon {
    width: 18px;
    height: 18px;
}
.exp-header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
@media (max-width: 1024px) {
    .exp-header__mobile-toggle {
        display: flex;
    }
}
@media (max-width: 1024px) {
    .exp-header__bottom .exp-header__mobile-toggle {
        display: none;
    }
}
.exp-header__hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.exp-header__mobile-toggle.active .exp-header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.exp-header__mobile-toggle.active .exp-header__hamburger-line:nth-child(2) {
    opacity: 0;
}
.exp-header__mobile-toggle.active .exp-header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.exp-header__mobile-search-btn {
    display: none;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-main);
}
@media (max-width: 1024px) {
    .exp-header__mobile-search-btn {
        display: flex;
    }
}
@media (max-width: 768px) {
    .exp-header__mobile-search-btn {
        display: none;
    }
}
.exp-header__mobile-search-btn:hover {
    background: var(--color-primary-dark);
}
.exp-header__search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.9); */
    z-index: 2000;
    max-height: 0;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.exp-header__search-overlay.active {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
}
.exp-header__search-container {
    max-width: 800px;
    margin: 150px auto 0;
    padding: 0 var(--container-padding);
}
.exp-header__search-input-wrapper {
    position: relative;
    padding: 10px 0;
    margin-bottom: 10px;
}
.exp-header__search-input-wrapper::before {
    content: '';
    background-color: var(--color-secondary);
    width: 100vw;
    height: calc(100% + 70px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.exp-header__search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.exp-header__search-input-icon:hover {
    color: var(--color-primary);
}
.exp-header__search-input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-family: var(--font-family-main);
    background: var(--color-white);
    outline: none;
}
.exp-header__search-input::-moz-placeholder {
    color: #999;
}
.exp-header__search-input:-ms-input-placeholder {
    color: #999;
}
.exp-header__search-input::placeholder {
    color: #999;
}
.exp-header__search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}
.exp-header__search-close:hover {
    color: var(--color-primary);
}
.exp-header__search-results {
    background: var(--color-white);
    border-radius: 12px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.exp-header__search-initial {
    display: block;
}
.exp-header__search-dynamic {
    display: none;
}
.exp-header__search-dynamic.active {
    display: block;
}
.exp-header__search-section {
    padding: 20px;
}
.exp-header__search-section:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}
.exp-header__search-section-title {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}
.exp-header__search-result {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--color-text);
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-bottom: 4px;
}
.exp-header__search-result:hover {
    background-color: var(--accent-background-color);
}
.exp-header__search-result-image {
    width: 48px;
    height: 48px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.exp-header__search-result-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-width: 0;
}
.exp-header__search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 4px 0;
    line-height: 1.3;
}
.exp-header__search-result-description {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exp-header__search-result--simple .exp-header__search-result-title {
    margin: 0;
}
.exp-header__search-loading {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 14px;
}
.exp-header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-secondary);
    z-index: 1500;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.exp-header__mobile-menu.active {
    transform: translateX(0);
}
@media (min-width: 1025px) {
    .exp-header__mobile-menu {
        display: none;
    }
}
.exp-header__mobile-logo {
    padding: 20px var(--container-padding);
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.exp-header__mobile-logo a {
    display: inline-block;
    max-width: calc(100% - 60px);
}
.exp-header__mobile-logo-svg {
    height: 35px;
    width: auto;
    max-width: 280px;
}
.exp-header__mobile-close {
    position: absolute;
    top: 20px;
    right: var(--container-padding);
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    transition: color 0.3s ease;
}
.exp-header__mobile-close:hover {
    color: var(--color-primary);
}
.exp-header__mobile-close svg {
    width: 24px;
    height: 24px;
}
.exp-header__mobile-container {
    /* padding: 20px var(--container-padding) 40px;
    max-height: 100vh;
    overflow-y: auto; */
    padding: 20px var(--container-padding) 40px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.exp-header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-primary);
}
.exp-header__mobile-action {
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    transition: color 0.3s ease;
}
.exp-header__mobile-action:hover {
    color: var(--color-primary);
}
.exp-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.exp-header__mobile-nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}
.exp-header__mobile-nav-link:hover {
    color: var(--color-primary);
}
.exp-header__mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.exp-header__mobile-dropdown-link-main {
    flex: 1;
    margin: 0;
    border-bottom: none;
}
.exp-header__mobile-dropdown-toggle {
    background: none;
    border: none;
    color: var(--color-white);
    background: rgba(0, 176, 240, 0.1);
    cursor: pointer;
    padding: 20px 20px 20px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}
.exp-header__mobile-dropdown-toggle:hover {
    color: var(--color-primary);
    background: rgba(0, 176, 240, 0.1);
}
.exp-header__mobile-dropdown-toggle:active {
    background: rgba(0, 176, 240, 0.2);
    transform: scale(0.95);
}
.exp-header__mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}
.exp-header__mobile-dropdown.active .exp-header__mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}
.exp-header__mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.exp-header__mobile-dropdown.active .exp-header__mobile-dropdown-content {
    /* max-height: 500px; */
    max-height: none;
    overflow: visible;
}
.exp-header__mobile-dropdown-section {
    padding: 16px 0;
}
.exp-header__mobile-dropdown-section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.exp-header__mobile-dropdown-title {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
}
.exp-header__mobile-dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}
.exp-header__mobile-dropdown-link:hover {
    color: var(--color-primary);
}

.exp-footer {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.exp-footer::before {
    content: '';
    position: absolute;
    inset: -20% -10% -30% -10%;
    background: radial-gradient(120% 100% at 90% -10%, var(--color-primary) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(80% 60% at 0% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: screen;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    transform: translateZ(0);
}
.exp-footer::after {
    content: '';
    position: absolute;
    inset: -40% -20% -40% -20%;
    background: repeating-conic-gradient(
        from -12deg at 92% -12%,
        rgba(255, 255, 255, 0.06) 0deg 6deg,
        rgba(255, 255, 255, 0) 6deg 18deg
    );
    mix-blend-mode: screen;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
    -webkit-animation: footerRaySpin 140s linear infinite;
    animation: footerRaySpin 140s linear infinite;
    -webkit-mask-image: radial-gradient(120% 100% at 90% -10%, #000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 70%);
    mask-image: radial-gradient(120% 100% at 90% -10%, #000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 70%);
}
.exp-footer__container {
    position: relative;
    z-index: 1;
}
@-webkit-keyframes footerRaySpin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes footerRaySpin {
    to {
        transform: rotate(360deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .exp-footer::after {
        -webkit-animation: none;
        animation: none;
    }
}
.exp-footer__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}
@media (max-width: 768px) {
    .exp-footer__top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
}
.exp-footer__company-info {
    flex: 1;
    max-width: 300px;
}
.exp-footer__company-title {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.exp-footer__company-address {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #cccccc;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}
.exp-footer__company-address:hover {
    color: var(--color-primary);
}
.exp-footer__company-contact {
    font-size: 16px;
    line-height: 1.6;
}
.exp-footer__contact-item {
    margin-bottom: 4px;
}
.exp-footer__contact-label {
    color: var(--color-primary);
}
.exp-footer__contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.exp-footer__contact-link:hover {
    color: var(--color-primary);
}
.exp-footer__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    font-size: clamp(32px, 8vw, 100px);
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    flex: 1;
    letter-spacing: 5px;
}
@media (max-width: 768px) {
    .exp-footer__tagline {
        text-align: left;
    }
}
.exp-footer__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
@media (max-width: 1024px) {
    .exp-footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 500px) {
    .exp-footer__nav {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
}
.exp-footer__nav-title {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.exp-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.exp-footer__nav-list li {
    margin-bottom: 8px;
}
.exp-footer__nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}
.exp-footer__nav-link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}
.exp-footer__nav-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.exp-footer__nav-link:hover::before {
    width: 6px;
}
.exp-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}
@media (max-width: 1024px) {
    .exp-footer__bottom {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
}
.exp-footer__sitemap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 768px) {
    .exp-footer__sitemap {
        align-items: flex-start;
    }
}
.exp-footer__sitemap-title {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    letter-spacing: 1px;
}
.exp-footer__sitemap-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .exp-footer__sitemap-links {
        gap: 15px;
    }
}
.exp-footer__sitemap-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}
.exp-footer__sitemap-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}
.exp-footer__sitemap-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.exp-footer__sitemap-link:hover::after {
    width: 100%;
}
.exp-footer__social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 768px) {
    .exp-footer__social {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
.exp-footer__social-title {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    letter-spacing: 1px;
}
.exp-footer__social-links {
    display: flex;
    gap: 15px;
}
.exp-footer__social-link {
    color: var(--color-primary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exp-footer__social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}
.exp-footer__social-link svg {
    width: 28px;
    height: 28px;
}
@media (max-width: 1024px) {
    .exp-footer__logo {
        align-self: center;
    }
}
.exp-footer__logo-svg {
    width: 100%;
    color: #ffffff;
}
.exp-footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
    font-size: 14px;
    color: #999999;
}
@media (max-width: 768px) {
    .exp-footer__copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
.exp-footer__credit-link {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}
.exp-footer__credit-link:hover {
    color: var(--color-primary);
}

.exp-hero {
    position: relative;
    width: 100%;
    height: 724px;
    max-height: 600px;
    overflow: hidden;
}
.exp-hero__container {
    width: 100%;
    height: 100%;
}
.exp-hero__slider {
    width: 100%;
    height: 100%;
}
.exp-hero__wrapper {
    width: 100%;
    height: 100%;
}
.exp-hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exp-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.exp-hero__background:not(.exp-hero__background--no-overlay)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.exp-hero__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.exp-hero__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.exp-hero__youtube-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.exp-hero__youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.exp-hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.exp-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    text-align: center;
    color: white;
}
.exp-hero__content-inner {
    max-width: 600px;
    margin: 0 auto;
}
.exp-hero__title {
    font-family: var(--font-family-main);
    font-size: clamp(1.35rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.exp-hero__subtitle {
    font-family: var(--font-family-main);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.exp-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.exp-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.exp-hero__btn--primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}
.exp-hero__btn--primary:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}
.exp-hero__btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.exp-hero__btn--secondary:hover {
    background: white;
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.exp-hero__video-control {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 4;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.exp-hero__video-control:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--color-primary);
    transform: scale(1.1);
}
.exp-hero__video-control:active {
    transform: scale(0.95);
}
.exp-hero__video-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}
.exp-hero__video-icon--pause {
    position: absolute;
    opacity: 0;
}
.exp-hero__slide[data-video-playing='true'] .exp-hero__video-icon--play {
    opacity: 0;
}
.exp-hero__slide[data-video-playing='true'] .exp-hero__video-icon--pause {
    opacity: 1;
}
.exp-hero__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 4;
    transform: translateY(-50%);
    pointer-events: none;
    --swiper-navigation-size: 20px;
}
.exp-hero__nav-button {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.exp-hero__nav-button:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--color-primary);
    transform: scale(1.1);
}
.exp-hero__nav-button:active {
    transform: scale(0.95);
}
.exp-hero__nav-button--prev {
    left: 2rem;
}
.exp-hero__nav-button--next {
    right: 2rem;
}
.exp-hero__nav-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.exp-hero__pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 0.5rem;
}
.exp-hero__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}
.exp-hero__pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}
.exp-hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.3);
}
@media (max-width: 1024px) {
    .exp-hero {
        height: 665px;
    }
}
@media (max-width: 768px) {
    .exp-hero {
        height: 350px;
        max-height: 350px;
        margin-top: 65px;
    }
    .exp-hero__content {
        padding: 0 1rem;
    }
    .exp-hero__title {
        margin-bottom: 0.75rem;
    }
    .exp-hero__subtitle {
        margin-bottom: 1.25rem;
    }
    .exp-hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .exp-hero__btn {
        width: 100%;
        max-width: 280px;
    }
    .exp-hero__video-control {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    .exp-hero__nav-button {
        width: 50px;
        height: 50px;
    }
    .exp-hero__nav-button--prev {
        left: 1rem;
    }
    .exp-hero__nav-button--next {
        right: 1rem;
    }
    .exp-hero__pagination {
        bottom: 1rem;
    }
}
@media (max-width: 480px) {
    .exp-hero {
        height: 300px;
        max-height: 300px;
        margin-top: 65px;
    }
    .exp-hero__video-control,
    .exp-hero__nav-button {
        display: none;
    }
    .exp-hero__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.exp-hero__slide[data-slide-type='image'] .exp-hero__video-control {
    display: none;
}

.exp-our-story {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 100%);
    padding-bottom: 60px;
}
.exp-our-story__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
@media (max-width: 1024px) {
    .exp-our-story__container {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .exp-our-story__container {
        padding: 0 20px;
    }
}
.exp-our-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
@media (max-width: 1024px) {
    .exp-our-story__grid {
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .exp-our-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.exp-our-story__content {
    display: flex;
    flex-direction: column;
}
.exp-our-story__image-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .exp-our-story__image-wrapper {
        margin-bottom: 30px;
    }
}
.exp-our-story__image {
    width: 100%;
    height: auto;
    max-width: 400px;
    -o-object-fit: contain;
    object-fit: contain;
}
.exp-our-story__text-content {
    flex: 1;
}
.exp-our-story__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 200;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 30px;
}
@media (max-width: 1024px) {
    .exp-our-story__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .exp-our-story__title {
        font-size: 36px;
        margin-bottom: 24px;
    }
}
@media (max-width: 480px) {
    .exp-our-story__title {
        font-size: 28px;
    }
}
.exp-our-story__title-accent {
    color: var(--color-primary);
    font-weight: 300;
}
.exp-our-story__description {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-balck);
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .exp-our-story__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
.exp-our-story__quote {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-balck);
    font-style: italic;
}
@media (max-width: 768px) {
    .exp-our-story__quote {
        font-size: 15px;
    }
}
.exp-our-story__video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
@media (max-width: 768px) {
    .exp-our-story__video {
        padding: 0;
    }
}
.exp-our-story__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .exp-our-story__video-wrapper {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}
.exp-our-story__video-iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.exp-our-story__video-gradient {
    margin-top: -2px;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--color-primary) 0%, #ffffff 50%, var(--color-primary) 100%);
}

@media (max-width: 768px) {
    .exp-our-story__grid .exp-our-story__content {
        order: 1;
    }
    .exp-our-story__grid .exp-our-story__video {
        order: 2;
    }
}
@media (min-width: 769px) {
    .exp-our-story.exp-our-story--flip .exp-our-story__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 'video content';
    }
    .exp-our-story.exp-our-story--flip .exp-our-story__video {
        grid-area: video;
    }
    .exp-our-story.exp-our-story--flip .exp-our-story__content {
        grid-area: content;
    }
}
.exp-product-categories {
    background-color: #ffffff;
    padding: 0 0 40px 0;
}
.exp-product-categories__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-product-categories__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
@media (max-width: 1100px) {
    .exp-product-categories__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
.exp-product-categories__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-secondary-light) -20%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-product-categories__title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__title {
        font-size: 32px;
    }
}
.exp-product-categories__subtitle {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
}
@media (max-width: 1024px) {
    .exp-product-categories__subtitle {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__subtitle {
        font-size: 18px;
    }
}
.exp-product-categories__subtitle-accent {
    color: var(--color-primary);
    font-weight: 600;
}
.exp-product-categories__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 768px) {
    .exp-product-categories__grid {
        gap: 20px;
    }
}
.exp-product-categories__row {
    display: flex;
    gap: 30px;
}
@media (max-width: 768px) {
    .exp-product-categories__row {
        gap: 20px;
    }
}
.exp-product-categories__row--first .exp-product-categories__item {
    height: 400px;
}
@media (max-width: 1024px) {
    .exp-product-categories__row--first .exp-product-categories__item {
        height: 300px;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__row--first .exp-product-categories__item {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__row--first {
        flex-direction: column;
    }
}
.exp-product-categories__row--second .exp-product-categories__item {
    height: 300px;
}
@media (max-width: 1024px) {
    .exp-product-categories__row--second .exp-product-categories__item {
        height: 220px;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__row--second .exp-product-categories__item {
        height: 250px;
    }
}
@media (min-width: 769px) {
    .exp-product-categories__row--second .exp-product-categories__item {
        flex: 1;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__row--second {
        display: none;
    }
    .exp-product-categories__row--second.exp-product-categories__row--visible {
        display: flex;
        flex-direction: column;
    }
    .exp-product-categories__row--second.exp-product-categories__row--visible .exp-product-categories__item {
        width: 100%;
    }
}
.exp-product-categories__item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}
.exp-product-categories__item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.exp-product-categories__item:hover .exp-product-categories__item-bg {
    transform: scale(1.05);
}
@media (min-width: 769px) {
    .exp-product-categories__item--large {
        flex: 1;
    }
}
.exp-product-categories__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
.exp-product-categories__item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@media (max-width: 768px) {
    .exp-product-categories__item-content {
        padding: 20px;
    }
}
.exp-product-categories__item-title {
    font-family: var(--font-family-main);
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
    .exp-product-categories__item-title {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .exp-product-categories__item-title {
        font-size: 24px;
    }
}
.exp-product-categories__item-badges {
    display: flex;
    gap: 10px;
}
.exp-product-categories__quickship-badge {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.exp-product-categories__quickship-badge:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}
@media (max-width: 768px) {
    .exp-product-categories__quickship-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}
.exp-product-categories__mobile-toggle {
    display: none;
    justify-content: center;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .exp-product-categories__mobile-toggle {
        display: flex;
    }
}
.exp-product-categories__see-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.exp-product-categories__see-more-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}
.exp-product-categories__see-more-btn.exp-product-categories__see-more-btn--expanded
    .exp-product-categories__see-more-icon {
    transform: rotate(180deg);
}
.exp-product-categories__see-more-icon {
    transition: transform 0.3s ease;
}

.exp-featured-products {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 45%, #ffffff 100%);
    padding: 40px 0;
    position: relative;
}
.exp-featured-products__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
    .exp-featured-products__container {
        padding: 0 20px;
    }
}
.exp-featured-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}
@media (max-width: 768px) {
    .exp-featured-products__header {
        flex-direction: column;
        text-align: center;
    }
}
.exp-featured-products__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-featured-products__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .exp-featured-products__title {
        font-size: 28px;
    }
}
.exp-featured-products__subtitle {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
}
@media (max-width: 1024px) {
    .exp-featured-products__subtitle {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .exp-featured-products__subtitle {
        font-size: 18px;
    }
}
.exp-featured-products__subtitle-accent {
    color: var(--color-primary);
    font-weight: 600;
}
.exp-featured-products__swiper-container {
    position: relative;
    margin-bottom: 20px;
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
@media (max-width: 768px) {
    .exp-featured-products__swiper-container {
        margin-bottom: 40px;
    }
}
.exp-featured-products__swiper {
    overflow: visible;
    padding: 40px 0 80px;
}
@media (max-width: 768px) {
    .exp-featured-products__swiper {
        padding: 20px 0 60px;
    }
}
.exp-featured-products__slide {
    width: 400px;
    border-radius: 8px;
    background: var(--color-black);
    max-width: calc(100% - 48px);
    position: relative;
}
@media (max-width: 768px) {
    .exp-featured-products__slide {
        width: 280px;
    }
}
.exp-featured-products__slide .swiper-carousel-animate-opacity {
    height: 100%;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}
.exp-featured-products__slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    border-radius: 8px;
}
.exp-featured-products__slide-content {
    height: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    background: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}
.exp-featured-products__slide-content::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%) scale(0.95);
    width: 72%;
    height: 26px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0) 80%
    );
    filter: blur(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}
@media (max-width: 768px) {
    .exp-featured-products__slide-content {
        padding: 25px 15px;
    }
}
.exp-featured-products__slide-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 28px 70px rgba(0, 0, 0, 0.38);
}
.exp-featured-products__slide-content:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: blur(8px);
}
.exp-featured-products__slide.swiper-slide-active .exp-featured-products__slide-content,
.exp-featured-products__slide.exp-active .exp-featured-products__slide-content {
    background: white;
    color: var(--color-secondary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 16px 50px rgba(0, 0, 0, 0.3);
}
.exp-featured-products__slide-header {
    text-align: center;
    order: 0;
}
.exp-featured-products__slide-title {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}
@media (max-width: 768px) {
    .exp-featured-products__slide-title {
        font-size: 20px;
    }
}
.exp-featured-products__slide-slogan {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .exp-featured-products__slide-slogan {
        font-size: 13px;
    }
}
.exp-featured-products__slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    order: 2;
}
.exp-featured-products__slide-image img {
    max-width: 100%;
    max-height: 180px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .exp-featured-products__slide-image img {
        max-height: 140px;
    }
}
.exp-featured-products__slide-badge {
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 15px auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    order: 1;
}
.exp-featured-products__slide-badge:hover {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.exp-featured-products__slide-footer {
    text-align: center;
    order: 3;
}
.exp-featured-products__slide-bottom-slogan {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 768px) {
    .exp-featured-products__slide-bottom-slogan {
        font-size: 13px;
    }
}
.exp-featured-products__nav-next,
.exp-featured-products__nav-prev {
    color: var(--color-primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.exp-featured-products__nav-next:after,
.exp-featured-products__nav-prev:after {
    font-size: 18px;
    font-weight: 700;
}
.exp-featured-products__nav-next:hover,
.exp-featured-products__nav-prev:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .exp-featured-products__nav-next,
    .exp-featured-products__nav-prev {
        width: 40px;
        height: 40px;
    }
    .exp-featured-products__nav-next:after,
    .exp-featured-products__nav-prev:after {
        font-size: 14px;
    }
}
.exp-featured-products__nav-next {
    right: 6px;
}
.exp-featured-products__nav-prev {
    left: 6px;
}
.exp-featured-products__view-all {
    text-align: center;
}
.exp-featured-products__view-all-btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
}
.exp-featured-products__view-all-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.4);
}
@media (max-width: 768px) {
    .exp-featured-products__view-all-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.exp-home-projects {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 25%, #ffffff 100%);
    padding: 40px 0;
}
.exp-home-projects__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    margin-bottom: 30px;
    gap: 20px;
}
@media (max-width: 768px) {
    .exp-home-projects__header {
        flex-direction: column;
        text-align: center;
    }
}
.exp-home-projects__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-home-projects__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .exp-home-projects__title {
        font-size: 28px;
    }
}
.exp-home-projects__subtitle {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
}
@media (max-width: 1024px) {
    .exp-home-projects__subtitle {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .exp-home-projects__subtitle {
        font-size: 18px;
    }
}
.exp-home-projects__container {
    position: relative;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.exp-home-projects__triple-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
    padding: 32px 0;
}
.exp-home-projects__swiper {
    width: 90%;
    max-width: 640px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .exp-home-projects__swiper {
        width: 95%;
        height: 250px;
    }
}
.exp-home-projects__swiper.exp-home-projects__triple-slider-main {
    position: relative;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.exp-home-projects__swiper.exp-home-projects__triple-slider-prev,
.exp-home-projects__swiper.exp-home-projects__triple-slider-next {
    opacity: 0.25;
    position: absolute;
    top: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}
.exp-home-projects__swiper.exp-home-projects__triple-slider-prev {
    left: 0%;
    transform: translateY(-50%);
}
.exp-home-projects__swiper.exp-home-projects__triple-slider-next {
    right: 0%;
    transform: translateY(-50%);
}
.exp-home-projects__slide {
    position: relative;
    overflow: hidden;
}
.exp-home-projects__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.exp-home-projects__bg-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.exp-home-projects__btn {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .exp-home-projects__btn {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 12px;
    }
}
.exp-home-projects__btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}
.exp-home-projects__nav-next,
.exp-home-projects__nav-prev {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.exp-home-projects__nav-next:hover,
.exp-home-projects__nav-prev:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.exp-home-projects__nav-next::after,
.exp-home-projects__nav-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
}
@media (max-width: 768px) {
    .exp-home-projects__nav-next,
    .exp-home-projects__nav-prev {
        display: none;
    }
}
.exp-home-projects__nav-next {
    right: 20px;
}
.exp-home-projects__nav-prev {
    left: 20px;
}
.exp-home-projects__pagination {
    position: relative;
    margin-top: 0px;
    text-align: center;
}
@media (max-width: 768px) {
    .exp-home-projects__pagination {
        margin-top: 30px;
    }
}
.exp-home-projects__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}
.exp-home-projects__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.exp-home-news {
    padding: 40px 0;
    background: #ffffff;
}
.exp-home-news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    margin-bottom: 30px;
    gap: 20px;
}
@media (max-width: 768px) {
    .exp-home-news__header {
        flex-direction: column;
        text-align: center;
    }
}
.exp-home-news__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-home-news__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .exp-home-news__title {
        font-size: 28px;
    }
}
.exp-home-news__subtitle {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
}
@media (max-width: 1024px) {
    .exp-home-news__subtitle {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .exp-home-news__subtitle {
        font-size: 18px;
    }
}
.exp-home-news__container {
    position: relative;
    max-width: var(--page-max-width);
    margin: 0 auto;
    overflow: hidden;
}
.exp-home-news__swiper {
    overflow: visible;
    padding: 20px 0 30px;
}
.exp-home-news__slide {
    height: 250px;
    opacity: 0.7;
    overflow: hidden;
    transition: all 0.3s ease;
}
.exp-home-news__slide:hover {
    opacity: 1;
}
.exp-home-news__slide:hover .exp-home-news__image {
    filter: brightness(0.5);
}
.exp-home-news__slide:hover .exp-home-news__btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1300px) {
    .exp-home-news__slide {
        height: 220px;
    }
}
@media (max-width: 640px) {
    .exp-home-news__slide {
        height: 280px;
    }
}
.exp-home-news__link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.exp-home-news__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s ease;
}
.exp-home-news__slide:hover .exp-home-news__image {
    transform: scale(1.05);
}
.exp-home-news__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
}
.exp-home-news__btn:hover {
    background: var(--color-primary-dark);
}
.exp-home-news__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--color-text);
}
.exp-home-news__nav:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.exp-home-news__nav--prev {
    left: 10px;
}
.exp-home-news__nav--next {
    right: 10px;
}
@media (max-width: 768px) {
    .exp-home-news__nav {
        display: none;
    }
}
.exp-home-news__pagination {
    position: relative;
    text-align: center;
}
.exp-home-news__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}
.exp-home-news__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.exp-home-cta {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 25%, #ffffff 100%);
    padding: 40px 0 0 0;
}
.exp-home-cta__container {
    margin: 0 auto;
}
.exp-home-cta__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .exp-home-cta__header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}
.exp-home-cta__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-home-cta__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .exp-home-cta__title {
        font-size: 28px;
    }
}
.exp-home-cta__subtitle {
    font-family: var(--font-family-main);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.3;
    max-width: 600px;
}
@media (max-width: 768px) {
    .exp-home-cta__subtitle {
        max-width: 100%;
    }
}
.exp-home-cta__accent {
    color: var(--color-primary);
    font-weight: 600;
}
.exp-home-cta__main {
    position: relative;
    height: 450px;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .exp-home-cta__main {
        height: 300px;
    }
}
.exp-home-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background-image: url(/img/misc/exp-tms_home-cta-bg.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}
.exp-home-cta__bg-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.exp-home-cta__overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    /* Frosted glass base color (fallback) */
    background: rgba(0, 176, 240, 0.7);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(6px) saturate(50%);
    backdrop-filter: blur(6px) saturate(50%);
    color: #fff;
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .exp-home-cta__overlay {
        background: rgba(0, 176, 240, 0.7);
    }
}
.exp-home-cta__content {
    text-align: center;
    color: white;
    max-width: 750px;
    padding: 0 2rem;
}
.exp-home-cta__message {
    font-family: var(--font-family-main);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .exp-home-cta__message {
        margin-bottom: 1.5rem;
    }
}
.exp-home-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .exp-home-cta__actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}
.exp-home-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .exp-home-cta__btn {
        width: 100%;
        max-width: 280px;
    }
}
.exp-home-cta__btn--primary {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}
.exp-home-cta__btn--primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.exp-home-cta__btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.exp-home-cta__btn--secondary:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.exp-home-resources {
    background: var(--color-background);
    padding: 80px 0;
}
@media (max-width: 768px) {
    .exp-home-resources {
        padding: 60px 0;
    }
}
.exp-home-resources__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-home-resources__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .exp-home-resources__header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}
.exp-home-resources__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-home-resources__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .exp-home-resources__title {
        font-size: 28px;
    }
}
.exp-home-resources__subtitle {
    font-family: var(--font-family-main);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.3;
    max-width: 700px;
}
@media (max-width: 768px) {
    .exp-home-resources__subtitle {
        max-width: 100%;
    }
}
.exp-home-resources__accent {
    color: var(--color-primary);
    font-weight: 600;
}
.exp-home-resources__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (max-width: 768px) {
    .exp-home-resources__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.exp-home-resources__cell {
    position: relative;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}
.exp-home-resources__cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 176, 240, 0.3);
    transition: all 0.3s ease;
}
.exp-home-resources__cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.exp-home-resources__cell:hover::before {
    background: rgba(0, 176, 240, 0.8);
}
.exp-home-resources__cell--files {
    background-image: url('/img/misc/exp-tms_home-files-bg.jpeg');
}
.exp-home-resources__cell--locator {
    background-image: url('/img/misc/exp-tms_home-locator-bg.jpeg');
}
.exp-home-resources__cell--newsletter {
    grid-column: 1/-1;
    background-image: url('/img/misc/exp-tms_home-subscribe-bg.jpeg');
    min-height: 160px;
}
.exp-home-resources__cell--newsletter:hover {
    transform: none;
}
.exp-home-resources__cell-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}
.exp-home-resources__cell-icon {
    margin-bottom: 20px;
    opacity: 0.9;
}
.exp-home-resources__cell-icon svg {
    width: 60px;
    height: 60px;
}
.exp-home-resources__cell-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}
.exp-home-resources__cell-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}
.exp-home-resources__newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px;
    gap: 40px;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
}
.exp-home-resources__newsletter-left {
    flex: 1;
    max-width: 50%;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-left {
        max-width: 100%;
    }
}
.exp-home-resources__newsletter-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-header {
        justify-content: center;
    }
}
.exp-home-resources__newsletter-icon {
    opacity: 0.9;
    width: 50px;
    height: 50px;
}
.exp-home-resources__newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-title {
        font-size: 2.2rem;
    }
}
.exp-home-resources__newsletter-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-subtitle {
        font-size: 1.1rem;
    }
}
.exp-home-resources__newsletter-right {
    flex: 1;
    max-width: 50%;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-right {
        max-width: 100%;
        width: 100%;
    }
}
.exp-home-resources__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}
@media (max-width: 768px) {
    .exp-home-resources__newsletter-form {
        align-items: stretch;
    }
}
.exp-home-resources__newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    transition: all 0.3s ease;
}
.exp-home-resources__newsletter-input::-moz-placeholder {
    color: var(--color-text-secondary);
}
.exp-home-resources__newsletter-input:-ms-input-placeholder {
    color: var(--color-text-secondary);
}
.exp-home-resources__newsletter-input::placeholder {
    color: var(--color-text-secondary);
}
.exp-home-resources__newsletter-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.exp-downloads {
    background: #ffffff;
    min-height: 100vh;
    padding: 60px 0;
}
@media (max-width: 768px) {
    .exp-downloads {
        padding: 40px 0 40px;
    }
}
.exp-downloads__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-downloads__header {
    margin-bottom: 40px;
}
.exp-downloads__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}
.exp-downloads__filters {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 12px;
    background: #f5f6f7;
    border: 1px solid #e0e0e0;
}
.exp-downloads__step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.exp-downloads__step-label {
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}
.exp-downloads__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
}
@media screen and (max-width: 500px) {
    .exp-downloads__step {
        flex-direction: column;
    }
}
.exp-downloads__file-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.exp-downloads__filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 25px;
    background: white;
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.exp-downloads__filter-pill input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.exp-downloads__filter-pill .exp-downloads__filter-checkmark {
    display: none;
}
.exp-downloads__filter-pill:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 176, 240, 0.2);
}
.exp-downloads__filter-pill.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}
.exp-downloads__filter-pill-remove {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.exp-downloads__filter-pill-remove:hover {
    opacity: 1;
}
.exp-downloads__mobile-step2-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 176, 240, 0.3);
}
.exp-downloads__mobile-step2-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .exp-downloads__mobile-step2-btn {
        display: flex;
    }
}
.exp-downloads__mobile-step2-btn-icon {
    width: 20px;
    height: 20px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E")
        no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E")
        no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.exp-downloads__content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 1024px) {
    .exp-downloads__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.exp-downloads__mobile-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: var(--color-primary);
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .exp-downloads__mobile-toggle {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: auto;
        z-index: 1500;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    .exp-downloads__mobile-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 176, 240, 0.4);
    }
}
.exp-downloads__sidebar {
    background: #f5f6f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
}
@media (max-width: 1024px) {
    .exp-downloads__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 2000;
        padding: 20px;
        border-radius: 0;
        border: none;
        overflow-y: auto;
        display: none;
    }
    .exp-downloads__sidebar.active {
        display: block;
    }
}
.exp-downloads__sidebar-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.exp-downloads__sidebar-close:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}
@media (max-width: 1024px) {
    .exp-downloads__sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.exp-downloads__search {
    position: relative;
    margin-bottom: 20px;
}
.exp-downloads__search-input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}
.exp-downloads__search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.1);
}
.exp-downloads__search-input::-moz-placeholder {
    color: #777;
}
.exp-downloads__search-input:-ms-input-placeholder {
    color: #777;
}
.exp-downloads__search-input::placeholder {
    color: #777;
}
.exp-downloads__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    width: 18px;
    height: 18px;
}
.exp-downloads__categories {
    margin-bottom: 20px;
}
.exp-downloads__category-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.exp-downloads__category-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.1);
}
.exp-downloads__selected-notice {
    background: rgba(0, 176, 240, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exp-downloads__selected-count {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 500;
}
.exp-downloads__selected-number {
    font-weight: 700;
    color: var(--color-primary);
}
.exp-downloads__clear-selected {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}
.exp-downloads__clear-selected:hover {
    color: var(--color-primary-dark);
}
.exp-downloads__products {
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20px;
    max-height: 100vh;
}
.exp-downloads__products::-webkit-scrollbar {
    width: 8px;
}
.exp-downloads__products::-webkit-scrollbar-track {
    background: #e8e9ea;
    border-radius: 4px;
}
.exp-downloads__products::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
.exp-downloads__products::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}
.exp-downloads__no-products {
    margin: 8px 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px dashed #dcdfe3;
    background: #f8fafc;
    color: #5b6570;
    font-size: 0.875rem;
    display: none;
    line-height: 1.4;
    text-align: center;
}
.exp-downloads__product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2px;
    border: 1px solid transparent;
}
.exp-downloads__product-item:hover {
    background: rgba(0, 176, 240, 0.04);
    border-color: #ffffff;
}
.exp-downloads__product-item.selected {
    background: rgba(0, 176, 240, 0.04);
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 176, 240, 0.15);
}
.exp-downloads__product-checkbox {
    display: none;
}
.exp-downloads__product-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}
.exp-downloads__product-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.exp-downloads__product-checkbox:checked + .exp-downloads__product-checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.exp-downloads__product-checkbox:checked + .exp-downloads__product-checkmark::after {
    opacity: 1;
}
.exp-downloads__product-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.exp-downloads__product-name {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.875rem;
}
.exp-downloads__product-code {
    color: #555;
    font-size: 0.75rem;
    white-space: nowrap;
}
.exp-downloads__product-code::before {
    content: '/ ';
    color: #777;
}
.exp-downloads__main {
    min-height: 500px;
}
.exp-downloads__files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
    .exp-downloads__files-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.exp-downloads__files-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0;
}
.exp-downloads__files-count {
    font-size: 0.875rem;
    color: #555;
    font-weight: 500;
}
.exp-downloads__files-number {
    font-weight: 700;
    color: var(--color-primary);
}
.exp-downloads__files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .exp-downloads__files-grid {
        grid-template-columns: 1fr;
    }
}
.exp-downloads__file-item {
    display: flex;
    gap: 12px;
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
}
.exp-downloads__file-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 176, 240, 0.15);
}
.exp-downloads__file-item.selected {
    background: rgba(0, 176, 240, 0.04);
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 176, 240, 0.15);
}
.exp-downloads__file-card {
    flex: 1;
}
.exp-downloads__file-checkbox-wrapper {
    cursor: pointer;
    z-index: 10;
}
.exp-downloads__file-checkbox {
    opacity: 0;
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.exp-downloads__file-checkmark {
    display: flex;
    width: 24px;
    height: 24px;
    border: 2px solid #bbb;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: none;
}
.exp-downloads__file-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.exp-downloads__file-checkbox:checked + .exp-downloads__file-checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.exp-downloads__file-checkbox:checked + .exp-downloads__file-checkmark::after {
    opacity: 1;
}
.exp-downloads__file-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.exp-downloads__file-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.exp-downloads__file-type {
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 176, 240, 0.3);
    margin-bottom: 20px;
}
.exp-downloads__file-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.exp-downloads__file-btn {
    flex: 1;
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.exp-downloads__file-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.exp-downloads__file-btn:hover::before {
    left: 100%;
}
.exp-downloads__file-btn--view {
    background: white;
    color: var(--color-primary);
}
.exp-downloads__file-btn--view:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 176, 240, 0.3);
}
.exp-downloads__file-btn--download {
    background: var(--color-primary);
    color: white;
}
.exp-downloads__file-btn--download:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.4);
}
.exp-downloads__no-files {
    text-align: center;
    padding: 60px 20px;
    color: #555;
}
.exp-downloads__no-files-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}
.exp-downloads__no-files-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
}
.exp-downloads__no-files-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}
.exp-downloads__actions {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}
.exp-downloads__download-selected {
    padding: 16px 32px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 176, 240, 0.2);
}
.exp-downloads__download-selected:hover:not(:disabled) {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.3);
}
.exp-downloads__download-selected:disabled {
    background: #bbb;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.exp-dashboard {
    padding: 60px 0;
    background: #ffffff;
}
.exp-dashboard__header,
.exp-dashboard__main {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-dashboard__header {
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .exp-dashboard__header {
        margin-bottom: 40px;
    }
}
.exp-dashboard__title {
    font-size: 48px;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}
@media (max-width: 1024px) {
    .exp-dashboard__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .exp-dashboard__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}
.exp-dashboard__subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .exp-dashboard__subtitle {
        font-size: 16px;
    }
}
.exp-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .exp-dashboard__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.exp-dashboard__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .exp-dashboard__item {
        padding: 30px 15px;
        min-height: 160px;
    }
}
.exp-dashboard__item:hover {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.15);
    transform: translateY(-2px);
}
.exp-dashboard__item:hover .exp-dashboard__icon {
    color: var(--color-primary);
    transform: scale(1.1);
}
.exp-dashboard__item:hover .exp-dashboard__label {
    color: var(--color-primary);
}
.exp-dashboard__item:active {
    transform: translateY(0);
}
.exp-dashboard__item--logout:hover {
    border-color: #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}
.exp-dashboard__item--logout:hover .exp-dashboard__icon {
    color: #dc3545;
}
.exp-dashboard__item--logout:hover .exp-dashboard__label {
    color: #dc3545;
}
.exp-dashboard__icon {
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .exp-dashboard__icon {
        margin-bottom: 15px;
    }
}
.exp-dashboard__icon svg {
    width: 80px;
    height: 80px;
}
@media (max-width: 768px) {
    .exp-dashboard__icon svg {
        width: 40px;
        height: 40px;
    }
}
.exp-dashboard__label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    text-align: center;
}
@media (max-width: 768px) {
    .exp-dashboard__label {
        font-size: 14px;
    }
}
@media (max-width: 1200px) {
    .exp-dashboard__grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}
@media (max-width: 900px) {
    .exp-dashboard__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.exp-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}
.exp-login__container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}
.exp-login__container--register {
    max-width: 1000px;
    padding: 32px;
}
.exp-login__container--register .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
.exp-login__header {
    text-align: center;
    margin-bottom: 32px;
}
.exp-login__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 8px;
}
.exp-login__subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.5;
}
.exp-login__subtitle--restore {
    max-width: 360px;
    margin: 0 auto;
}
.exp-login__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.exp-login__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.exp-login__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
}
.exp-login__input {
    padding: 12px 16px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
}
.exp-login__input::-moz-placeholder {
    color: #a0a6b1;
}
.exp-login__input:-ms-input-placeholder {
    color: #a0a6b1;
}
.exp-login__input::placeholder {
    color: #a0a6b1;
}
.exp-login__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.1);
}
.exp-login__select {
    padding: 12px 16px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    cursor: pointer;
}
.exp-login__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.1);
}
.exp-login__checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}
.exp-login__checkbox {
    display: none;
}
.exp-login__checkbox:checked + .exp-login__checkbox-label .exp-login__checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.exp-login__checkbox:checked + .exp-login__checkbox-label .exp-login__checkmark::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}
.exp-login__checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-secondary);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.exp-login__checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}
.exp-login__checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
    transition: all 0.2s ease;
}
.exp-login__forgot {
    text-align: center;
    margin-top: 8px;
}
.exp-login__forgot-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.exp-login__forgot-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}
.exp-login__signup {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e1e5e9;
}
.exp-login__signup-text {
    color: var(--color-text-light);
    font-size: 14px;
    margin-right: 8px;
}
.exp-login__signup-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.exp-login__signup-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}
.exp-login__benefits {
    margin-bottom: 32px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}
.exp-login__email-link,
.exp-login__phone-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}
.exp-login__email-link:hover,
.exp-login__phone-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}
.exp-login__form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e1e5e9;
}
.exp-login__form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.exp-login__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .exp-login__form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .exp-login {
        padding: 16px;
    }
    .exp-login__container {
        padding: 24px;
    }
    .exp-login__title {
        font-size: 24px;
    }
    .exp-login__subtitle {
        font-size: 14px;
    }
}
@media (max-width: 640px) {
    .exp-login__container--register {
        padding: 20px;
    }
    .exp-login__benefits {
        padding: 16px;
    }
    .exp-login__benefits-intro {
        font-size: 15px;
    }
    .exp-login__benefit-item {
        font-size: 13px;
    }
    .exp-login__privacy {
        font-size: 12px;
    }
}

.exp-quick-ship-video {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 100%);
    padding: 60px 0;
}
.exp-quick-ship-video__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-quick-ship-video__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 1024px) {
    .exp-quick-ship-video__title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .exp-quick-ship-video__title {
        font-size: 32px;
    }
}
.exp-quick-ship-video__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.exp-quick-ship-video__video-wrapper iframe {
    margin-top: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.exp-quick-ship-reasons {
    padding: 60px 0;
    background: linear-gradient(to top, #c5c7c9 0%, #ffffff 100%);
}
.exp-quick-ship-reasons__container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: var(--page-max-width);
    margin: 0 auto;
}
.exp-quick-ship-reasons__header,
.exp-quick-ship-reasons__footer {
    text-align: center;
    margin-bottom: 60px;
}
.exp-quick-ship-reasons__header:last-child,
.exp-quick-ship-reasons__footer:last-child {
    margin-bottom: 0;
    margin-top: 60px;
}
.exp-quick-ship-reasons__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.exp-quick-ship-reasons__title em {
    font-style: italic;
}
@media (max-width: 1024px) {
    .exp-quick-ship-reasons__title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__title {
        font-size: 32px;
    }
}
.exp-quick-ship-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .exp-quick-ship-reasons__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__grid {
        grid-template-columns: 1fr;
    }
}
.exp-quick-ship-reasons__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-quick-ship-reasons__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.exp-quick-ship-reasons__item--main {
    background: transparent;
    box-shadow: none;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1024px) {
    .exp-quick-ship-reasons__item--main {
        flex-direction: row;
        gap: 20px;
    }
}
.exp-quick-ship-reasons__item--light {
    background: linear-gradient(-135deg, #ffffff 0%, #d8d8d8 100%);
    color: var(--color-secondary);
}
.exp-quick-ship-reasons__item--light .exp-quick-ship-reasons__item-number {
    color: var(--color-primary);
}
.exp-quick-ship-reasons__item--light .exp-quick-ship-reasons__item-title {
    color: var(--color-secondary);
}
.exp-quick-ship-reasons__item--blue {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0088cc 100%);
    color: white;
}
.exp-quick-ship-reasons__item--blue .exp-quick-ship-reasons__item-number {
    color: white;
}
.exp-quick-ship-reasons__item--blue .exp-quick-ship-reasons__item-title {
    color: white;
}
.exp-quick-ship-reasons__item--blue .exp-quick-ship-reasons__item-text {
    color: rgba(255, 255, 255, 0.9);
}
.exp-quick-ship-reasons__main-number {
    font-family: var(--font-family-main);
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 176, 240, 0.3);
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__main-number {
        font-size: 80px;
    }
}
.exp-quick-ship-reasons__main-text {
    font-family: var(--font-family-main);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__main-text {
        font-size: 24px;
    }
}
.exp-quick-ship-reasons__item-number {
    font-family: var(--font-family-main);
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 176, 240, 0.3);
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__item-number {
        font-size: 80px;
    }
}
.exp-quick-ship-reasons__item--blue .exp-quick-ship-reasons__item-number {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}
.exp-quick-ship-reasons__item-content {
    flex: 1;
}
.exp-quick-ship-reasons__item-title {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__item-title {
        font-size: 16px;
    }
}
.exp-quick-ship-reasons__item-text {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons__item-text {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .exp-quick-ship-reasons {
        padding: 60px 0;
    }
    .exp-quick-ship-reasons__header,
    .exp-quick-ship-reasons__footer {
        margin-bottom: 40px;
    }
    .exp-quick-ship-reasons__header:last-child,
    .exp-quick-ship-reasons__footer:last-child {
        margin-top: 40px;
    }
    .exp-quick-ship-reasons__grid {
        gap: 15px;
    }
    .exp-quick-ship-reasons__item {
        padding: 20px;
        gap: 15px;
    }
}

.exp-page-header-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .exp-page-header-banner {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .exp-page-header-banner {
        height: 200px;
    }
}
.exp-page-header-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/etp-tms_header-banner-1-jEkVYBUDTqxmSPVki0LPvMHlSWunqG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.exp-page-header-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.exp-page-header-banner__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}
.exp-page-header-banner__content {
    text-align: center;
    color: #ffffff;
}
.exp-page-header-banner__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .exp-page-header-banner__title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .exp-page-header-banner__title {
        font-size: 32px;
        margin-bottom: 12px;
    }
}
@media (max-width: 480px) {
    .exp-page-header-banner__title {
        font-size: 28px;
    }
}
.exp-page-header-banner__subtitle {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .exp-page-header-banner__subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }
}
@media (max-width: 480px) {
    .exp-page-header-banner__subtitle {
        font-size: 14px;
    }
}
.exp-page-header-banner__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
}
@media (max-width: 480px) {
    .exp-page-header-banner__breadcrumb {
        font-size: 12px;
    }
}
.exp-page-header-banner__breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.exp-page-header-banner__breadcrumb-link:hover {
    opacity: 1;
    text-decoration: underline;
}
.exp-page-header-banner__breadcrumb-separator {
    color: #ffffff;
    opacity: 0.6;
}
.exp-page-header-banner__breadcrumb-current {
    color: #ffffff;
    opacity: 1;
    font-weight: 500;
}

.exp-page-header-banner--dark-overlay .exp-page-header-banner__overlay {
    background: rgba(0, 0, 0, 0.6);
}
.exp-page-header-banner--light-overlay .exp-page-header-banner__overlay {
    background: rgba(0, 0, 0, 0.2);
}
.exp-page-header-banner--primary-overlay .exp-page-header-banner__overlay {
    background: rgba(0, 176, 240, 0.4);
}

.exp-page-header-banner--tall {
    height: 400px;
}
@media (max-width: 1024px) {
    .exp-page-header-banner--tall {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .exp-page-header-banner--tall {
        height: 300px;
    }
}
.exp-page-header-banner--short {
    height: 200px;
}
@media (max-width: 1024px) {
    .exp-page-header-banner--short {
        height: 180px;
    }
}
@media (max-width: 768px) {
    .exp-page-header-banner--short {
        height: 150px;
    }
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-accent {
    background-color: var(--accent-background-color);
}

input.error,
select.error,
textarea.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

.fc-accent {
    color: var(--color-primary);
}

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.nowrap {
    white-space: nowrap;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper.video-wrapper--sm {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 40%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Not Found Page */
.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-background-color);
    padding: 60px var(--container-padding);
}

.not-found-page__title {
    font-family: var(--font-family-main);
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.not-found-page__subtitle {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.8;
}

.btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 40px;
    border: 0;
    border-radius: 30px;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
    cursor: pointer;
    position: relative;
    /* Transparent variant to mirror .exp-hero__btn--secondary */
}

.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.4);
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
.btn.btn--transparent {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.btn--transparent:hover {
    background: white;
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn.btn--loading {
    pointer-events: none;
    cursor: not-allowed;
    color: transparent;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
    overflow: hidden;
}

.btn.btn--loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    z-index: 1;
}

.btn.btn--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1.2em;
    height: 1.2em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-right-color: #fff;
    border-radius: 50%;
    -webkit-animation: btn-spin 0.8s linear infinite;
    animation: btn-spin 0.8s linear infinite;
    z-index: 2;
}

.btn.btn--loading:hover {
    background: var(--color-primary);
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
}

@-webkit-keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.exp-files-popup {
    width: clamp(300px, 760px, 90vw);
    max-height: 90vh;
    background: #f7f8fa;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family-main);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.exp-files-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 16px;
    position: relative;
}
.exp-files-popup__accent {
    width: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-right: 20px;
    align-self: stretch;
}
.exp-files-popup__title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex: 1;
}
.exp-files-popup__titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.exp-files-popup__product {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-secondary);
    line-height: 1.1;
}
.exp-files-popup__group {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
}
.exp-files-popup__body {
    padding: 0 32px 0;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
}
.exp-files-popup__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 6px;
    padding-bottom: 24px;
}
.exp-files-popup__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #d9dadd;
    border-radius: 4px;
    padding: 12px 16px;
    gap: 16px;
    min-height: 66px;
}
.exp-files-popup__item:nth-child(odd) {
    background: #fdfdfe;
}
.exp-files-popup__file {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--color-secondary);
    flex: 1;
    min-width: 0;
}
.exp-files-popup__icon {
    position: relative;
    width: 36px;
    height: 44px;
    flex-shrink: 0;
    /* border: 1px solid #bfc2c7; */
    /* border-radius: 4px; */
    background: linear-gradient(#fff, #f3f4f6);
}
.exp-files-popup__icon:before,
.exp-files-popup__icon:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}
.exp-files-popup__icon:before {
    width: 10px;
    height: 12px;
    background: #fff;
    border-right: 1px solid #bfc2c7;
    border-bottom: 1px solid #bfc2c7;
    border-radius: 0 0 0 4px;
}
.exp-files-popup__icon:after {
    width: 0;
    height: 0;
    border-top: 12px solid #dfe1e5;
    border-left: 12px solid transparent;
    right: 0;
    top: 0;
    left: auto;
    border-radius: 0 4px 0 0;
}
.exp-files-popup__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exp-files-popup__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.exp-files-popup__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 36px;
    min-width: 90px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}
.exp-files-popup__action:hover {
    background: var(--color-primary);
    color: #fff;
}
.exp-files-popup__footer {
    display: flex;
    gap: 30px;
    padding: 28px 32px 36px;
    /* background: #fff; */
    box-shadow: 0 -1px 0 #e1e3e6;
    position: sticky;
    bottom: 0;
}
.exp-files-popup__btn {
    flex: 1;
    height: 58px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    position: relative;
}
.exp-files-popup__btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 22px -6px rgba(0, 176, 240, 0.45);
}
.exp-files-popup__btn--primary:hover {
    background: var(--color-primary-dark);
}
.exp-files-popup__btn--secondary {
    background: #e5e6ea;
    color: var(--color-secondary);
}
.exp-files-popup__btn--secondary:hover {
    background: #d6d8dc;
}

@media (max-width: 640px) {
    .exp-files-popup {
        width: 96vw;
        padding: 2rem 0rem;
    }
    .exp-files-popup__header {
        padding: 24px 20px 12px;
    }
    .exp-files-popup__body {
        padding: 0 20px;
    }
    .exp-files-popup__footer {
        flex-direction: column-reverse;
        gap: 16px;
        padding: 24px 20px 28px;
    }
    .exp-files-popup__btn {
        height: 52px;
        padding: 10px;
    }
    .exp-files-popup__action {
        min-width: 80px;
        height: 34px;
    }
}

@media (max-width: 500px) {
    .exp-files-popup__action {
        min-width: 44px;
        padding: 0 6px;
        height: 44px;
        border-radius: 6px;
    }
    .exp-files-popup__action-label {
        display: none;
    }
    .exp-files-popup__action-icon {
        display: inline-flex;
    }
    .exp-files-popup__action-icon svg {
        width: 27px;
        height: 27px;
        display: block;
    }
}

.exp-dashboard__label input{
    width: auto;
}