@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;
}
.exp-hero__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    margin: 10px !important;
}
.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__nav-button {
        width: 40px;
        height: 40px;
    }
    /* .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;
    }
}
.mc-field-group {
    width: 100%;
}
.mc-field-group label {
    display: block;
    margin-bottom: 5px;
}
.exp-home-resources__newsletter-right #mc_embed_signup div.mce_inline_error {
    color: #ff2600;
    background-color: transparent;
}
.exp-home-resources__newsletter-right #mce-success-response {
    width: 100%;
    text-align: center;
    background-color: #18b77c;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.exp-home-resources__newsletter-right #mce-error-response {
    color: #ff2600;
    background-color: transparent;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.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;
    }
}

/* Download Title Popup Styles */
.exp-download-title-popup {
    width: clamp(300px, 500px, 90vw);
    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-download-title-popup__form-group {
    padding: 20px 0;
}

.exp-download-title-popup__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.exp-download-title-popup__input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    font-size: 15px;
    font-family: var(--font-family-main);
    color: var(--color-secondary);
    background: #fff;
    border: 2px solid #d9dadd;
    border-radius: 4px;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}

.exp-download-title-popup__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.1);
}

.exp-download-title-popup__input::placeholder {
    color: #999;
}

@media (max-width: 640px) {
    .exp-download-title-popup {
        width: 96vw;
    }

    .exp-download-title-popup__input {
        height: 48px;
        font-size: 14px;
    }
}

.exp-dashboard__label input {
    width: auto;
}

.share-products-btn {
    display: flex;
    /* display: none; */
    border: 0;
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    margin: 20px auto 20px auto;
    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;
}
.share-products-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) {
    .share-products-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.exp-projects-swiper {
    padding: 60px 60px 0 60px;
    position: relative;
    overflow: hidden;
}
.exp-projects-swiper-inner {
    background: #ffffff;
}
@media (max-width: 768px) {
    .exp-projects-swiper {
        padding: 40px 0 0 0;
    }
}
.exp-projects-swiper__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
    .exp-projects-swiper__container {
        padding: 0 20px;
    }
}
.exp-projects-swiper__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .exp-projects-swiper__header {
        margin-bottom: 30px;
    }
}
.exp-projects-swiper__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 200;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .exp-projects-swiper__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .exp-projects-swiper__title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .exp-projects-swiper__title {
        font-size: 28px;
    }
}
.exp-projects-swiper__subtitle {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .exp-projects-swiper__subtitle {
        font-size: 16px;
    }
}
.exp-projects-swiper__swiper-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0 80px;
}
@media (max-width: 1024px) {
    .exp-projects-swiper__swiper-wrapper {
        padding: 0 60px;
    }
}
@media (max-width: 768px) {
    .exp-projects-swiper__swiper-wrapper {
        padding: 0 50px;
    }
}
.exp-projects-swiper__swiper {
    overflow: visible;
    padding: 60px 0 100px;
    perspective: 1200px;
}
@media (max-width: 768px) {
    .exp-projects-swiper__swiper {
        padding: 40px 0 50px;
    }
}
.exp-projects-swiper__slide {
    width: 600px;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #333;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1200px) {
    .exp-projects-swiper__slide {
        width: 500px;
        height: 300px;
    }
}
@media (max-width: 768px) {
    .exp-projects-swiper__slide {
        width: 280px;
        height: 200px;
    }
}
.exp-projects-swiper__slide:hover .exp-projects-swiper__slide-btn {
    background: var(--color-primary);
    transform: scale(1.05);
}
.exp-projects-swiper__slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: white;
}
.exp-projects-swiper__slide-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.exp-projects-swiper__slide-cta {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}
@media (max-width: 768px) {
    .exp-projects-swiper__slide-cta {
        bottom: 20px;
        left: 20px;
    }
}
.exp-projects-swiper__slide-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(0, 174, 239, 0.9);
    color: white;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}
