@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/ppneuemontreal-book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/ppneuemontreal-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../fonts/ppneuemontreal-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --dp-bg-header: #3a3a3a;
    --dp-text-white: #ffffff;
    --dp-text-black: #121212;
    --color-background: 255,255,255;
    --header-radius: 45px;
    --header-height-mobile: 60px;
    --header-height-desktop: 80px;
    --font-body-family: 'PP Neue Montreal', sans-serif;
    --menu-bg-fill-light: #ffffff;
    --menu-bg-stroke: rgba(0, 0, 0, 0.1);
    --menu-border-rad: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body-family);
    background-color: #ffffff;
    color: var(--dp-text-black);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
}

.dp-header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1005;
    display: flex;
    justify-content: center;
    transition: top 0.3s ease;
}

.dp-header {
    background-color: var(--dp-bg-header);
    color: var(--dp-text-white);
    width: calc(100% - 100px);
    max-width: 1920px;
    border-radius: var(--header-radius);
    height: var(--header-height-desktop);
    padding: 0 40px;
    display: grid;
    grid-template-columns: 200px auto 200px;
    align-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: background-color 0.3s, color 0.3s, border-radius 0.3s;
}

.dp-header.is-menu-open {
    background-color: #ffffff;
    color: #000000;
    border-radius: 45px 45px 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.dp-header.is-menu-open .dp-logo {
    color: #000000;
}

.dp-header.is-menu-open .dp-menu-link {
    color: #000000;
}

.dp-header-left {
    display: none;
}

.dp-menu-toggle {
    display: none;
}

.dp-header-center-logo {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.dp-logo {
    display: flex;
    align-items: center;
    width: 200px;
    line-height: 0;
    color: var(--dp-text-white);
    position: relative;
    top: 10px;
    transition: color 0.3s;
}

.dp-logo svg {
    width: 100%;
    height: auto;
    fill: currentColor;
    display: block;
    vertical-align: middle;
}

.dp-header-nav {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.dp-menu {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.dp-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.dp-menu-link {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--dp-text-white);
    padding: 0;
    margin: 0;
    line-height: 1;
    position: relative;
    top: -10px;
    transition: color 0.3s;
    cursor: pointer;
}

.menu-arrow {
    display: none;
}

.dp-header-right-empty {
    grid-column: 3;
}

.dp-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 30px 40px 50px;
    border-radius: 0 0 45px 45px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dp-mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dp-mega-container {
    max-width: 1600px;
    margin: 0 auto;
}

.dp-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dp-mega-item {
    height: 350px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.dp-mega-card {
    display: block;
    width: 100%;
    height: 100%;
    color: #ffffff !important;
    text-decoration: none !important;
    position: relative;
}

.dp-mega-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.5s ease;
}

.dp-mega-card:hover .dp-mega-bg {
    transform: scale(1.05);
}

.dp-mega-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.dp-mega-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.dp-mega-text {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
    opacity: 0.9;
}

.dp-mega-arrow {
    align-self: flex-end;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.dp-results-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 0 0 45px 45px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dp-results-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dp-results-list {
    list-style: none;
    margin: 0 auto;
    max-width: 1600px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0 30px;
}

.dp-results-item {
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.dp-results-item:last-child {
    border-bottom: none;
}

.dp-results-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 24px;
    font-family: 'PP Neue Montreal', sans-serif;
    font-weight: 400;
    padding: 20px 0;
    transition: opacity 0.3s;
    width: 100%;
}

.dp-results-link:hover {
    opacity: 0.7;
}

.dp-link-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.dp-link-arrow-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.dp-results-link:hover .dp-link-arrow-icon {
    border-color: #000;
}

.dp-footer {
    background: linear-gradient(360deg, rgba(154, 160, 129, 1) 45%, rgba(213, 218, 187, 1) 100%);
    color: #ffffff;
    padding: 75px 40px 40px;
    margin-top: 0;
}
.dp-footer-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}
.dp-footer-top {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    margin-bottom: 60px;
}
.dp-footer-heading {
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}
.dp-footer-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 400px;
    color: #ffffff;
    opacity: 0.9;
}
.dp-newsletter-form {
    max-width: 450px;
    margin-bottom: 30px;
}
.dp-input-group {
    position: relative;
    border: 1px solid #ffffff;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 50px;
}
.dp-input-email {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    height: 100%;
}
.dp-input-email::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.dp-submit-btn {
    background: transparent;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.dp-social-icons {
    display: flex;
    gap: 20px;
}
.dp-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: opacity 0.3s;
}
.dp-icon:hover {
    opacity: 0.7;
}
.dp-footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dp-footer-col ul {
    list-style: none;
    padding: 0;
}
.dp-footer-col li {
    margin-bottom: 12px;
}
.dp-footer-col a {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.3s;
}
.dp-footer-col a:hover {
    opacity: 1;
    text-decoration-thickness: 2px;
}
.dp-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 40px 0;
    width: 100%;
}
.dp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.dp-footer-mesh-logo svg {
    width: 80px;
    height: auto;
    opacity: 0.9;
}
.dp-footer-tagline {
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}




/* =========================================
   12. TRADE MENU STYLES
   ========================================= */
   .dp-trade-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    width: 100%;
}

