﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    line-height: 1.6;
    padding: 20px;
    overflow-x: hidden;
}
.header {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    height: clamp(130px, 8vw, 70px);
    padding: clamp(10px, 2vw, 15px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 40px 0;
    width: calc(100vw - 57px);
    max-width: calc(100vw - 57px);
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 0.8s ease-out 0.2s forwards;
    position: relative;
    z-index: 1000;
}
@keyframes slideDown {
    to { opacity: 1; transform: translateY(0); }
}
.logo {
    display: flex;
    align-items: center;
}
.logo-image {
    height: clamp(120px, 4vw, 38.4px);
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .logo-image {
        height: clamp(120px, 6.4vw, 35.2px);
        max-width: 200px;
    }
}
.nav-menu {
    display: flex;
    gap: clamp(4px, 0.8vw, 8px);
    align-items: center;
    flex: 1;
    justify-content: center;
    max-width: 800px;
}
.nav-btn {
    background: #F0B90B;
    color: #000 !important;
    border: none;
    padding: clamp(4px, 0.8vw, 8px) clamp(6px, 1.2vw, 10px);
    border-radius: 8px;
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(240,185,11,0.4);
    opacity: 0;
    transform: scale(0.6);
    text-align: center;
    white-space: nowrap;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@keyframes appearGlow {
    0% { opacity: 0; transform: scale(0.6); box-shadow: 0 0 0 rgba(240,185,11,0); }
    40% { opacity: 1; transform: scale(1.1); }
    70% { opacity: 1; transform: scale(1); box-shadow: 0 0 30px rgba(240,185,11,1); }
    100% { opacity: 1; transform: scale(1); }
}
.nav-btn.animate-1 { animation: appearGlow 1s ease-out 1.4s forwards; }
.nav-btn.animate-2 { animation: appearGlow 1s ease-out 1.8s forwards; }
.nav-btn.animate-3 { animation: appearGlow 1s ease-out 2.2s forwards; }
.nav-btn.animate-4 { animation: appearGlow 1s ease-out 2.6s forwards; }
.nav-btn.animate-5 { animation: appearGlow 1s ease-out 3.0s forwards; }
.nav-btn.animate-6 { animation: appearGlow 1s ease-out 3.4s forwards; }
.nav-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(240,185,11,0.6), 0 0 20px rgba(240,185,11,0.4);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}
.hamburger {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #0f0f0f;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    flex-direction: column;
    padding: 20px;
    z-index: 1000;
    gap: 12px;
    width: 300px;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu .nav-btn {
    opacity: 1 !important;
    transform: scale(1) !important;
    animation: none !important;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: clamp(10px, 2.5vw, 14px) 20px;
    line-height: 1.6;
}
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.lang-icon {
    font-size: clamp(28px, 5vw, 34px);
    color: #ffffff;
}
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #0f0f0f;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 2000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 400px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
}
.dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown::-webkit-scrollbar {
    width: 8px;
}
.dropdown::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}
.dropdown::-webkit-scrollbar-thumb {
    background: #F0B90B;
    border-radius: 10px;
}
.dropdown::-webkit-scrollbar-thumb:hover {
    background: #d4a017;
}
.lang-option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lang-option:hover {
    background: #F0B90B;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(240,185,11,0.3);
}
@media (max-width: 768px) {
    body { 
        padding: 5px !important;
    }
    .header {
        width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0;
        border-radius: 12px;
        padding: clamp(12px, 3vw, 16px);
        box-sizing: border-box;
    }
    .logo-image {
        height: clamp(70px, 10vw, 42px);
        max-width: 160px;
    }
    .header-right {
        gap: 12px;
    }
    .hamburger {
        display: block;
        font-size: 26px;
    }
    .nav-menu {
        display: none;
    }
    .content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0px 5px 0px 5px !important;
    }
    .content-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0;
    }
    .content-main {
        padding: 20px 0px 0px 0px !important;
        margin: 0;
        width: 100%;
    }
    .content-secondary {
        margin-top: 0 !important;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .binance-banner-inner {
        padding: 30px 20px;
    }
    .mobile-menu {
        width: 88vw;
        max-width: 360px;
        right: 20px;
    }
    .dropdown {
        width: 70vw;
        max-width: 360px;
        right: 0px;
    }
}
@media (max-width: 480px) {
    .dropdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 16px;
    }
    .lang-option {
        padding: 12px 14px;
        font-size: 13px;
    }
    .mobile-menu {
        width: 88vw;
    }
}
.content-wrapper {
    width: calc(100vw - 57px);
    max-width: calc(100vw - 57px);
    margin: 0 auto;
    padding: 0;
}
.content-container {
    display: flex;
    gap: clamp(30px, 4vw, 50px);
    width: 100%;
}
.content-block {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    overflow: hidden;
}
.content-main {
    flex: 1.45;
    max-width: 100%;
    overflow: hidden;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease-out 0.5s forwards;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: clamp(0px, 5vw, 0px) clamp(25px, 6vw, 40px);
    position: relative;
}
.content-secondary {
    flex: 0 0 clamp(260px, 27vw, 320px);
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out 0.7s forwards;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 769px) {
    .content-secondary {
        
    }
}
.binance-banner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.binance-banner-inner {
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    border: 2px solid #555;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
    transition: opacity 0.3s ease;
}
.binance-banner-inner:hover {
    opacity: 0.95;
}
.binance-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.binance-title {
    font-size: clamp(32px, 8vw, 36px);
    font-family:
'Roboto Condensed',
'Noto Sans',
sans-serif;
    font-weight: 900;
    color: #F0B90B;
    letter-spacing: -1px;
    margin-top: 12px;
}
.binance-middle {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.binance-slogan {
    font-size: clamp(12px, 2.8vw, 16px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.binance-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}
.binance-btn {
    background: #F0B90B;
    color: #000;
    padding: clamp(12px, 2.8vw, 16px) clamp(36px, 7vw, 56px);
    border-radius: 8px;
    font-size: clamp(15px, 3.8vw, 19px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    margin-top: clamp(20px, 4vw, 30px);
    animation: pulse 2.5s infinite;
    box-shadow: 0 4px 15px rgba(240,185,11,0.4);
    transition: transform 0.2s ease;
}
.binance-btn:hover {
    transform: translateY(-3px);
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(240,185,11,0.7); }
    50% { box-shadow: 0 0 0 12px rgba(240,185,11,0); }
}
@keyframes slideInFromLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes slideInFromRight { to { opacity: 1; transform: translateX(0); } }
.content-title {
    font-size: clamp(28px, 8vw, 28px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: clamp(16px, 4vw, 24px);
    letter-spacing: -0.02em;
}
.content-subtitle {
    font-size: clamp(16px, 3vw, 16px);
    
    line-height: 1.55;
    max-width: 700px;

    margin-bottom: 0px;
}
.features-title,
.section-title,
.section-title-2 {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 40px 0;
}
.reasons-section {
    width: 100%;
    max-width: 100%;
    padding: 0px 5px 0 5px;
    margin: 0 auto;
}
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.reason-block {
    position: relative;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    height: 320px;
    opacity: 0;
}
.reason-block.visible {
    opacity: 1;
}
.reason-header {
    background: #F0B90B;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 70px;
}
.reason-header .reason-title {
    color: #000;
    font-size: clamp(17px, 3vw, 20px);
    font-weight: 800;
    margin: 0;
    text-align: center;
}
.reason-number {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    z-index: 2;
}
.reason-image-wrapper,
.reason-content {
    position: absolute;
    width: 50%;
    height: calc(100% - 70px);
    top: 70px;
}
.reason-image-wrapper {
    opacity: 0;
    transition: opacity 1s ease-out 0.6s;
    overflow: hidden;
}
.reason-image-wrapper.visible {
    opacity: 1;
}
.reason-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    transform: scale(1.05);
}
.reason-image:hover,
.reason-image:focus {
    transform: scale(1.12);
}
.reason-divider {
    position: absolute;
    top: 70px;
    bottom: 0;
    width: 1px;
    background: #444;
    z-index: 1;
}
.reason-left .reason-divider { right: 50%; }
.reason-right .reason-divider { left: 50%; }
.reason-content {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason-text {
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.4;
    text-align: center;
}
.reason-left .reason-image-wrapper { left: 0; }
.reason-left .reason-content { right: 0; }
.reason-right .reason-image-wrapper { right: 0; }
.reason-right .reason-content { left: 0; }
.reason-block:nth-child(odd) { transform: translateX(-200px); }
.reason-block:nth-child(even) { transform: translateX(200px); }
.reason-block.visible {
    transform: translateX(0);
    transition: opacity 1s ease-out, transform 1.4s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.payment-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.payment-block {
    background: #000000;
    color: #F0B90B;
    border-radius: 12px;
    padding: clamp(14px, 4vw, 18px);
    font-size: clamp(15px, 4vw, 17px);
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    opacity: 0;
    transform: scale(0);
}
.payment-block img {
    height: 2.5em;
    width: auto;
}
.payment-block.animate-1 { animation: popItem 0.6s ease-out 1.2s forwards; }
.payment-block.animate-2 { animation: popItem 0.6s ease-out 1.4s forwards; }
.payment-block.animate-3 { animation: popItem 0.6s ease-out 1.6s forwards; }
.payment-block.animate-4 { animation: popItem 0.6s ease-out 1.8s forwards; }
.payment-block.animate-5 { animation: popItem 0.6s ease-out 2.0s forwards; }
@keyframes popItem { to { opacity: 1; transform: scale(1); } }
@media (min-width: 769px) {
    .payment-blocks-container {
        height: clamp(60px, 10vw, 70px);
        background: #0f0f0f;
        border-radius: 12px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 clamp(15px, 4vw, 20px);
        gap: 10px;
        opacity: 0;
        transform: scale(0.8);
        animation: popInBar 1s ease-out 1s forwards;
    }
    @keyframes popInBar { to { opacity: 1; transform: scale(1); } }
    .payment-block {
        background: #000000;
        color: #F0B90B;
        padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 10px);
        border-radius: 12px;
        font-size: clamp(13px, 2vw, 15px);
        text-align: center;
        white-space: nowrap;
        flex: 1;
        gap: 8px;
    }
    .payment-block img {
        height: 2em;
    }
}
.crypto-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 80px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    cursor: default;
}
.crypto-track {
    display: inline-flex;
    align-items: center;
    height: 100%;
    animation: marquee-crypto 900s linear infinite;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.crypto-track.paused {
    animation-play-state: paused !important;
}
.crypto-item {
    background: #F0B90B;
    color: #000 !important;;
    border: 1px solid #d4a017;
    border-radius: 8px;
    padding: 8px 20px;
    margin: 0 12px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(240,185,11,0.4);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
}
.crypto-item:hover {
    transform: scale(1.08);
}
.crypto-item img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
}
.crypto-tooltip {
    position: fixed;
    background: rgba(25, 25, 25, 0.98);
    color: #ffffff;
    padding: 16px 22px;
    border-radius: 10px;
    border: 1px solid #555;
    font-size: 14px;
    line-height: 1.5;
    max-width: 90vw;
    width: auto;
    max-width: 700px;
    box-sizing: border-box;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    white-space: pre-wrap;
    word-break: break-word;
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
}
.crypto-tooltip.visible {
    opacity: 1;
    visibility: visible;
}
@keyframes marquee-crypto {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.countries-marquee-top {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 80px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}
.countries-track-top {
    display: inline-flex;
    align-items: center;
    height: 100%;
    animation: marquee-countries-top 800s linear infinite;
}
.country-item-top {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 16px;
    margin: 0 12px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.country-item-top img {
    height: 28px;
    width: auto;
    border-radius: 4px;
}
@keyframes marquee-countries-top {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.vertical-blocks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}
.vertical-block {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    padding: 30px 20px;
    text-align: center;
    opacity: 0;
    transform: translateX(150%);
}
.vertical-block:nth-child(odd) {
    transform: translateX(-150%);
}
.vertical-block.animate {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 2.4s ease-out, transform 2.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.how-to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
@media (max-width: 1024px) {
    .how-to-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .how-to-grid {
        grid-template-columns: 1fr;
    }
}
.how-to-block {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    padding: 20px;
    position: relative;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    display: flex;
    flex-direction: column;
    text-align: center !important;
}
.how-to-block.animate {
    opacity: 1;
    transform: scale(1);
}
.how-to-header {
    background: #F0B90B;
    padding: 10px 0;
    text-align: center;
    position: relative;
    margin: -20px -20px 20px -20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.how-to-number-new {
    background: #ffffff;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.how-to-block h3 {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 800;
    margin: 20px 0 12px 0;
    color: #F0B90B;
    text-align: center !important;
}
.how-to-block p {
    font-size: clamp(14px, 3.4vw, 16px);
    line-height: 1.6;
    text-align: center !important;
}
.cta-banner {
    width: 100%;
    margin: 40px 0 60px 0;
}
.cta-banner-inner {
    background: #0f0f0f;
    border: 2px solid #555;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.cta-banner-inner:hover {
    opacity: 0.95;
}
.cta-banner-title {
    font-size: clamp(30px, 7vw, 42px);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.5px;
}
.cta-banner-btn {
    background: #F0B90B;
    color: #000;
    padding: clamp(14px, 3vw, 18px) clamp(50px, 10vw, 80px);
    border-radius: 8px;
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    animation: pulse 2.5s infinite;
    box-shadow: 0 4px 15px rgba(240,185,11,0.4);
    transition: transform 0.2s ease;
}
.cta-banner-btn:hover {
    transform: translateY(-3px);
}
.footer {
    width: calc(100vw - 57px);
    max-width: calc(100vw - 57px);
    margin: 60px auto 40px;
    text-align: center;
    font-size: 14px;
    color: #888;
}
@media (max-width: 768px) {
    .footer {
        width: 100%;
        max-width: 100%;
    }
}
.block-header {
    background: #F0B90B;
    color: #000;
    font-size: clamp(18px, 2.1vw, 20px);
    font-weight: 700;
    padding: 14px 20px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    margin: -30px -20px 0 -20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.block-header::before {
    content: "✔";
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}
.block-image-wrapper {
    width: 100%;
    height: 180px;
    margin: 0;
    overflow: hidden;
    position: relative;
}
.block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    transform: scale(1.05);
}
.block-image:hover,
.block-image:focus {
    transform: scale(1.12);
}
.vertical-block {
    padding: 30px 0 24px 0;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: hidden;
}
.block-content {
    padding: 16px 16px 24px 16px;
}
@media (min-width: 769px) {
    .vertical-blocks-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .block-header {
        margin: -30px -20px 0 -20px;
    }
    .block-image-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
}
@media (max-width: 1024px) {
    .block-image-wrapper {
        display: none;
    }
    .vertical-blocks-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .block-header {
        margin: -30px -20px 16px -20px;
        border-radius: 10px;
    }
    .vertical-block {
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
    .vertical-blocks-grid {
        gap: 24px;
    }
    .vertical-block {
        height: auto !important;
        min-height: unset !important;
        padding: 0 0 24px 0;
        border-radius: 12px;
        overflow: hidden;
    }
    .block-header {
        border-radius: 10px 10px 0 0 !important;
        margin: 0 -20px 20px -20px !important;
        padding: 5px 24px;
        font-size: clamp(17px, 4.2vw, 19px);
    }
    .block-content {
        padding: 0 10px 0px 10px;
    }
    .block-image-wrapper {
        display: none !important;
    }
    .block-content p {
        margin: 0;
        font-size: clamp(14px, 3.4vw, 16px);
        line-height: 1.6;
    }
}
.how-to-block {
    text-align: center !important;
}
.how-to-block h3,
.how-to-block p {
    text-align: center !important;
}
.how-to-header {
    text-align: center !important;
}
.accordion-section {
    max-width: 100%;
    margin: 0 auto 40px;
}
.accordion-item {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.accordion-header {
    background: #0f0f0f;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.3s;
}
.accordion-header:hover {
    background: #222;
}
.accordion-number {
    background: #F0B90B;
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
}
.accordion-header h3 {
    margin: 0;
    font-size: clamp(17px, 2.2vw, 20px);
    color: #ffffff;
    flex: 1;
}
.accordion-toggle {
    font-size: 32px;
    font-weight: 300;
    color: #F0B90B;
    transition: transform 0.4s;
}
.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.3s;
    padding: 0 24px;
}
.accordion-item.active .accordion-content {
    max-height: none;
    padding: 24px;
}
.accordion-content p {
    margin: 0 0 16px 0;
    font-size: clamp(14px, 3.4vw, 16px);
    
    line-height: 1.7;
}
.accordion-content p:last-child {
    margin-bottom: 0;
}
.faq-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto 60px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    padding: 40px;
    overflow: hidden;
}
.faq-carousel-viewport {
    overflow: hidden;
    width: 100%;
}
.faq-carousel-wrapper {
    display: flex;
    gap: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    scroll-behavior: smooth;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.faq-carousel-wrapper::-webkit-scrollbar {
    display: none;
}
.faq-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0 !important;
    cursor: default;
    min-height: 180px;
    opacity: 0;
    transform: scale(0.3);
    overflow: hidden;
}
.faq-item.animate {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item:nth-child(1) { transition-delay: 0.2s; }
.faq-item:nth-child(2) { transition-delay: 0.5s; }
.faq-item:nth-child(3) { transition-delay: 0.8s; }
.faq-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #F0B90B;
    width: 50px;
    height: 50px;
    border: none;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    
}
.faq-arrow:hover {
    color: #ffd966;
    transform: translateY(-50%) scale(1.2);
}
.faq-prev {
    left: 10px;
}
.faq-next {
    right: 10px;
}
@media (min-width: 769px) {
    .faq-carousel-container {
        padding: 40px 80px;
    }
    .faq-carousel-wrapper {
        gap: 0;
        scroll-snap-type: x mandatory;
        overflow-x: scroll;
    }
    .faq-item {
        flex: 0 0 100%;
        scroll-snap-align: center;
        min-height: 220px;
    }
    .faq-item h4 {
        background: #F0B90B !important;
        color: #000;
        font-weight: 800;
        font-size: clamp(18px, 2.2vw, 21px);
        padding: 14px 20px;
        margin: 0 !important;
        text-align: center;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        line-height: 1.3;
    }
    .faq-item p {
        padding: 20px 24px 28px;
        margin: 0;
        font-size: clamp(14.5px, 1.9vw, 16px);
        line-height: 1.55;
        color: #e0e0e0;
    }
    .faq-arrow {
        width: 60px;
        height: 60px;
        font-size: 52px;
    }
    .faq-prev {
        left: 20px;
    }
    .faq-next {
        right: 20px;
    }
}
@media (max-width: 768px) {
    .faq-carousel-container {
        padding: 30px 60px;
    }
    .faq-carousel-wrapper {
        gap: 0;
        scroll-snap-type: x mandatory;
    }
    .faq-item {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 10px !important;
        min-height: 200px;
    }
    .faq-item h4 {
        color: #F0B90B !important;
        text-align: center;
        font-size: 19px;
        margin-bottom: 14px;
    }
    .faq-item p {
        font-size: 14.8px;
    }
    .faq-arrow {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
    .faq-prev {
        left: 5px;
    }
    .faq-next {
        right: 5px;
    }
}
@media (max-width: 480px) {
    .faq-carousel-container {
        padding: 20px 30px;
    }
    .faq-item {
        padding: 10px !important;
        min-height: 190px;
    }
    .faq-item h4 {
        color: #F0B90B !important;
        text-align: center;
        font-size: 18px;
    }
    .faq-item p {
        font-size: 16px;
    }
    .faq-arrow {
        width: 44px;
        height: 44px;
        font-size: 36px;
    }
    .faq-prev {
        left: 0px;
    }
    .faq-next {
        right: 0px;
    }
}
.faq-item h4 {
    color: #000;
}
@media (max-width: 768px) {
    .reasons-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .reason-block {
        height: auto !important;
        min-height: unset !important;
        padding: 20px 10px 20px 10px;
        background: #0f0f0f;
        border: 1px solid #333;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        box-sizing: border-box;
    }
    .reason-image-wrapper,
    .reason-divider {
        display: none !important;
    }
    .reason-header {
        background: transparent !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 0 16px 0 !important;
        position: relative !important;
        text-align: center !important;
    }
    .reason-title {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: #F0B90B !important;
        text-align: center !important;
        margin: 0 auto 8px auto !important;
        line-height: 1.3 !important;
        display: inline-block;
        max-width: 80%;
    }
    .reason-number {
        display: flex !important;
        position: absolute !important;
        left: 5px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: #ffffff;
        color: #000000;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50%;
        font-size: 24px !important;
        font-weight: 900;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .reason-content {
        position: static !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    .reason-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
        
        margin: 0 !important;
        text-align: center !important;
        width: 100% !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }
    .reason-block,
    .reason-block.visible,
    .reason-block:nth-child(odd),
    .reason-block:nth-child(even) {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}
a {
    text-decoration: none !important;
    color: inherit !important;
}
.header a,
.nav-menu a,
.mobile-menu a {
    text-decoration: none !important;
    color: inherit !important;
}
.header a:hover,
.nav-menu a:hover,
.mobile-menu a:hover {
    text-decoration: none !important;
    color: inherit !important;
}
ul, ol {
    margin: 1.4em 0 1.4em 2em;
    padding: 0;
    font-size: clamp(14px, 3.4vw, 16px);
}

ul {
    list-style: disc outside;
}

ol {
    list-style: decimal outside;
}

li {
    margin-bottom: 0.8em;
    padding-left: 0.4em;
}

/* вложенные списки */
ul ul, ol ol, ul ol, ol ul {
    margin: 0.8em 0 0.8em 1.6em;
}