@media (max-width: 768px) {
    .exp-projects-swiper__slide-btn {
        padding: 10px 24px;
        font-size: 12px;
    }
}
.exp-projects-swiper__nav-prev,
.exp-projects-swiper__nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--color-secondary);
}
.exp-projects-swiper__nav-prev:hover,
.exp-projects-swiper__nav-next:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
@media (max-width: 768px) {
    .exp-projects-swiper__nav-prev,
    .exp-projects-swiper__nav-next {
        width: 40px;
        height: 40px;
    }
    .exp-projects-swiper__nav-prev svg,
    .exp-projects-swiper__nav-next svg {
        width: 20px;
        height: 20px;
    }
}
.exp-projects-swiper__nav-prev {
    left: 10px;
}
@media (max-width: 768px) {
    .exp-projects-swiper__nav-prev {
        left: 5px;
    }
}
.exp-projects-swiper__nav-next {
    right: 10px;
}
@media (max-width: 768px) {
    .exp-projects-swiper__nav-next {
        right: 5px;
    }
}
.exp-projects-swiper .swiper-slide {
    transition-property: transform, opacity;
}
.exp-projects-swiper .swiper-slide-active .exp-projects-swiper__slide {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.exp-projects-list {
    background: #f5f5f5;
    padding: 60px 0 80px;
    position: relative;
}
@media (max-width: 768px) {
    .exp-projects-list {
        padding: 40px 0 60px;
    }
}
.exp-projects-list__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
    .exp-projects-list__container {
        padding: 0 20px;
    }
}
.exp-projects-list__search-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
}
@media (max-width: 768px) {
    .exp-projects-list__search-wrapper {
        margin-bottom: 30px;
    }
}
.exp-projects-list__search-container {
    position: relative;
}
.exp-projects-list__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.exp-projects-list__search-input-wrapper:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}
.exp-projects-list__search-input-icon {
    background: none;
    border: none;
    padding: 0;
    margin-right: 12px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.exp-projects-list__search-input-icon:hover {
    color: var(--color-primary);
}
.exp-projects-list__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-family-main);
    color: var(--color-text);
    background: transparent;
}
.exp-projects-list__search-input::-moz-placeholder {
    color: #999;
}
.exp-projects-list__search-input:-ms-input-placeholder {
    color: #999;
}
.exp-projects-list__search-input::placeholder {
    color: #999;
}
.exp-projects-list__search-close {
    background: none;
    border: none;
    padding: 0;
    margin-left: 12px;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.exp-projects-list__search-close:hover {
    color: var(--color-primary);
}
.exp-projects-list__search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}
.exp-projects-list__search-section-title {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}
.exp-projects-list__search-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.exp-projects-list__search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
}
.exp-projects-list__search-item:hover {
    background: #f5f5f5;
}
.exp-projects-list__search-item-image {
    width: 60px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.exp-projects-list__search-item-content {
    flex: 1;
    min-width: 0;
}
.exp-projects-list__search-item-title {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exp-projects-list__search-item-description {
    font-size: 12px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exp-projects-list__search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
.exp-projects-list__header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .exp-projects-list__header {
        margin-bottom: 40px;
    }
}
.exp-projects-list__title {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .exp-projects-list__title {
        font-size: 16px;
    }
}
.exp-projects-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .exp-projects-list__grid {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .exp-projects-list__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.exp-projects-list__item {
    transition: all 0.3s ease;
}
.exp-projects-list__item:hover .exp-projects-list__item-btn {
    background: var(--color-primary);
    transform: scale(1.05);
}
.exp-projects-list__item:hover .exp-projects-list__item-image {
    transform: scale(1.05);
}
.exp-projects-list__item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.exp-projects-list__item-image-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #e0e0e0;
}
@media (max-width: 1024px) {
    .exp-projects-list__item-image-wrapper {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .exp-projects-list__item-image-wrapper {
        height: 300px;
    }
}
.exp-projects-list__item-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.exp-projects-list__item-cta {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}
@media (max-width: 768px) {
    .exp-projects-list__item-cta {
        bottom: 15px;
        right: 15px;
    }
}
.exp-projects-list__item-btn {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(0, 174, 239, 0.9);
    color: white;
    font-family: var(--font-family-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}
@media (max-width: 768px) {
    .exp-projects-list__item-btn {
        padding: 8px 20px;
        font-size: 11px;
    }
}
.exp-projects-list__item-content {
    padding: 18px 0;
}
@media (max-width: 768px) {
    .exp-projects-list__item-content {
        padding: 16px;
    }
}
.exp-projects-list__item-agent {
    display: flex;
    max-width: max-content;
    column-gap: 10px;
    margin-bottom: 10px;
    /* max-width: 60%; */
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.exp-projects-list__item-agent:hover {
    transform: translateY(-2px);
    color: var(--color-primary);
}
.exp-projects-list__item-agent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(0, 174, 239, 0));
    transition: width 0.4s ease;
}
.exp-projects-list__item-agent:hover::after {
    width: 100%;
}
@media (max-width: 1024px) {
    .exp-projects-list__item-agent {
        font-size: 16px;
    }
}
.exp-projects-list__item-agent span {
    color: var(--color-primary);
}
.exp-projects-list__item-title {
    font-family: var(--font-family-main);
    font-size: 32px;
    font-weight: 200;
    color: var(--color-text);
    margin: 0 0 12px 0;
    line-height: 1.2;
}
@media (max-width: 1024px) {
    .exp-projects-list__item-title {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .exp-projects-list__item-title {
        font-size: 24px;
    }
}
.exp-projects-list__item-description {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .exp-projects-list__item-description {
        font-size: 14px;
    }
}
.exp-projects-list__pagination {
    text-align: center;
    margin-top: 40px;
}
.exp-projects-list__see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}
.exp-projects-list__see-more:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}
.exp-projects-list__see-more svg {
    transition: transform 0.3s ease;
}
.exp-projects-list__see-more:hover svg {
    transform: translateY(2px);
}
@media (max-width: 768px) {
    .exp-projects-list__see-more {
        padding: 12px 32px;
        font-size: 14px;
    }
}

.exp-projects-customers-swiper {
    width: 100%;
    padding: 0 0 80px 0;
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper {
        padding: 0 0 60px 0;
    }
}
.exp-projects-customers-swiper__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-projects-customers-swiper__title {
    font-family: var(--font-family-main);
    font-size: 42px;
    font-weight: 200;
    line-height: 1.2;
    color: var(--color-text);
    text-align: center;
    margin: 0 0 60px;
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}
.exp-projects-customers-swiper__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper__wrapper {
        gap: 10px;
    }
}
.exp-projects-customers-swiper__nav {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper__nav {
        width: 40px;
        height: 40px;
    }
    .exp-projects-customers-swiper__nav svg {
        width: 20px;
        height: 20px;
    }
}
.exp-projects-customers-swiper__nav:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}
.exp-projects-customers-swiper__nav:active {
    transform: scale(0.95);
}
.exp-projects-customers-swiper__nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.exp-projects-customers-swiper__nav:disabled:hover {
    background: white;
    color: var(--color-primary);
    transform: scale(1);
}
.exp-projects-customers-swiper__swiper {
    flex: 1;
    overflow: hidden;
}
.exp-projects-customers-swiper__swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear;
}
.exp-projects-customers-swiper__slide {
    width: auto !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper__slide {
        padding: 0 15px;
    }
}
.exp-projects-customers-swiper__slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper__slide-inner {
        padding: 15px;
    }
}
.exp-projects-customers-swiper__slide-image {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
@media (max-width: 1024px) {
    .exp-projects-customers-swiper__slide-image {
        max-width: 150px;
        max-height: 70px;
    }
}
@media (max-width: 768px) {
    .exp-projects-customers-swiper__slide-image {
        max-width: 120px;
        max-height: 60px;
    }
}
.exp-projects-customers-swiper__slide:hover .exp-projects-customers-swiper__slide-inner {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.exp-projects-customers-swiper__slide:hover .exp-projects-customers-swiper__slide-image {
    filter: grayscale(0%);
    opacity: 1;
}

.exp-project-layout {
    width: 100%;
    padding: 80px 0;
    background: white;
}
@media (max-width: 768px) {
    .exp-project-layout {
        padding: 60px 0;
    }
}
.exp-project-layout__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-project-layout__header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .exp-project-layout__header {
        margin-bottom: 40px;
    }
}
.exp-project-layout__title {
    font-family: var(--font-family-main);
    font-size: 48px;
    font-weight: 200;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 20px;
}
@media (max-width: 1024px) {
    .exp-project-layout__title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .exp-project-layout__title {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .exp-project-layout__title {
        font-size: 28px;
    }
}
.exp-project-layout__subtitle {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
}
@media (max-width: 768px) {
    .exp-project-layout__subtitle {
        font-size: 16px;
    }
}
.exp-project-layout__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 768px) {
    .exp-project-layout__grid {
        gap: 15px;
    }
}
.exp-project-layout__row {
    display: grid;
    gap: 20px;
    width: 100%;
    height: 500px;
}
@media (max-width: 1024px) {
    .exp-project-layout__row {
        gap: 15px;
        height: auto;
    }
}
.exp-project-layout__row--single {
    grid-template-columns: 1fr;
}
.exp-project-layout__row--double {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
    .exp-project-layout__row--double {
        grid-template-columns: 1fr;
    }
}
.exp-project-layout__row--triple {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
    .exp-project-layout__row--triple {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .exp-project-layout__row--triple {
        grid-template-columns: 1fr;
    }
}
.exp-project-layout__row--asymmetric {
    grid-template-columns: 2fr 1fr;
}
@media (max-width: 1024px) {
    .exp-project-layout__row--asymmetric {
        grid-template-columns: 1fr;
    }
}

.exp-project-layout__item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    height: 100%;
}
@media (max-width: 1024px) {
    .exp-project-layout__item {
        aspect-ratio: 16/11;
        height: auto;
    }
}
.exp-project-layout__item-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}
.exp-project-layout__item-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.exp-project-layout__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .exp-project-layout__item-overlay {
        padding: 20px;
        gap: 10px;
    }
}
.exp-project-layout__item-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}
.exp-project-layout__item-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 174, 239, 0.9);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    pointer-events: auto;
}
@media (max-width: 768px) {
    .exp-project-layout__item-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
.exp-project-layout__item-btn--video {
    pointer-events: none;
    cursor: default;
}
.exp-project-layout__item-btn--video .exp-project-layout__item-btn-icon {
    width: 16px;
    height: 16px;
}
@media (max-width: 768px) {
    .exp-project-layout__item-btn--video .exp-project-layout__item-btn-icon {
        width: 14px;
        height: 14px;
    }
}
.exp-project-layout__item-btn:hover {
    background: #00aeef;
    transform: translateY(-2px);
}
.exp-project-layout__item-btn-icon {
    flex-shrink: 0;
}
.exp-project-layout__item-link:hover .exp-project-layout__item-image {
    transform: scale(1.05);
}
.exp-project-layout__item-link:hover .exp-project-layout__item-overlay:not(.exp-project-layout__item-overlay--visible) {
    opacity: 1;
}
.exp-project-layout__item-link:focus {
    outline: none;
    outline-offset: 0;
}
.exp-project-layout__item-link:focus .exp-project-layout__item-overlay:not(.exp-project-layout__item-overlay--visible) {
    opacity: 1;
}

.fancybox__content {
    position: relative;
}
.fancybox__content .fancybox__project-link {
    position: absolute;
    bottom: 60px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 174, 239, 0.95);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    opacity: 1;
}
@media (max-width: 768px) {
    .fancybox__content .fancybox__project-link {
        bottom: 60px;
        left: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }
}
.fancybox__content .fancybox__project-link:hover {
    background: #00aeef;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.fancybox__content .fancybox__project-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .fancybox__content .fancybox__project-link svg {
        width: 14px;
        height: 14px;
    }
}

.fancybox__container .fancybox__caption,
.fancybox__container .fancybox__footer {
    display: none;
}

/* Light Toggle Styles */
.light-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 0;
}

.light-toggle__label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.light-toggle__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text, #333);
}

.light-toggle__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.light-toggle__slider {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 26px;
    transition: background-color 0.3s ease;
}

.light-toggle__slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.light-toggle__input:checked + .light-toggle__slider {
    background-color: var(--color-primary, #007bff);
}

.light-toggle__input:checked + .light-toggle__slider::before {
    transform: translateX(24px);
}

.light-toggle__label:hover .light-toggle__slider {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .light-toggle {
        justify-content: center;
        padding: 10px 0;
    }
}

/* ======================================
   404 Error Page
   ====================================== */
.exp-error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--container-padding);
    background: linear-gradient(150deg, #f5f8ff 0%, #ffffff 55%, #f0f9ff 100%);
}

.exp-error-page__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.exp-error-page__content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.exp-error-page__code {
    font-family: var(--font-family-main);
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -6px;
    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;
    -webkit-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
    .exp-error-page__code {
        font-size: 110px;
        letter-spacing: -4px;
    }
}

@media (max-width: 480px) {
    .exp-error-page__code {
        font-size: 80px;
        letter-spacing: -2px;
    }
}

.exp-error-page__title {
    font-family: var(--font-family-main);
    font-size: 32px;
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 768px) {
    .exp-error-page__title {
        font-size: 26px;
    }
}

.exp-error-page__desc {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 460px;
    margin: 0;
}

.exp-error-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 0.75rem 2.25rem;
    background: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-family: var(--font-family-main);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.exp-error-page__btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}

/* ======================================
   No Search Results
   ====================================== */