/* Карточка в Trade (Баннер) */
.dp-trade-card {
    display: flex; /* Изменено с block на flex, чтобы растянуть контент */
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

.dp-trade-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.5s ease;
}

.dp-trade-card:hover .dp-trade-bg {
    transform: scale(1.05);
}

.dp-trade-card-content {
    position: relative;
    z-index: 2;
    flex: 1; /* Растягиваем контент на всю высоту карточки */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    color: #ffffff;
}

.dp-trade-card-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'PP Neue Montreal', sans-serif;
}

.dp-trade-card-text {
    font-size: 16px;
    max-width: 300px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Стрелка - фиксируем внизу */
.dp-trade-card-content .dp-mega-arrow {
    position: absolute;
    bottom: 30px; /* Отступ снизу */
    left: 40px;   /* Отступ слева */
    margin: 0;
    z-index: 5;
}





















@media (max-width: 900px) {
    .dp-footer {
        padding: 40px 20px;
    }
    .dp-footer-wrapper {
        padding: 0;
    }
    .dp-footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .dp-footer-links-group {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dp-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .dp-footer-tagline {
        font-size: 32px;
    }
}
.dp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.dp-modal.is-visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.dp-modal-content {
    background-color: #ffffff;
    color: #121212;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.dp-modal-close {
    color: #aaaaaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.dp-modal-close:hover,
.dp-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.dp-modal-title {
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}
.dp-modal-text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}
.dp-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
.dp-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}
.dp-container-fluid {
    width: 100%;
    padding: 0;
}
.dp-section-title {
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dp-text-black);
}
.dp-btn {
    display: inline-block;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid currentColor;
}
.dp-hero-section {
    padding: 0;
    background-color: #ffffff;
    margin-top: 0;
}
.dp-hero-slide {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.dp-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.dp-hero-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}
.dp-hero-content .dp-btn-white {
    color: #fff;
    background: #000;
    border-color: #000;
}
.dp-hero-content .dp-btn-white:hover {
    background: transparent;
    color: #000;
}
.dp-press-section {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}
.dp-press-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.dp-press-item:hover {
    opacity: 1;
}
.dp-press-item img {
    max-height: 40px;
    width: auto !important;
}
.dp-features-section {
    padding: 100px 0;
    background-color: #fff;
}
.dp-features-wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.dp-features-left {
    width: 30%;
    padding-left: 40px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.dp-features-left .dp-section-title {
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.1;
    font-size: 56px;
}
.dp-carousel-nav {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.dp-nav-prev,
.dp-nav-next {
    background: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
    margin: 0;
}
.dp-nav-prev:hover,
.dp-nav-next:hover {
    background: #000;
    color: #fff;
}
.dp-features-right {
    width: 70%;
    overflow: hidden;
    padding-left: 20px;
}
.dp-feature-card {
    text-align: left;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #121212;
    border-radius: 30px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    transition: all 0.3s ease;
    margin-right: 20px;
}
.dp-feature-card:hover {
    background-color: #f8f8f8;
}
.dp-feature-icon img {
    width: 60px !important;
    height: 60px;
    margin: 0 0 30px 0;
    display: block;
}
.dp-feature-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}
.dp-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.dp-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.dp-grid-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    height: 700px;
}
.dp-grid-image {
    width: 100%;
    height: 100%;
}
.dp-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.dp-grid-card:hover .dp-grid-image img {
    transform: scale(1.05);
}
.dp-grid-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #fff;
    z-index: 2;
}
.dp-grid-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
}
.dp-grid-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.dp-link-arrow {
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 25px;
    transition: background 0.3s, color 0.3s;
}
.dp-link-arrow:hover {
    background: #fff;
    color: #000;
}
.dp-link-arrow svg {
    transition: transform 0.3s;
}
.dp-link-arrow:hover svg {
    transform: translateX(5px);
}
.dp-promo-section {
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.dp-promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.dp-promo-image img {
    width: 100%;
    height: auto;
    display: block;
}
.dp-promo-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}
.dp-promo-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}
.dp-btn-transparent {
    color: #fff;
    border-color: #fff;
    background: transparent;
}
.dp-btn-transparent:hover {
    background: #fff;
    color: #000;
}
.dp-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.dp-hotspot-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
}
.dp-hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 10px 15px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.dp-hotspot:hover .dp-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}
@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.dp-blog-section {
    background-color: #ffffff;
    padding-bottom: 80px;
}
.dp-blog-section .owl-stage {
    display: flex;
}
.dp-blog-card {
    background: #fff;
    border: none;
    margin-bottom: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.dp-blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}
