body {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    background-color: #0f0f0f;
}

.btn-primary {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #0f0f0f;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 230, 118, 0.4);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.6);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.drone-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.input-field {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.input-field:focus {
    border-color: #00e676;
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: #0f0f0f;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.green-border {
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.green-border-bottom {
    border-bottom: 1px solid rgba(0, 230, 118, 0.3);
}

.green-border-top {
    border-top: 1px solid rgba(0, 230, 118, 0.3);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 230, 118, 0) 0%, rgba(0, 230, 118, 0.5) 50%, rgba(0, 230, 118, 0) 100%);
}

.btn-outline {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-outline:hover::before {
    opacity: 1;
}

#publicOfferModal::-webkit-scrollbar,
#publicOfferModal .scrollbar::-webkit-scrollbar {
    width: 8px;
}
#publicOfferModal::-webkit-scrollbar-track,
#publicOfferModal .scrollbar::-webkit-scrollbar-track {
    background: #1a1a1a;
}
#publicOfferModal::-webkit-scrollbar-thumb,
#publicOfferModal .scrollbar::-webkit-scrollbar-thumb {
    background-color: #00e676;
    border-radius: 4px;
    border: 2px solid #1a1a1a;
}

#publicOfferModal {
    scrollbar-color: #00e676 #1a1a1a;
    scrollbar-width: thin;
}

.KeyCRM-toggleButtonContainer {
    bottom: 37px !important;
    right: 20px !important;
}

.KeyCRM-toggleButton {
    background-color: #9428b8 !important;
    border-radius: 50% !important;
}

.KeyCRM-toggleButton:before, .KeyCRM-toggleButton:after {
    content: '';
    position: absolute;
    border: 2px solid #9428b8;
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.KeyCRM-toggleButton:after {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.0);
        opacity: 0;
    }
}

.banner {
    position: relative;
    background-color: #0a0a0a;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.car-visual {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1000px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-placeholder {
    width: 1000px;
    height: 583px;
    background: #141414;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FF41;
    font-size: 20px;
    text-align: center;
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.car-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0,255,65,0.03) 50%, transparent 70%);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.car-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 1000px;
    height: 100%;
    background: linear-gradient(to right, #0a0a0a 0%, rgba(10,10,10,0.2) 30%, transparent 70%);
}

.content {
    position: relative;
    z-index: 10;
    padding: 60px;
    max-width: 650px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exclusive-badge {
    display: inline-block;
    border: 1px solid #00FF41;
    color: #00FF41;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: flicker 3s ease-in-out infinite, slideRight 1s ease-out;
    position: relative;
    overflow: hidden;
}

.exclusive-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,65,0.3), transparent);
    animation: scan-badge 3s linear infinite;
}

@keyframes scan-badge {
    from { left: -100%; }
    to { left: 100%; }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.mega-text {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-green {
    color: #00FF41;
    font-weight: 700;
    display: inline-block;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0,255,65,0.5);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 0 20px rgba(0,255,65,0.8);
    }
}

.title {
    font-size: 24px;
    font-weight: bold;
}

.subtitle {
    font-size: 20px;
    color: #B0B0B0;
    margin: 20px 0 40px 0;
    font-weight: 400;
    line-height: 1.5;
}

.subtitle-bottom {
    margin: 40px 0;
    color: #B0B0B0;
    font-weight: 400;
    line-height: 1.5;
}

.steps {
    margin: 0 0 40px 0;
}

.step {
    color: #FFFFFF;
    font-size: 18px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards;
}

.step:nth-child(1) { animation-delay: 0.3s; }
.step:nth-child(2) { animation-delay: 0.5s; }
.step:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    color: #00FF41;
    font-weight: 700;
    margin-right: 15px;
    font-size: 20px;
}

.step-text {
    flex: 1;
    line-height: 1.4;
}