.exp-no-results {
    /* min-height: 50vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px var(--container-padding);
    background: #fff;
}

.exp-no-results__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.exp-no-results__content {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.exp-no-results__icon {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    opacity: 0.75;
    flex-shrink: 0;
}

.exp-no-results__icon svg {
    width: 100%;
    height: 100%;
}

.exp-no-results__title {
    font-family: var(--font-family-main);
    font-size: 30px;
    font-weight: 300;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 768px) {
    .exp-no-results__title {
        font-size: 24px;
    }
}

.exp-no-results__desc {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

.exp-login.exp-login--register {
    min-height: auto;
    display: block;
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 60%);
    padding: 60px 0 80px;
}
.exp-login--register .exp-login__container--register {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    max-width: var(--page-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}
.exp-login--register .exp-login__header {
    text-align: center;
    margin-bottom: 48px;
}
.exp-login--register .exp-login__title {
    font-family: var(--font-family-main);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-secondary-light) -20%, var(--color-primary) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 auto;
    max-width: 1100px;
}
.exp-login--register .exp-login__benefits {
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.6;
}
.exp-login--register .exp-login__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.exp-login--register .exp-login__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.exp-login--register .exp-login__field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.exp-login--register .exp-login__label {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.2px;
}
.exp-login--register .exp-login__input,
.exp-login--register .exp-login__select {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: var(--font-family-main);
    font-size: 15px;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}
.exp-login--register .exp-login__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}
.exp-login--register .exp-login__input::placeholder,
.exp-login--register .exp-login__select::placeholder {
    color: #a0a6b1;
}
.exp-login--register .exp-login__input:focus,
.exp-login--register .exp-login__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 3px rgba(0, 176, 240, 0.15);
}
.exp-login--register .exp-login__input.error,
.exp-login--register .exp-login__select.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}
.exp-login--register .exp-login__field:has(.exp-login__input:required:valid:not(.error)):not(:has(.exp-login__input:focus)) .exp-login__input,
.exp-login--register
    .exp-login__field:has(.exp-login__select:required:valid:not(.error)):not(
        :has(.exp-login__select:focus, .exp-login__select option[value='0']:checked, .exp-login__select option[value='']:checked)
    )
    .exp-login__select {
    border-color: #22c55e;
    padding-right: 44px;
}
.exp-login--register .exp-login__field:has(.exp-login__input:required:valid:not(.error)):not(:has(.exp-login__input:focus))::after,
.exp-login--register
    .exp-login__field:has(.exp-login__select:required:valid:not(.error)):not(
        :has(.exp-login__select:focus, .exp-login__select option[value='0']:checked, .exp-login__select option[value='']:checked)
    )::after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12 3.41 13.41 9 19 21 7l-1.41-1.41z' fill='%2322c55e'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
.exp-login--register
    .exp-login__field:has(.exp-login__select:required:valid:not(.error)):not(
        :has(.exp-login__select:focus, .exp-login__select option[value='0']:checked, .exp-login__select option[value='']:checked)
    )::after {
    right: 40px;
}
.exp-login--register .exp-login__actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.exp-login--register .exp-login__container--register .btn {
    min-width: 200px;
}
.exp-login--register .exp-login__signup {
    text-align: center;
    margin: 48px auto 0;
    padding-top: 28px;
    max-width: 1100px;
    border-top: 1px solid #d0d5db;
}
.exp-login--register .exp-login__signup-text {
    color: var(--color-text);
    font-size: 15px;
    margin-right: 8px;
}
.exp-login--register .exp-login__signup-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
}
.exp-login--register .exp-login__signup-link:hover {
    color: var(--color-primary-dark);
}
@media (max-width: 768px) {
    .exp-login.exp-login--register {
        padding: 40px 0 60px;
    }
    .exp-login--register .exp-login__header {
        margin-bottom: 32px;
    }
    .exp-login--register .exp-login__form,
    .exp-login--register .exp-login__form-row {
        gap: 18px;
    }
    .exp-login--register .exp-login__form-row {
        grid-template-columns: 1fr;
    }
    .exp-login--register .exp-login__signup {
        margin-top: 32px;
    }
}

.exp-welcome-banner {
    position: relative;
    width: 100%;
    min-height: 336px;
    background-color: var(--color-secondary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.exp-welcome-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.exp-welcome-banner__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 42px var(--container-padding);
    text-align: center;
}
.exp-welcome-banner__intro {
    color: var(--color-white);
    font-family: var(--font-family-main);
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 400;
    margin: 0 0 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.exp-welcome-banner__logo {
    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}
.exp-welcome-banner__logo-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
@media (max-width: 1024px) {
    .exp-welcome-banner {
        min-height: 280px;
    }
    .exp-welcome-banner__logo {
        max-width: 600px;
    }
}
@media (max-width: 768px) {
    .exp-welcome-banner {
        min-height: 196px;
    }
    .exp-welcome-banner__container {
        padding: 28px var(--container-padding);
    }
    .exp-welcome-banner__intro {
        margin-bottom: 16px;
    }
    .exp-welcome-banner__logo {
        max-width: 88%;
    }
}

.exp-signup-success {
    position: relative;
    background: linear-gradient(to bottom, #c5c7c9 0%, #e7e9eb 35%, #ffffff 100%);
    padding: 56px 0 72px;
    overflow: hidden;
}
.exp-signup-success__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-signup-success__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}
.exp-signup-success__title {
    font-family: var(--font-family-main);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-secondary-light) -20%, var(--color-primary) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 16px;
}
.exp-signup-success__congrats {
    font-family: var(--font-family-main);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    margin: 0 0 32px;
}
.exp-signup-success__intro {
    font-family: var(--font-family-main);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}
.exp-signup-success__intro p {
    margin: 0 0 10px;
}
.exp-signup-success__intro p:last-child {
    margin-bottom: 0;
}
.exp-signup-success__intro strong {
    font-weight: 700;
}
.exp-signup-success__intro em {
    font-style: italic;
}

.exp-signup-success__roadmap {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    position: relative;
}
.exp-signup-success__roadmap::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-image: linear-gradient(to right, var(--color-primary) 50%, transparent 50%);
    background-size: 14px 3px;
    background-repeat: repeat-x;
    z-index: 0;
}
.exp-signup-success__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}
.exp-signup-success__step-marker {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.exp-signup-success__step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.exp-signup-success__step-icon svg {
    width: 52px;
    height: 52px;
    display: block;
}
.exp-signup-success__step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary) 100%);
    color: #ffffff;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 136, 185, 0.35);
    z-index: 2;
}
.exp-signup-success__step-body {
    max-width: 200px;
}
.exp-signup-success__step-label {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 8px;
}
.exp-signup-success__step-caption {
    font-family: var(--font-family-main);
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.5;
}

.exp-signup-success__logo-block {
    text-align: center;
    max-width: 720px;
    margin: 80px auto 32px;
}
.exp-signup-success__logo-intro {
    font-family: var(--font-family-main);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 18px;
}
.exp-signup-success__logo-svg {
    display: block;
    width: 100%;
    height: auto;
}
.exp-signup-success__logo-svg .st0 {
    fill: none;
    stroke: var(--color-primary);
    stroke-miterlimit: 10;
}
.exp-signup-success__logo-svg .st1 {
    fill: var(--color-primary);
}
.exp-signup-success__logo-svg .st2 {
    fill: var(--color-secondary);
}

.exp-signup-success__nav-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 56px;
}
.exp-signup-success__nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    min-height: 48px;
}
.exp-signup-success__nav-btn--primary {
    background: var(--color-primary);
    color: #ffffff;
}
.exp-signup-success__nav-btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 176, 240, 0.28);
}
.exp-signup-success__nav-btn--secondary {
    background: transparent;
    color: var(--color-primary);
}
.exp-signup-success__nav-btn--secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 176, 240, 0.18);
}

.exp-signup-success__note {
    text-align: center;
    color: var(--color-text);
    font-family: var(--font-family-main);
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}
.exp-signup-success__note p {
    margin: 0 0 8px;
}
.exp-signup-success__note p:last-child {
    margin-bottom: 0;
}
.exp-signup-success__note-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}
.exp-signup-success__note-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .exp-signup-success__roadmap::before {
        left: 8%;
        right: 8%;
        top: 45px;
    }
    .exp-signup-success__step {
        padding: 0 6px;
    }
    .exp-signup-success__step-marker,
    .exp-signup-success__step-icon {
        width: 90px;
        height: 90px;
    }
    .exp-signup-success__step-icon svg {
        width: 46px;
        height: 46px;
    }
    .exp-signup-success__step-label {
        font-size: 13px;
        letter-spacing: 1.2px;
    }
    .exp-signup-success__step-caption {
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    .exp-signup-success {
        padding: 40px 0 56px;
    }
    .exp-signup-success__header {
        margin-bottom: 40px;
    }
    .exp-signup-success__roadmap {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 460px;
        padding-left: 8px;
    }
    .exp-signup-success__roadmap::before {
        top: 0;
        bottom: 0;
        left: 58px;
        right: auto;
        width: 3px;
        height: auto;
        background-image: linear-gradient(to bottom, var(--color-primary) 50%, transparent 50%);
        background-size: 3px 14px;
        background-repeat: repeat-y;
    }
    .exp-signup-success__step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 16px 0;
        gap: 20px;
    }
    .exp-signup-success__step-marker {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 90px;
        height: 90px;
    }
    .exp-signup-success__step-icon {
        width: 90px;
        height: 90px;
    }
    .exp-signup-success__step-body {
        max-width: none;
        flex: 1;
    }
    .exp-signup-success__logo-block {
        margin: 56px auto 24px;
    }
    .exp-signup-success__nav-buttons {
        margin-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .exp-signup-success__roadmap {
        max-width: 100%;
        padding-left: 0;
    }
    .exp-signup-success__roadmap::before {
        left: 39px;
    }
    .exp-signup-success__step {
        gap: 14px;
        padding: 12px 0;
    }
    .exp-signup-success__step-marker,
    .exp-signup-success__step-icon {
        width: 72px;
        height: 72px;
    }
    .exp-signup-success__step-icon svg {
        width: 38px;
        height: 38px;
    }
    .exp-signup-success__step-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .exp-signup-success__nav-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Sign-up success — VIDEO variant
   Shares the .exp-signup-success base section, but drops the __header and
   __roadmap. Layout is: logo block → video → nav buttons → note.
   These rules are additive: the standard sign-up-success page is unaffected.
   -------------------------------------------------------------------------- */
.exp-signup-success--video .exp-signup-success__logo-block {
    /* Logo sits at the very top of this variant, so remove the large
       top margin the base block uses when it follows the roadmap. */
    margin-top: 0;
}
.exp-signup-success__video {
    max-width: 900px;
    margin: 0 auto 48px;
}
.exp-signup-success__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}
.exp-signup-success__video-iframe,
.exp-signup-success__video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.exp-signup-success__video-poster {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.exp-signup-success__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 176, 240, 0.92);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
.exp-signup-success__video-play:hover {
    background: var(--color-primary-dark);
    transform: translate(-50%, -50%) scale(1.08);
}
.exp-signup-success__video-play svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}
.exp-signup-success__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-signup-success__video {
        margin-bottom: 36px;
    }
    .exp-signup-success__video-play {
        width: 68px;
        height: 68px;
    }
    .exp-signup-success__video-play svg {
        width: 26px;
        height: 26px;
    }
}