.dp-blog-content {
    padding: 30px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.dp-blog-content h3 {
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #121212;
    min-height: 2.4em;
}
.dp-blog-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 30px;
}
.dp-read-more {
    display: inline-block;
    text-decoration: none;
    color: #121212;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #121212;
    border-radius: 50px;
    padding: 12px 35px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}
.dp-read-more:hover {
    background-color: #121212;
    color: #ffffff;
}
.dp-blog-section .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}
.dp-blog-section .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #e0e0e0 !important;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.dp-blog-section .owl-dot.active span {
    background: #000000 !important;
    transform: scale(1.2);
}
.dp-blog-section .owl-nav {
    display: none;
}
@media (max-width: 1199px) {
    .dp-features-wrapper {
        flex-direction: column;
    }
    .dp-features-left {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    .dp-features-right {
        width: 100%;
        padding-left: 20px;
    }
    .dp-section-title {
        font-size: 32px;
        text-align: center;
    }
    .dp-features-left .dp-section-title {
        text-align: center;
    }
    .dp-carousel-nav {
        justify-content: center;
    }
    .dp-grid-2-col, .dp-promo-content {
        grid-template-columns: 1fr;
    }
    .dp-hero-slide {
        height: auto;
    }
    .dp-hero-image img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }
    .dp-container {
        padding: 0 20px;
    }
    .dp-promo-text h2 {
        font-size: 32px;
    }
    .dp-grid-card {
        height: 500px;
    }
    .dp-grid-image img {
        height: 100%;
        object-fit: cover;
    }
    .dp-blog-content h3 {
        min-height: auto;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1232px) {
    body {
        padding-top: 0;
    }
    .dp-header-wrapper {
        top: 0;
    }
    .dp-header {
        width: 100%;
        margin: 0;
        border-radius: 0;
        min-height: 60px;
        height: auto;
        padding: 10px 20px;
        grid-template-columns: 40px 1fr 40px;
    }
    .dp-header-left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        grid-column: 1;
        position: relative;
        z-index: 2020;
    }
    .dp-menu-toggle {
        display: block;
        position: relative;
        color: #ffffff;
        width: 30px;
        height: 30px;
    }
    .dp-menu-toggle svg {
        position: absolute;
        top: 3px;
        left: 0;
        width: 24px;
        height: 24px;
        transition: opacity 0.2s ease;
    }
    .dp-icon-burger {
        display: block !important;
        opacity: 1 !important;
    }
    .dp-icon-cross-black {
        display: none !important;
        opacity: 0 !important;
    }
    .dp-menu-toggle.is-active .dp-icon-burger {
        display: none !important;
        opacity: 0 !important;
    }
    .dp-menu-toggle.is-active .dp-icon-cross-black {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .dp-header-center-logo {
        grid-column: 2;
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 2020;
    }
    .dp-logo {
        width: 140px;
        top: 0 !important;
    }
    body.no-scroll .dp-logo {
        color: #000000 !important;
    }
    .dp-header-right-empty {
        grid-column: 3;
    }
    .dp-header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        color: #000000;
        display: block;
        padding-top: 80px;
        padding-left: 24px;
        padding-right: 24px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
        overflow-y: auto;
    }
    .dp-header-nav.is-active {
        transform: translateX(0);
    }
    .dp-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: auto;
        display: block;
    }
    .dp-menu li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        width: 100%;
        display: block;
        height: auto;
    }
    .dp-menu-link {
        font-size: 16px;
        font-weight: 400;
        text-transform: none;
        color: #000000;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: auto;
        top: 0 !important;
    }
    
    .dp-mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 20px;
        width: 100%;
    }
    .dp-mobile-close-btn {
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        cursor: pointer;
    }
    .dp-mobile-logo {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        margin-right: 40px;
        color: #000;
    }
    .menu-arrow {
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: 1px solid #e0e0e0;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        padding: 0;
        margin-left: 10px;
    }
    .menu-arrow svg {
        display: block;
        width: 12px;
        height: 12px;
        margin: 0;
    }

    .dp-mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background-color: transparent;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 15px;
        padding-left: 0;
    }
    .dp-mega-menu.is-open {
        display: block;
        animation: slideDown 0.3s ease;
    }
    .dp-mega-container {
        padding: 0;
    }
    .dp-mega-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .dp-mega-item {
        height: 180px !important;
        min-height: 180px !important;
        border-radius: 16px;
        overflow: hidden;
        border: none;
        position: relative;
        width: 100%;
    }
    .dp-mega-bg {
        height: 100% !important;
        object-fit: cover !important;
        filter: brightness(0.85);
    }
    .dp-mega-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    }
    .dp-mega-title {
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 5px;
    }
    .dp-mega-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.3;
        max-width: 80%;
        display: block;
    }
    .dp-mega-arrow {
        position: absolute;
        bottom: 20px;
        left: 20px;
        margin: 0;
        width: 32px;
        height: 32px;
        border: 1px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }
    
    .dp-results-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: transparent;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 15px;
    }
    .dp-results-menu.is-open {
        display: block;
        animation: slideDown 0.3s ease;
    }
    .dp-results-list {
        padding: 0 20px;
        border-radius: 16px;
    }
    .dp-results-link {
        font-size: 16px;
        padding: 20px 0;
    }
    .dp-link-arrow-icon {
        width: 30px;
        height: 30px;
    }
    .dp-link-arrow-icon svg {
        width: 10px;
        height: 10px;
    }

    .menu-arrow .icon-arrow { display: block !important; }
    .menu-arrow .icon-close { display: none !important; }

    .dp-menu-link.is-active .menu-arrow .icon-arrow {
        display: none !important;
    }
    .dp-menu-link.is-active .menu-arrow .icon-close {
        display: block !important;
    }
    .dp-menu-link.is-active .menu-arrow {
        background-color: #000 !important;
        color: #fff !important;
        border-color: #000 !important;
        transform: none !important;
    }
    
    .menu-arrow svg {
        width: 12px !important;
        height: 12px !important;
        margin: 0 !important;
    }
    /* --- TRADE MOBILE OVERRIDES --- */
    .dp-trade-grid {
        display: flex;
        flex-direction: column-reverse; /* Сначала ссылки (снизу в коде), потом карточка? Нет, обычно наоборот. Сделаем column */
        flex-direction: column;
        gap: 15px;
    }

    /* На мобильном карточка идет первой (или второй, если поменять order) */
    .dp-trade-col-card {
        order: 1; /* Карточка EOS-X сверху */
        width: 100%;
    }

    .dp-trade-col-links {
        order: 2; /* Ссылки снизу */
        width: 100%;
    }

    /* Стили карточки на мобильном */
    .dp-trade-card {
        min-height: 220px;
        border-radius: 16px;
    }
    
    .dp-trade-card-content {
        padding: 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    }

    .dp-trade-card-title {
        font-size: 20px;
    }
    
    .dp-trade-card-text {
        font-size: 13px;
        max-width: 80%;
    }

    .dp-trade-card-content .dp-mega-arrow {
        bottom: 20px;
        left: 20px;
    }
}