.step-text strong {
    color: #00FF41;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}

.btn-primary {
    background-color: #00FF41;
    color: #000000;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: slideUp 1.2s ease-out;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: #00CC33;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,255,65,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00FF41;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #00FF41;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 1.4s ease-out;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,255,65,0.1);
    transition: left 0.3s;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00FF41;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s linear infinite;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    to {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.action-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #FF0000;
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
    animation: shake 3s ease-in-out infinite, glow-red 2s ease-in-out infinite;
    z-index: 20;
}

@keyframes shake {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    25% { transform: rotate(-8deg) scale(1.05); }
    50% { transform: rotate(-3deg) scale(1.05); }
    75% { transform: rotate(-7deg) scale(1.02); }
}

@keyframes glow-red {
    0%, 100% { box-shadow: 0 8px 25px rgba(255,0,0,0.4); }
    50% { box-shadow: 0 8px 40px rgba(255,0,0,0.7); }
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, transparent 50%, rgba(0,255,65,0.1) 50%);
    pointer-events: none;
}

.moving-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00FF41, transparent);
    opacity: 0.1;
    animation: moveRight 10s linear infinite;
}

.grecaptcha-badge {
    z-index: 1;
    display: none !important;
}

.payment-link {
    height: 50px;
    width: auto;
    max-width: 52px;
    display: flex;
    align-items: center;
}

.payment-link:nth-child(5) {
    margin-right: 28px !important;
}

.copy-icon-custom {
    left: -4px !important;
    top: -4px !important;
}

@keyframes moveRight {
    from { transform: translateX(-100vw); }
    to { transform: translateX(100vw); }
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(0, 255, 65, .35);
    background: linear-gradient(135deg, rgba(0, 255, 65, .07), rgba(0, 255, 65, .02));
    border-radius: 10px;
    color: #eaffef;
    box-shadow: 0 0 24px rgba(0, 255, 65, .12) inset, 0 0 18px rgba(0, 255, 65, .15);
    backdrop-filter: blur(2px);
    animation: fadeInUp .8s ease-out;
    width: 219px;
    margin: 12px 0 4px;
}


.price-label {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: #9cf8b3;
}

.price-value {
    font-weight: 800;
    font-size: 22px;
    color: #00FF41;
    text-shadow: 0 0 12px rgba(0, 255, 65, .6);
}

.defender-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 6px;
    color: #00e676;
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 0;
    max-width: 320px;
}

.defender-discount-block {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.05), rgba(0, 200, 83, 0.05));
    border: 2px solid rgba(0, 230, 118, 0.3);
    padding: 20px;
    margin-bottom: 20px;
}

.price-display-block {
    background: #0f0f0f;
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 16px;
    margin-bottom: 20px;
}

.original-price-hidden {
    display: none !important;
}

#final_price.price-changed {
    animation: priceChange 0.6s ease;
}

@keyframes priceChange {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: #00ff88; }
    100% { transform: scale(1); }
}

.discount-info-hidden {
    display: none !important;
}

input[type="checkbox"]:checked {
    accent-color: #00e676;
}

@media (max-width: 1200px) {
    .banner {
        width: 100%;
        max-width: 1200px;
    }
}

@media screen and (max-width: 769px) {
    .header-order-btn {
        display: none !important;
    }

    .banner {
        height: auto;
        min-height: 800px;
    }
    .car-visual {
        position: relative;
        right: 0;
        top: auto;
        width: 100%;
        height: 250px;
        transform: none;
        margin-top: 20px;
    }
    .car-placeholder {
        width: 90%;
        height: 200px;
        font-size: 16px;
    }
    .car-overlay {
        display: none;
    }
    .content {
        padding: 40px 30px;
        max-width: 100%;
    }
    .mega-text {
        font-size: 36px;
    }
    .subtitle {
        font-size: 18px;
    }
    .step {
        font-size: 16px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    #mobileMenu {
        top: 128px;
    }

    .relative.relative-custom {
        left: -55px;
        top: -30px;
    }

    .text-sm-custom {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .payment-link {
        height: 45px;
        width: auto;
        max-width: 41px !important;
        display: flex;
        align-items: center;
        margin: 0 2px !important;
    }

    .payment-link:nth-child(5) {
        margin-right: 6px !important;
    }
}