.exp-dashboard {
    position: relative;
    background: linear-gradient(to bottom, #c5c7c9 0%, #e7e9eb 35%, #ffffff 100%);
    padding: 64px 0 96px;
    min-height: 100%;
}
.exp-dashboard__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-dashboard__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.exp-dashboard__welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}
.exp-dashboard__welcome-greeting {
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.exp-dashboard__welcome-name {
    font-family: var(--font-family-main);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, var(--color-secondary-light) -20%, var(--color-primary) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.exp-dashboard__subtitle {
    font-family: var(--font-family-main);
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.exp-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.exp-dashboard__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    padding: 48px 24px;
    min-height: 240px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 0;
    text-decoration: none;
    color: var(--color-secondary);
    box-shadow: 0 0 0 0 transparent;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease,
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-dashboard__card:hover {
    transform: translate(-6px, -6px);
    border-color: var(--color-secondary);
    box-shadow: 6px 6px 0 0 var(--color-primary);
}
.exp-dashboard__card-icon {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-dashboard__card:hover .exp-dashboard__card-icon {
    transform: scale(1.05);
}
.exp-dashboard__card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.exp-dashboard__card-title {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 0;
    line-height: 1.2;
}

.exp-dashboard__card--danger:hover {
    box-shadow: 6px 6px 0 0 var(--hs-menu-line-color);
}
.exp-dashboard__card--danger .exp-dashboard__card-icon {
    color: var(--hs-menu-line-color);
}

@media (max-width: 900px) {
    .exp-dashboard__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .exp-dashboard__card {
        min-height: 200px;
        padding: 36px 20px;
    }
    .exp-dashboard__card-icon {
        width: 72px;
        height: 72px;
    }
}
@media (max-width: 768px) {
    .exp-dashboard {
        padding: 40px 0 64px;
    }
    .exp-dashboard__header {
        margin-bottom: 36px;
    }
}
@media (max-width: 520px) {
    .exp-dashboard__grid {
        grid-template-columns: 1fr;
    }
    .exp-dashboard__card {
        min-height: 180px;
        padding: 32px 20px;
    }
    .exp-dashboard__card-icon {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }
}

:root {
    --account-section-bg: #e7e9eb;
}

.exp-account-hero {
    position: relative;
    color: #ffffff;
    isolation: isolate;
}
.exp-account-hero__cover {
    position: relative;
    background-image: url('/img/misc/tms_account-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}
.exp-account-hero__cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}
.exp-account-hero__container {
    position: relative;
    z-index: 1;
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 28px var(--container-padding) 80px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}
.exp-account-hero__logo {
    position: absolute;
    top: 28px;
    left: var(--container-padding);
    display: inline-flex;
    align-items: center;
    z-index: 2;
}
.exp-account-hero__logo img {
    width: clamp(56px, 6vw, 84px);
    height: auto;
    display: block;
}

.exp-account-hero__welcome {
    text-align: center;
    margin: auto auto;
    padding: 96px 16px 32px;
    max-width: 720px;
}
.exp-account-hero__title {
    font-family: var(--font-family-main);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: 0.3px;
}
.exp-account-hero__name {
    font-weight: 400;
}
.exp-account-hero__subtitle {
    font-family: var(--font-family-main);
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto;
    opacity: 0.92;
}

.exp-account-hero__nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.exp-account-hero__nav-inner {
    max-width: var(--page-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: center;
    pointer-events: auto;
}
.exp-account-hero__tabs {
    display: flex;
    align-items: stretch;
    justify-content: safe center;
    gap: 4px;
    flex-wrap: nowrap;
    margin-bottom: -1px;
    min-width: 0;
    max-width: 100%;
}
.exp-account-hero__tab {
    padding: 18px 32px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 6px 6px 0 0;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.exp-account-hero__tab:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
}
/* icon-only logout tab (sits after Sales Targets) */
.exp-account-hero__tab--logout {
    padding-left: 18px;
    padding-right: 18px;
}
.exp-account-hero__tab--logout svg {
    display: block;
    width: 20px;
    height: 20px;
}
.exp-account-hero__tab--active,
.exp-account-hero__tab--active:hover {
    background: var(--account-section-bg);
    color: var(--color-primary);
    padding-bottom: 19px;
    /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08); */
}

.exp-account-hero__notification {
    position: absolute;
    top: 32px;
    right: var(--container-padding);
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    transition: transform 0.25s ease;
}
.exp-account-hero__notification:hover {
    transform: scale(1.08);
}
.exp-account-hero__notification svg {
    width: 32px;
    height: 32px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.exp-account-hero__notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--hs-menu-line-color);
    color: #ffffff;
    border-radius: 9px;
    font-family: var(--font-family-main);
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Between ~877px and 1050px, shrink the row tabs so all six fit on one line
   before they stack at 876px. */
@media (min-width: 877px) and (max-width: 1050px) {
    .exp-account-hero__tab {
        padding: 16px 16px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    .exp-account-hero__tab--active {
        padding-bottom: 17px;
    }
    .exp-account-hero__tab--logout {
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (max-width: 1024px) {
    .exp-account-hero__container {
        min-height: 460px;
    }
    .exp-account-hero__welcome {
        padding: 80px 16px 32px;
    }
}
@media (max-width: 876px) {
    .exp-account-hero__container {
        padding: 20px var(--container-padding) 32px;
        min-height: 0;
    }
    .exp-account-hero__logo {
        top: 18px;
    }
    .exp-account-hero__welcome {
        padding: 88px 8px 24px;
    }
    .exp-account-hero__subtitle {
        font-size: 13px;
    }
    .exp-account-hero__notification {
        top: 18px;
    }
    .exp-account-hero__nav {
        position: static;
        background: var(--account-section-bg);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        pointer-events: auto;
    }
    .exp-account-hero__nav-inner {
        padding: 0;
        width: 100%;
        max-width: none;
        display: block;
    }
    .exp-account-hero__tabs {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 0;
        justify-content: stretch;
    }
    .exp-account-hero__tab {
        width: 100%;
        padding: 18px var(--container-padding);
        color: var(--color-secondary);
        background: transparent;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        justify-content: flex-start;
    }
    .exp-account-hero__tab:last-child {
        border-bottom: none;
    }
    .exp-account-hero__tab:hover {
        background: rgba(0, 176, 240, 0.08);
        color: var(--color-primary);
    }
    .exp-account-hero__tab--active,
    .exp-account-hero__tab--active:hover {
        background: var(--color-primary);
        color: #ffffff;
        padding-bottom: 18px;
        box-shadow: none;
    }
    /* stacked: show the word "Log out" instead of the icon */
    .exp-account-hero__tab--logout svg {
        display: none;
    }
    .exp-account-hero__tab--logout::after {
        content: 'Log out';
    }
}
@media (max-width: 480px) {
    .exp-account-hero__title {
        font-size: 26px;
    }
    .exp-account-hero__welcome {
        padding: 72px 4px 16px;
    }
    .exp-account-hero__tab {
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .exp-account-hero__tab--active {
        padding-bottom: 16px;
    }
}

.exp-sales-targets {
    background: var(--account-section-bg);
    padding: 32px 0 64px;
}
.exp-sales-targets__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-sales-targets__intro {
    font-family: var(--font-family-main);
    font-size: 16px;
    color: var(--color-text);
    text-align: center;
    line-height: 1.5;
    margin: 0 auto 28px;
    max-width: 800px;
}

.exp-sales-targets__search-wrapper {
    max-width: 800px;
    margin: 0 auto 32px;
}
.exp-sales-targets__search-container {
    position: relative;
}
.exp-sales-targets__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.exp-sales-targets__search-input-wrapper:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
}
.exp-sales-targets__search-input-icon,
.exp-sales-targets__search-close {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.25s ease;
}
.exp-sales-targets__search-input-icon {
    margin-right: 12px;
}
.exp-sales-targets__search-close {
    margin-left: 12px;
}
.exp-sales-targets__search-input-icon:hover,
.exp-sales-targets__search-close:hover {
    color: var(--color-primary);
}
.exp-sales-targets__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-family-main);
    color: var(--color-text);
    background: transparent;
    padding: 12px 0;
}
.exp-sales-targets__search-input::placeholder {
    color: #999;
}

.exp-sales-targets__sort {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    padding: 0 4px;
}
.exp-sales-targets__sort-label {
    font-family: var(--font-family-main);
    font-size: 12px;
    color: var(--color-text);
    margin-right: 8px;
    letter-spacing: 0.3px;
}
.exp-sales-targets__sort-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #b5b9bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.exp-sales-targets__sort-btn svg {
    width: 20px;
    height: 20px;
}
.exp-sales-targets__sort-btn:hover {
    color: var(--color-text);
}
.exp-sales-targets__sort-btn--active {
    color: var(--color-primary);
}

.exp-sales-targets__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.exp-sales-targets__item {
    background: transparent;
    border-radius: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.exp-sales-targets__item:last-child {
    border-bottom: none;
}
.exp-sales-targets__item--expanded {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border-bottom-color: transparent;
    margin: 8px 0;
    position: relative;
    z-index: 1;
}

.exp-sales-targets__item-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.exp-sales-targets__item-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.exp-sales-targets__item-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    opacity: 1;
    transition: transform 0.3s ease;
}
.exp-sales-targets__item--expanded .exp-sales-targets__item-chevron {
    transform: rotate(90deg);
}
.exp-sales-targets__item--no-expand .exp-sales-targets__item-header {
    cursor: default;
}
.exp-sales-targets__item-name {
    font-family: var(--font-family-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.exp-sales-targets__item-progress-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 4px 0;
}
.exp-sales-targets__item-label {
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text);
    flex-shrink: 0;
}

.exp-sales-targets__progress {
    position: relative;
    flex: 1;
    height: 32px;
    display: flex;
    align-items: center;
    min-width: 0;
}
.exp-sales-targets__progress-track {
    position: relative;
    /* End label is 36px wide and pinned right:0, so its center sits 18px from
       the right edge of .exp-sales-targets__progress. We end the track at that
       same point so an inside-track thumb at left:100% lands on the end-label
       center — no offset at 100%. */
    width: calc(100% - 18px);
    height: 2px;
    background: #888;
    border-radius: 2px;
    margin-right: 18px;
}
.exp-sales-targets__progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--color-primary);
    border-radius: 2px;
}
.exp-sales-targets__progress-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-main);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 136, 185, 0.3);
    pointer-events: none;
    z-index: 1;
}
.exp-sales-targets__progress-end {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-main);
    font-size: 11px;
    font-weight: 600;
}
.exp-sales-targets__progress-end--hidden {
    visibility: hidden;
}