/* =========================================
   COMMON MODULES (FORM, ACCORDION, BLOG, HIW)
   ========================================= */

/* --- 1. FORMS (Register Warranty) --- */
.dp-register-section {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

.dp-register-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.dp-register-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.dp-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 30px;
}

.dp-warranty-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dp-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #121212;
}

.dp-input, .dp-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'PP Neue Montreal', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none; /* Убираем стандартные стили браузера */
}

.dp-input:focus, .dp-select:focus {
    border-color: #121212;
    outline: none;
}

/* --- 2. ACCORDIONS (Warranty & Distributors) --- */
.dp-page-header {
    text-align: center;
    padding-bottom: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.dp-intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.dp-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    border-top: 1px solid #e0e0e0;
}

.dp-accordion-section-title {
    font-size: 24px;
    font-weight: 400;
    margin: 40px 0 20px;
    text-align: center;
}

.dp-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.dp-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #121212;
    transition: opacity 0.3s;
}

.dp-accordion-trigger:hover {
    opacity: 0.7;
}

.dp-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.dp-accordion-item.active .dp-accordion-icon {
    transform: rotate(180deg);
}

.dp-accordion-content {
    display: none; /* JS переключит это */
    padding-bottom: 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.dp-help-section {
    text-align: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.dp-help-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* --- 3. BLOG POST LAYOUT --- */
.dp-blog-post-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.dp-blog-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.dp-article-header {
    margin-bottom: 30px;
}

.dp-article-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
}

.dp-article-date {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #777;
    position: relative;
    padding-left: 15px;
}
.dp-article-date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.dp-article-hero {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.dp-article-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.dp-article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.dp-link-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Sidebar */
.dp-sidebar {
    padding-left: 40px;
    border-left: 1px solid #e0e0e0;
}

.dp-sidebar-widget {
    margin-bottom: 50px;
}

.dp-widget-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-social-share-list {
    display: flex;
    gap: 15px;
}

.dp-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
    transition: all 0.3s;
}

.dp-social-link:hover {
    background: #121212;
    color: #fff;
    border-color: #121212;
}

.dp-category-list li {
    margin-bottom: 15px;
}

.dp-category-list a {
    font-size: 16px;
    color: #555;
    transition: color 0.3s;
}

.dp-category-list a:hover,
.dp-category-list a.active {
    color: #121212;
    font-weight: 500;
    text-decoration: underline;
}

/* --- 4. AFFILIATE & SPLIT LAYOUTS --- */
.dp-affiliate-section {
    padding-top: 80px;
}

.dp-affiliate-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dp-affiliate-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.dp-affiliate-content li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.dp-affiliate-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.dp-affiliate-image-wrapper img {
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- 5. HOW IT WORKS (Interactive) --- */
.dp-concern-carousel-wrapper {
    margin-bottom: 50px;
    padding: 0 40px; /* Отступы для стрелок слайдера, если нужно */
}

/* Кнопки проблем (Pills) */
.dp-concern-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: #fff;
    color: #121212;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    margin-right: 10px;
}

.dp-concern-btn:hover,
.dp-concern-btn.active {
    background: #121212;
    color: #fff;
    border-color: #121212;
}

/* Display Area */
.dp-content-display {
    background: #f5f5f5;
    border-radius: 30px;
    padding: 60px;
    margin-top: 40px;
}

.dp-display-title {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.dp-display-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.dp-main-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dp-science-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.dp-science-title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.dp-btn-text-only {
    text-decoration: underline;
    font-weight: 600;
    margin-top: 20px;
    padding: 0;
    border: none !important;
}

/* Wavelength Circles */
.dp-wavelengths {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dp-wave-card {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    font-size: 14px;
    line-height: 1.2;
}

.dp-wave-card span {
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.bg-red { background: linear-gradient(135deg, #ff4d4d, #cc0000); }
.bg-blue { background: linear-gradient(135deg, #4d79ff, #002299); }
.bg-green { background: linear-gradient(135deg, #4dff88, #009933); }
.bg-nir { background: linear-gradient(135deg, #e0e0e0, #888888); color: #000; }

/* =========================================
   MOBILE MEDIA QUERIES (Unified)
   ========================================= */
@media (max-width: 991px) {
    /* Forms */
    .dp-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dp-form-wrapper {
        padding: 30px 20px;
    }

    /* Blog */
    .dp-blog-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dp-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
    }
    .dp-article-title {
        font-size: 28px;
    }

    /* Affiliate / Split Layouts */
    .dp-affiliate-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column-reverse; /* Картинка сверху или снизу по желанию */
    }
    .dp-affiliate-image-wrapper {
        min-height: 300px;
        width: 100%;
    }

    /* How It Works */
    .dp-display-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dp-content-display {
        padding: 30px;
    }
    .dp-wavelengths {
        justify-content: center;
    }
    .dp-display-title {
        font-size: 28px;
    }
    
    /* General spacing */
    .dp-section {
        padding: 40px 0;
    }
    .dp-page-header {
        padding-top: 40px;
    }
}
/* =========================================
   PAGE: BECOME AN AFFILIATE (Партнерская программа)
   ========================================= */

/* 1. Отступы секции */
.dp-affiliate-section {
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

/* 2. Сетка: Текст слева, Картинка справа */
.dp-affiliate-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Делим экран пополам */
    gap: 80px; /* Большой отступ между текстом и фото */
    align-items: center; /* Вертикальное центрирование */
}

/* 3. Оформление текста */
.dp-affiliate-content .dp-section-title {
    text-align: left !important; /* Принудительно выравниваем заголовок влево */
    margin-bottom: 30px;
}

.dp-affiliate-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* Списки (ul/li) */
.dp-affiliate-content ul {
    list-style: disc; /* Точки списка */
    padding-left: 20px; /* Отступ слева */
    margin-bottom: 30px;
}

.dp-affiliate-content li {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

/* 4. Блок с картинкой */
.dp-affiliate-image-wrapper {
    position: relative;
    border-radius: 20px; /* Скругление углов */
    overflow: hidden;
    height: 100%;
    min-height: 500px; /* Чтобы картинка была высокой */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dp-affiliate-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполнение контейнера без искажений */
    display: block;
}

/* 5. Кнопка и подвал текста */
.dp-btn-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
}

.dp-small-text {
    font-size: 14px;
    color: #777;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 40px;
    line-height: 1.5;
}

/* 6. АДАПТАЦИЯ ПОД МОБИЛЬНЫЕ */
@media (max-width: 991px) {
    .dp-affiliate-layout {
        grid-template-columns: 1fr; /* Одна колонка */
        display: flex;
        flex-direction: column-reverse; /* Сначала картинка, потом текст (снизу) */
        gap: 40px;
    }

    .dp-affiliate-image-wrapper {
        min-height: 300px; /* Уменьшаем высоту картинки на мобиле */
        width: 100%;
    }

    .dp-affiliate-content .dp-section-title {
        font-size: 32px; /* Чуть меньше заголовок */
        text-align: center !important; /* На мобиле можно по центру */
    }
    
    .dp-btn-wrapper {
        text-align: center; /* Центрируем кнопку */
    }
}