.exp-sales-targets__email-btn {
    flex-shrink: 0;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-family-main);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.exp-sales-targets__email-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 136, 185, 0.3);
}

.exp-sales-targets__item-body {
    padding: 0 24px 18px 52px;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.55;
}
.exp-sales-targets__item-body p {
    margin: 0 0 8px;
}
.exp-sales-targets__item-body p:last-child {
    margin-bottom: 0;
}

.exp-sales-targets__no-results {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-light);
    font-family: var(--font-family-main);
    font-size: 15px;
    line-height: 1.5;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .exp-sales-targets {
        padding: 24px 0 48px;
    }
    .exp-sales-targets__item-header {
        padding: 16px;
    }
    .exp-sales-targets__item-progress-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .exp-sales-targets__progress {
        order: 2;
        width: 100%;
        flex: 1 0 100%;
    }
    .exp-sales-targets__email-btn {
        order: 3;
        margin-left: auto;
    }
    .exp-sales-targets__item-body {
        padding: 0 16px 16px 32px;
    }
}
@media (max-width: 480px) {
    .exp-sales-targets__item-name {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .exp-sales-targets__email-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    .exp-sales-targets__progress-thumb,
    .exp-sales-targets__progress-end {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
    .exp-sales-targets__progress-track {
        /* Thumb/end shrink to 32px here, so half-width is 16px. */
        width: calc(100% - 16px);
        margin-right: 16px;
    }
}

.exp-my-projects {
    background: var(--account-section-bg);
    padding: 32px 0 64px;
}
.exp-my-projects__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Search - matches sales-targets search look */
.exp-my-projects__search-wrapper {
    max-width: 800px;
    margin: 0 auto 32px;
}
.exp-my-projects__search-container {
    position: relative;
}
.exp-my-projects__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.exp-my-projects__search-input-wrapper:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
}
.exp-my-projects__search-input-icon,
.exp-my-projects__search-close {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.25s ease;
}
.exp-my-projects__search-input-icon {
    margin-right: 12px;
}
.exp-my-projects__search-close {
    margin-left: 12px;
}
.exp-my-projects__search-input-icon:hover,
.exp-my-projects__search-close:hover {
    color: var(--color-primary);
}
.exp-my-projects__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-family-main);
    color: var(--color-text);
    background: transparent;
    padding: 12px 0;
}
.exp-my-projects__search-input::placeholder {
    color: #999;
}

/* Sort - matches sales-targets sort look */
.exp-my-projects__sort {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    padding: 0 4px;
}
.exp-my-projects__sort-label {
    font-family: var(--font-family-main);
    font-size: 12px;
    color: var(--color-text);
    margin-right: 8px;
    letter-spacing: 0.3px;
}
.exp-my-projects__sort-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #b5b9bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.exp-my-projects__sort-btn svg {
    width: 20px;
    height: 20px;
}
.exp-my-projects__sort-btn:hover {
    color: var(--color-text);
}
.exp-my-projects__sort-btn--active {
    color: var(--color-primary);
}

/* List + items */
.exp-my-projects__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
}
.exp-my-projects__item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px minmax(170px, auto) auto;
    align-items: center;
    gap: 32px;
    padding: 22px 24px 22px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.25s ease;
}
.exp-my-projects__item::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    background: var(--color-primary);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transform: scaleY(0.4);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}
.exp-my-projects__item:hover {
    background: rgba(255, 255, 255, 0.55);
}
.exp-my-projects__item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
.exp-my-projects__item:last-child {
    border-bottom: none;
}

.exp-my-projects__item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.exp-my-projects__item-title {
    align-self: flex-start;
    font-family: var(--font-family-main);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    line-height: 1.25;
    letter-spacing: 0.1px;
    transition: color 0.2s ease;
}
.exp-my-projects__item-title:hover {
    color: var(--color-primary-dark);
}
.exp-my-projects__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.exp-my-projects__item-meta-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-family-main);
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.4;
}
.exp-my-projects__item-meta-line svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.7;
}

.exp-my-projects__item-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.exp-my-projects__item-cell-label {
    font-family: var(--font-family-main);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-text-light);
}
.exp-my-projects__item-cell-value {
    font-family: var(--font-family-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.2;
    white-space: nowrap;
}
.exp-my-projects__item-cell-value--empty {
    color: var(--color-border);
    font-weight: 400;
}
.exp-my-projects__item-cell--qty .exp-my-projects__item-cell-value {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

/* Actions - 2x2 pill grid matching old design */
.exp-my-projects__item-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(72px, 1fr));
    gap: 6px;
    flex-shrink: 0;
}
.exp-my-projects__action {
    appearance: none;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-family-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: lowercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.exp-my-projects__action:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 136, 185, 0.25);
}
.exp-my-projects__action--danger {
    background: var(--hs-menu-line-color);
}
.exp-my-projects__action--danger:hover {
    background: #b91a1f;
    box-shadow: 0 4px 10px rgba(218, 33, 39, 0.25);
}

/* No results message */
.exp-my-projects__no-results {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-light);
    font-family: var(--font-family-main);
    font-size: 15px;
    line-height: 1.5;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* Forms rendered inside jquery-confirm dialogs (rename, share, etc.) */
.exp-account-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}
.exp-account-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.exp-account-form__label {
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-text);
    padding: 0;
    border: 0;
}
.exp-account-form__input,
.exp-account-form__textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-text);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}
.exp-account-form__input:focus,
.exp-account-form__textarea:focus {
    border-color: var(--color-primary);
}
.exp-account-form__textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.4;
}
.exp-account-form__input--error {
    border-color: var(--hs-menu-line-color);
    background: var(--input-error-background-color);
}
.exp-account-form__radios {
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.exp-account-form__radios legend {
    margin-bottom: 8px;
    padding: 0;
}
.exp-account-form__radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-text);
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}
.exp-account-form__radio:hover {
    border-color: var(--color-primary);
}
.exp-account-form__radio input {
    accent-color: var(--color-primary);
    margin: 0;
    flex-shrink: 0;
}
.exp-account-form__radio input:checked ~ span {
    color: var(--color-primary);
    font-weight: 600;
}
.exp-account-form__success {
    text-align: center;
    padding: 18px 12px;
    color: var(--color-text);
    font-family: var(--font-family-main);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================================
   jquery-confirm dialog — branded overrides
   (high specificity needed to win against the library's own theme
    and against generic input/textarea/fieldset rules elsewhere in main.css)
   ============================================================ */
.jconfirm .jconfirm-box,
.jconfirm.jconfirm-modern .jconfirm-box {
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    padding: 0;
    overflow: hidden;
    font-family: var(--font-family-main);
}
.jconfirm .jconfirm-bg {
    background-color: rgba(24, 24, 27, 0.55);
}

/* Header */
.jconfirm .jconfirm-title-c {
    padding: 18px 24px;
    background: var(--account-section-bg, #e7e9eb);
    border-bottom: 1px solid var(--color-border);
    margin: 0;
}
.jconfirm .jconfirm-title {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.jconfirm .jconfirm-title strong {
    color: var(--color-primary);
    text-transform: none;
    font-weight: 700;
}
.jconfirm .jconfirm-closeIcon {
    color: var(--color-text-light);
    opacity: 0.7;
    transition: opacity 0.2s ease;
    top: 14px !important;
    right: 18px !important;
}
.jconfirm .jconfirm-closeIcon:hover {
    opacity: 1;
    color: var(--color-primary);
}

/* Type accent (red for delete) */
.jconfirm .jconfirm-box-container.jconfirm-type-red .jconfirm-box,
.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: 4px solid var(--hs-menu-line-color);
}

/* Content area */
.jconfirm .jconfirm-content-pane {
    margin: 0;
}
.jconfirm .jconfirm-content {
    padding: 22px 24px;
    font-family: var(--font-family-main);
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text);
    overflow: visible;
    max-height: 70vh;
}
.jconfirm .jconfirm-content strong {
    color: var(--color-secondary);
    font-weight: 700;
}
.jconfirm .jconfirm-content small {
    display: block;
    margin-top: 8px;
    color: var(--color-text-light);
    font-size: 12px;
}

/* Footer buttons */
.jconfirm .jconfirm-buttons {
    padding: 14px 24px;
    background: #fafafa;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    text-align: right;
    margin: 0;
    float: none;
}
.jconfirm .jconfirm-buttons button {
    margin: 0;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
    text-shadow: none;
    box-shadow: none;
}
.jconfirm .jconfirm-buttons .btn-default {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.jconfirm .jconfirm-buttons .btn-default:hover {
    background: var(--accent-background-color);
    border-color: var(--color-border);
    color: var(--color-secondary);
}
.jconfirm .jconfirm-buttons .btn-blue {
    background: var(--color-primary);
    color: #ffffff;
}
.jconfirm .jconfirm-buttons .btn-blue:hover {
    background: var(--color-primary-dark);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 136, 185, 0.25);
}
.jconfirm .jconfirm-buttons .btn-red {
    background: var(--hs-menu-line-color);
    color: #ffffff;
}
.jconfirm .jconfirm-buttons .btn-red:hover {
    background: #b91a1f;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(218, 33, 39, 0.25);
}

/* Form inside dialog — high-specificity rules that override conflicting
   input/textarea/fieldset/legend styles from elsewhere in main.css */
.jconfirm .jconfirm-content .exp-account-form,
.jconfirm .jconfirm-content .exp-account-form *,
.jconfirm .jconfirm-content .exp-account-form *::before,
.jconfirm .jconfirm-content .exp-account-form *::after {
    box-sizing: border-box;
}
.jconfirm .jconfirm-content .exp-account-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}
.jconfirm .jconfirm-content .exp-account-form__field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}
.jconfirm .jconfirm-content .exp-account-form__label {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--font-family-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
    line-height: 1.2;
    float: none;
}
.jconfirm .jconfirm-content .exp-account-form__input,
.jconfirm .jconfirm-content .exp-account-form__textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #ffffff;
    color: var(--color-text);
    font-family: var(--font-family-main);
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.jconfirm .jconfirm-content .exp-account-form__input:focus,
.jconfirm .jconfirm-content .exp-account-form__textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.15);
}
.jconfirm .jconfirm-content .exp-account-form__textarea {
    min-height: 84px;
    resize: vertical;
}
.jconfirm .jconfirm-content .exp-account-form__input--error {
    border-color: var(--hs-menu-line-color);
    background: var(--input-error-background-color);
}
.jconfirm .jconfirm-content .exp-account-form__radios {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}
.jconfirm .jconfirm-content .exp-account-form__radios legend {
    width: 100%;
    margin: 0 0 6px;
    padding: 0;
    border: 0;
    float: none;
    font-family: var(--font-family-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
}
.jconfirm .jconfirm-content .exp-account-form__radio {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}
.jconfirm .jconfirm-content .exp-account-form__radio:hover {
    border-color: var(--color-primary);
    background: rgba(0, 176, 240, 0.04);
}
.jconfirm .jconfirm-content .exp-account-form__radio input[type='radio'] {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    accent-color: var(--color-primary);
    cursor: pointer;
}
.jconfirm .jconfirm-content .exp-account-form__radio span {
    flex: 1;
    line-height: 1.3;
}
.jconfirm .jconfirm-content .exp-account-form__radio:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(0, 176, 240, 0.08);
}
.jconfirm .jconfirm-content .exp-account-form__radio:has(input:checked) span {
    color: var(--color-primary);
    font-weight: 600;
}
.jconfirm .jconfirm-content .exp-account-form__success {
    text-align: center;
    padding: 24px 16px;
    color: var(--color-secondary);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .jconfirm .jconfirm-title-c {
        padding: 16px 18px;
    }
    .jconfirm .jconfirm-content {
        padding: 18px;
    }
    .jconfirm .jconfirm-buttons {
        padding: 12px 18px;
        flex-wrap: wrap;
    }
    .jconfirm .jconfirm-buttons button {
        flex: 1;
        min-width: 90px;
    }
}

@media (max-width: 1024px) {
    .exp-my-projects__item {
        grid-template-columns: minmax(0, 1fr) 80px minmax(150px, auto) auto;
        gap: 24px;
    }
}
@media (max-width: 900px) {
    .exp-my-projects__item {
        grid-template-columns: minmax(0, 1fr) 70px auto;
        grid-template-areas:
            'info qty price'
            'actions actions actions';
        gap: 16px 20px;
        padding: 18px 20px;
    }
    .exp-my-projects__item-info {
        grid-area: info;
    }
    .exp-my-projects__item-cell--qty {
        grid-area: qty;
    }
    .exp-my-projects__item-cell--price {
        grid-area: price;
    }
    .exp-my-projects__item-actions {
        grid-area: actions;
        justify-self: end;
        grid-template-columns: repeat(4, minmax(70px, auto));
    }
}
@media (max-width: 640px) {
    .exp-my-projects {
        padding: 24px 0 48px;
    }
    .exp-my-projects__item {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'info info'
            'qty price'
            'actions actions';
        gap: 14px;
        padding: 16px 18px;
    }
    .exp-my-projects__item-cell-value {
        font-size: 14px;
    }
    .exp-my-projects__item-cell--qty .exp-my-projects__item-cell-value {
        font-size: 16px;
    }
    .exp-my-projects__item-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-self: stretch;
    }
    .exp-my-projects__action {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ============================================================
   Project page (single project view) — list of products
   Mirrors .exp-my-projects styling, with an image cell on the
   left of each row instead of the meta-only header.
   ============================================================ */
.exp-project {
    background: var(--account-section-bg);
    padding: 32px 0 64px;
}
.exp-project__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.exp-project__header {
    text-align: center;
    margin-bottom: 32px;
}
.exp-project__title {
    font-family: var(--font-family-main);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: 0.3px;
}
.exp-project__subtitle {
    font-family: var(--font-family-main);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
}
.exp-project__name {
    font-weight: 600;
}

.exp-project__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
}
.exp-project__item {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 80px minmax(150px, auto) auto;
    align-items: center;
    gap: 28px;
    padding: 18px 24px 18px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.25s ease;
}
.exp-project__item::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    background: var(--color-primary);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transform: scaleY(0.4);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}
.exp-project__item:hover {
    background: rgba(255, 255, 255, 0.55);
}
.exp-project__item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
.exp-project__item:last-child {
    border-bottom: none;
}

.exp-project__item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.exp-project__item-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.exp-project__item-image:hover {
    transform: scale(1.03);
}

.exp-project__item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.exp-project__item-title {
    align-self: flex-start;
    font-family: var(--font-family-main);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    line-height: 1.25;
    letter-spacing: 0.1px;
    transition: color 0.2s ease;
}
.exp-project__item-title:hover {
    color: var(--color-primary);
}
.exp-project__item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.exp-project__item-meta-line {
    font-family: var(--font-family-main);
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.4;
    word-break: break-word;
}

.exp-project__item-qty {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    white-space: nowrap;
}
.exp-project__item-price {
    font-family: var(--font-family-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.2;
    white-space: nowrap;
}

.exp-project__item-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(72px, 1fr));
    gap: 6px;
    flex-shrink: 0;
}
.exp-project__action {
    appearance: none;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-family-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: lowercase;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.exp-project__action:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 136, 185, 0.25);
}
.exp-project__action--danger {
    background: var(--hs-menu-line-color);
}
.exp-project__action--danger:hover {
    background: #b91a1f;
    box-shadow: 0 4px 10px rgba(218, 33, 39, 0.25);
}

.exp-project__no-results {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-light);
    font-family: var(--font-family-main);
    font-size: 15px;
    line-height: 1.5;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .exp-project__item {
        grid-template-columns: 84px minmax(0, 1fr) 70px minmax(130px, auto) auto;
        gap: 20px;
    }
    .exp-project__item-image {
        width: 84px;
        height: 84px;
    }
}
@media (max-width: 900px) {
    .exp-project__item {
        grid-template-columns: 84px minmax(0, 1fr) auto;
        grid-template-areas:
            'image info info'
            'image qty price'
            'actions actions actions';
        gap: 12px 20px;
        padding: 18px 20px;
    }
    .exp-project__item-image {
        grid-area: image;
        align-self: start;
    }
    .exp-project__item-info {
        grid-area: info;
    }
    .exp-project__item-qty {
        grid-area: qty;
        align-self: end;
    }
    .exp-project__item-price {
        grid-area: price;
        align-self: end;
        justify-self: end;
    }
    .exp-project__item-actions {
        grid-area: actions;
        justify-self: end;
        grid-template-columns: repeat(2, minmax(80px, auto));
    }
}
@media (max-width: 640px) {
    .exp-project {
        padding: 24px 0 48px;
    }
    .exp-project__subtitle {
        font-size: 18px;
    }
    .exp-project__item {
        grid-template-columns: 72px 1fr;
        grid-template-areas:
            'image info'
            'qty price'
            'actions actions';
        gap: 12px 16px;
        padding: 16px 18px;
    }
    .exp-project__item-image {
        width: 72px;
        height: 72px;
    }
    .exp-project__item-qty {
        justify-self: start;
    }
    .exp-project__item-price {
        justify-self: end;
        font-size: 14px;
    }
    .exp-project__item-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-self: stretch;
    }
    .exp-project__action {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.exp-order-status {
    background: var(--account-section-bg);
    padding: 32px 0 64px;
}
.exp-order-status__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.exp-order-status__search-wrapper {
    max-width: 800px;
    margin: 0 auto 32px;
}
.exp-order-status__search-container {
    position: relative;
}
.exp-order-status__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 5px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.exp-order-status__search-input-wrapper:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
}
.exp-order-status__search-input-icon,
.exp-order-status__search-close {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.25s ease;
}
.exp-order-status__search-input-icon {
    margin-right: 12px;
}
.exp-order-status__search-close {
    margin-left: 12px;
}
.exp-order-status__search-input-icon:hover,
.exp-order-status__search-close:hover {
    color: var(--color-primary);
}
.exp-order-status__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-family-main);
    color: var(--color-text);
    background: transparent;
    padding: 12px 0;
}
.exp-order-status__search-input::placeholder {
    color: #999;
}

.exp-order-status__sort {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    padding: 0 4px;
}
.exp-order-status__sort-label {
    font-family: var(--font-family-main);
    font-size: 12px;
    color: var(--color-text);
    margin-right: 8px;
    letter-spacing: 0.3px;
}
.exp-order-status__sort-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #b5b9bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.exp-order-status__sort-btn svg {
    width: 20px;
    height: 20px;
}
.exp-order-status__sort-btn:hover {
    color: var(--color-text);
}
.exp-order-status__sort-btn--active {
    color: var(--color-primary);
}

.exp-order-status__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.exp-order-status__item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 20px 4px;
}
.exp-order-status__item:last-child {
    border-bottom: none;
}
.exp-order-status__item-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.exp-order-status__item-index {
    flex-shrink: 0;
}

.exp-order-status__row {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 12px;
}
.exp-order-status__cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.exp-order-status__cell-label {
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
}
.exp-order-status__cell-value {
    font-family: var(--font-family-main);
    font-size: 13px;
    color: var(--color-text-light);
    word-break: break-word;
}
.exp-order-status__cell-value--positive {
    color: #2bb24a;
    font-weight: 700;
}
.exp-order-status__cell-value--negative {
    color: var(--hs-menu-line-color);
    font-weight: 700;
}

.exp-order-status__no-results {
    text-align: center;
    padding: 32px;
    color: var(--color-text-light);
    font-family: var(--font-family-main);
    font-size: 14px;
}

@media (max-width: 1280px) {
    .exp-order-status__row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        row-gap: 20px;
    }
}
@media (max-width: 768px) {
    .exp-order-status__item {
        padding: 20px 0;
    }
    .exp-order-status__item-header {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .exp-order-status__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .exp-order-status__cell {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        padding: 10px 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
        gap: 12px;
    }
    .exp-order-status__cell:last-child {
        border-bottom: none;
    }
    .exp-order-status__cell-label {
        font-size: 11px;
    }
    .exp-order-status__cell-value {
        font-size: 13px;
        text-align: right;
    }
}

.exp-account-hero__welcome-group {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.exp-account-hero__welcome-group .exp-account-hero__welcome {
    margin: 0 auto;
    padding-bottom: 8px;
}

.exp-sales-quota {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    width: 100%;
    max-width: 360px;
}
.exp-sales-quota__gauge {
    position: relative;
    width: 100%;
    aspect-ratio: 200 / 120;
}
.exp-sales-quota__svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
.exp-sales-quota__track,
.exp-sales-quota__progress {
    fill: none;
    stroke-width: 14;
    stroke-linecap: butt;
}
.exp-sales-quota__track {
    stroke: rgba(255, 255, 255, 0.35);
}
.exp-sales-quota__progress {
    stroke: var(--color-primary);
    /* Arc length = π × r (r=80) ≈ 251.327 — must match the value used in JS */
    stroke-dasharray: 251.327;
    stroke-dashoffset: 251.327;
    transition: stroke-dashoffset 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.exp-sales-quota__values {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-family-main);
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
}
.exp-sales-quota__separator {
    font-size: 0.62em;
    opacity: 0.85;
}
.exp-sales-quota__caption {
    color: #ffffff;
    font-family: var(--font-family-main);
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0 0;
    text-align: center;
    opacity: 0.95;
}
.exp-sales-quota__percent {
    color: var(--color-primary);
    font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
    .exp-sales-quota__progress {
        transition-duration: 0ms;
    }
}
@media (max-width: 768px) {
    .exp-sales-quota {
        max-width: 280px;
    }
    .exp-sales-quota__caption {
        font-size: 13px;
    }
}

/* ==========================================================================
   OUR TEAM (public page — header section + dropdown)
   ========================================================================== */
.exp-our-team {
    background: #ffffff;
    padding: 64px 0;
}
.exp-our-team__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}
.exp-our-team__title {
    font-family: var(--font-family-main);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 24px;
}
.exp-our-team__title-accent {
    color: var(--color-primary);
    font-weight: 400;
}
.exp-our-team__description {
    font-family: var(--font-family-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 820px;
    margin: 0 auto 32px;
}
.exp-our-team__department {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.exp-our-team__department-select {
    width: 100%;
    padding: 16px 52px 16px 24px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background-color: #ffffff;
    font-family: var(--font-family-main);
    font-size: 16px;
    color: var(--color-text);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Chevron drawn inline so we don't need an external asset. Stroke colour
       hard-coded to the primary blue (--color-primary: #00b0f0) since CSS
       custom properties can't be referenced inside a url(...) data URI. */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300b0f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.exp-our-team__department-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.15);
}
.exp-our-team__department-select:hover {
    border-color: var(--color-primary);
}

/* ==========================================================================
   OUR TEAM MEMBERS (bottom section — AJAX-populated grid of cards)
   ========================================================================== */
.exp-our-team-members {
    background: var(--account-section-bg);
    padding: 60px 0;
}
.exp-our-team-members__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-our-team-members__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .exp-our-team-members__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .exp-our-team-members__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.exp-our-team-members__card {
    background: #ffffff;
    border-radius: 6px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.exp-our-team-members__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.exp-our-team-members__avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--accent-background-color);
    flex-shrink: 0;
}
.exp-our-team-members__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.exp-our-team-members__name {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 8px;
}
.exp-our-team-members__position {
    font-family: var(--font-family-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0 0 20px;
}
.exp-our-team-members__description {
    font-family: var(--font-family-main);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0 0 22px;
    flex: 1;
}
.exp-our-team-members__btn {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-family-main);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}
.exp-our-team-members__btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.exp-contact-hero {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 100%);
    padding: 60px 0 40px;
}
.exp-contact-hero__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-contact-hero__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-contact-hero__title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .exp-contact-hero {
        padding: 40px 0 30px;
    }
    .exp-contact-hero__title {
        font-size: 32px;
    }
}
.exp-contact-hero__subtitle {
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-light);
    max-width: 760px;
    margin-top: 16px;
}
@media (max-width: 768px) {
    .exp-contact-hero__subtitle {
        font-size: 16px;
    }
}

.exp-contact {
    background: linear-gradient(to bottom, #ffffff 0%, var(--accent-background-color) 100%);
}
.exp-contact__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .exp-contact__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Info panel - dark card with footer-style gradient glow */
.exp-contact__info {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--color-secondary);
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.exp-contact__info::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.25;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    transform: translateZ(0);
}
.exp-contact__info-inner {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
}
@media (max-width: 768px) {
    .exp-contact__info-inner {
        padding: 32px 24px;
    }
}
.exp-contact__info-title {
    font-family: var(--font-family-main);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
}
.exp-contact__info-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cccccc;
    margin-top: 4px;
}
.exp-contact__details {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.exp-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.exp-contact__detail-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 176, 240, 0.12);
}
.exp-contact__detail-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    padding-top: 8px;
}
.exp-contact__detail-label {
    color: var(--color-primary);
    font-weight: 600;
    margin-right: 4px;
}
.exp-contact__detail-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.exp-contact__detail-link:hover {
    color: var(--color-primary);
}
.exp-contact__detail-text--link {
    display: inline-block;
    padding-top: 0;
    transition: color 0.3s ease;
}
.exp-contact__detail-text--link:hover {
    color: var(--color-primary);
}
.exp-contact__social {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.exp-contact__social-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #cccccc;
    margin-bottom: 16px;
}
.exp-contact__social-links {
    display: flex;
    gap: 15px;
}
.exp-contact__social-link {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.exp-contact__social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Form panel - white elevated card */
.exp-contact__form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    padding: 48px 40px;
}
@media (max-width: 768px) {
    .exp-contact__form-card {
        padding: 32px 24px;
    }
}
.exp-contact__form-title {
    font-family: var(--font-family-main);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}
.exp-contact__form-intro {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
    margin-bottom: 28px;
}
.exp-contact__req {
    color: var(--color-primary);
}
.exp-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 560px) {
    .exp-contact__form-row {
        grid-template-columns: 1fr;
    }
}
.exp-contact__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.exp-contact__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}
.exp-contact__input,
.exp-contact__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family-main);
    color: var(--color-text);
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.exp-contact__textarea {
    resize: vertical;
    min-height: 140px;
}
.exp-contact__input::-moz-placeholder,
.exp-contact__textarea::-moz-placeholder {
    color: #999;
}
.exp-contact__input::placeholder,
.exp-contact__textarea::placeholder {
    color: #999;
}
.exp-contact__input:focus,
.exp-contact__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.15);
}
.exp-contact__input.error,
.exp-contact__textarea.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}
.exp-contact__actions {
    margin-top: 8px;
}
.exp-contact__actions .btn {
    min-width: 200px;
}
@media (max-width: 560px) {
    .exp-contact__actions .btn {
        width: 100%;
    }
}

/* Map band - full-width embedded map */
.exp-contact-map {
    position: relative;
    margin-top: 60px;
    width: 100%;
}
.exp-contact-map__frame {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}
@media (max-width: 768px) {
    .exp-contact-map__frame {
        height: 340px;
    }
}
.exp-contact-map__gradient {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--color-primary) 0%, #ffffff 50%, var(--color-primary) 100%);
}

/* ==========================================================================
   Agent Locator Page
   ========================================================================== */
.exp-agent-locator__hero {
    background: linear-gradient(to bottom, #c5c7c9 0%, #ffffff 100%);
    padding: 60px 0 40px;
    text-align: center;
}
.exp-agent-locator__hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.exp-agent-locator__hero-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-agent-locator__hero-title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .exp-agent-locator__hero {
        padding: 40px 0 30px;
    }
    .exp-agent-locator__hero-title {
        font-size: 32px;
    }
}
.exp-agent-locator__hero-subtitle {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-top: 16px;
}
@media (max-width: 768px) {
    .exp-agent-locator__hero-subtitle {
        font-size: 15px;
    }
}

.exp-agent-locator__layout {
    position: relative;
    display: flex;
    height: clamp(560px, calc(100vh - 220px), 900px);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

/* Sidebar */
.exp-agent-locator__sidebar {
    position: relative;
    width: 360px;
    max-width: 80%;
    flex-shrink: 0;
    background: #ffffff;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    z-index: 500;
    transition: margin-left 0.3s ease;
}
.exp-agent-locator__sidebar--collapsed {
    margin-left: -361px;
}
.exp-agent-locator__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}
.exp-agent-locator__sidebar-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.exp-agent-locator__sidebar-count {
    background: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.exp-agent-locator__sidebar-collapse {
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}
.exp-agent-locator__sidebar-collapse:hover {
    color: var(--color-primary);
}
.exp-agent-locator__list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}
.exp-agent-locator__empty {
    padding: 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* List items */
.exp-agent-locator__item {
    border-bottom: 1px solid var(--color-border);
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.exp-agent-locator__item:hover,
.exp-agent-locator__item--active {
    background-color: var(--accent-background-color);
}
.exp-agent-locator__item-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.exp-agent-locator__item-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--accent-background-color);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2px 8px;
    flex-shrink: 0;
}
.exp-agent-locator__agent {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-light);
    padding: 6px 0;
}
.exp-agent-locator__agent:not(:last-child) {
    border-bottom: 1px dashed var(--color-border);
}
.exp-agent-locator__agent-name {
    font-weight: 600;
    color: var(--color-text);
}

/* Map */
.exp-agent-locator__map {
    flex: 1;
    min-width: 0;
    height: 100%;
    z-index: 1;
    background: #e8eaed;
}

/* Floating re-open button (visible only when sidebar collapsed) */
.exp-agent-locator__sidebar-toggle {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 600;
    display: none;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 10px 16px 10px 12px;
    font-family: var(--font-family-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease;
}
.exp-agent-locator__sidebar-toggle:hover {
    background: var(--color-primary-dark);
}
.exp-agent-locator__sidebar-toggle--visible {
    display: flex;
}

/* Custom TMS map pin (Leaflet divIcon) */
.exp-agent-locator__pin {
    position: relative;
    width: 46px;
    height: 46px;
}
.exp-agent-locator__pin-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-main);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.exp-agent-locator__pin:hover .exp-agent-locator__pin-circle,
.exp-agent-locator__pin--active .exp-agent-locator__pin-circle {
    transform: scale(1.15);
    background: var(--color-primary-dark);
}

/* Leaflet popup → branded card (scoped to the map) */
.exp-agent-locator__map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
    padding: 0;
}
.exp-agent-locator__map .leaflet-popup-content {
    margin: 0;
    width: 280px !important;
}
.exp-agent-locator__popup {
    padding: 20px 22px;
    font-family: var(--font-family-main);
}
.exp-agent-locator__popup-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 14px;
}
.exp-agent-locator__popup-agent:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.exp-agent-locator__popup-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 6px;
}
.exp-agent-locator__popup-address {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-light);
    text-align: center;
}
.exp-agent-locator__popup-phone {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    margin-top: 8px;
}
.exp-agent-locator__popup-phone:hover {
    color: var(--color-primary);
}
.exp-agent-locator__popup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}
.exp-agent-locator__popup-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}
.exp-agent-locator__popup-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Responsive: sidebar overlays the map on small screens */
@media (max-width: 900px) {
    .exp-agent-locator__layout {
        height: clamp(520px, calc(100vh - 160px), 760px);
    }
    .exp-agent-locator__sidebar {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 320px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }
    .exp-agent-locator__sidebar--collapsed {
        margin-left: -340px;
    }
}

/* Agent Locator: glow on the highlighted city boundary */
.exp-agent-locator__map .exp-agent-locator__zone {
    transition: fill-opacity 0.2s ease;
}

/* Agent Locator: sidebar item info rows with icons */
.exp-agent-locator__item-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.exp-agent-locator__item-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-text-light);
    text-decoration: none;
    font-style: italic;
}
a.exp-agent-locator__item-row {
    transition: color 0.2s ease;
}
a.exp-agent-locator__item-row:hover {
    color: var(--color-primary);
}
.exp-agent-locator__item-row--address {
    font-style: normal;
    color: var(--color-text);
    white-space: pre-line;
}
.exp-agent-locator__item-row span {
    min-width: 0;
    word-break: break-word;
}
.exp-agent-locator__item-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    margin-top: 1px;
}

/* Agent Locator: click reveal — sonar ping + zone glow pulse */
.exp-agent-locator__ping-wrap {
    background: none;
    border: none;
}
.exp-agent-locator__ping {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: rgba(0, 176, 240, 0.12);
    transform: scale(0);
    opacity: 0.85;
    pointer-events: none;
    animation: expAgentPing 1200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.exp-agent-locator__ping--2 {
    animation-delay: 280ms;
}
@keyframes expAgentPing {
    0% {
        transform: scale(0);
        opacity: 0.85;
    }
    70% {
        opacity: 0.25;
    }
    100% {
        transform: scale(9);
        opacity: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .exp-agent-locator__ping {
        animation-duration: 1ms;
    }
}
