.kexa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.kexa-grid label {
    display: block;
    font-size: 1,4rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #F3EBE3;
    margin-bottom: 8px;
    font-family: inter;
}

.kexa-grid input,
.kexa-grid select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 8px 0;
    font-size: 15px;
    color: #fff;
    font-family: inter;
    outline: none;
}

.kexa-grid select {
    background: transparent;
    color: #fff;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,');
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.kexa-grid select option {
    background: #1a1a1a;
    color: #fff;
}

.kexa-grid input:focus,
.kexa-grid select:focus {
    border-bottom-color: #DA6111C4;
}

.kexa-grid input::placeholder {
    color: #555;
}

.kexa-btn {
    text-align: center;
    margin-top: 30px;
}

.kexa-btn input[type="submit"] {
    background: transparent;
    border: 1px solid #F3EBE3;
    color: #F3EBE3;
    font-size: 1,4rem;
    letter-spacing: 3px;
    padding: 10px 24px;
    cursor: pointer;
    font-family: inter;
    transition: 0.2s;
}

.kexa-btn input[type="submit"]:hover {
    background: #DA6111C4;
    border-color: #DA6111C4;
    color: #000;
}

@media (max-width: 600px) {
    .kexa-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Планшеты */
@media (max-width: 1024px) {
    .kexa-grid label {
        font-size: 1rem;
    }
    
    .kexa-grid input,
    .kexa-grid select {
        font-size: 1rem;
    }
    
    .kexa-grid input::placeholder {
        font-size: 1rem;
    }
    
    .kexa-btn input[type="submit"] {
        width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .kexa-grid label {
        font-size: 1rem;
    }
    
    .kexa-grid input,
    .kexa-grid select {
        font-size: 1rem;
    }
    
    .kexa-grid input::placeholder {
        font-size: 1rem;
    }
    
    .kexa-btn input[type="submit"] {
        width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
        white-space: normal;
    }
}
-----------------------------------------
/* Десктоп */
.kexa-nav-wrapper {
    display: flex;
    justify-content: center;
}

.kexa-nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kexa-nav-list a {
    color: #F3EBE3;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
}

.kexa-nav-list a:hover {
    color: #DA6111C4;
}

.kexa-menu-btn,
.kexa-nav-close {
    display: none;
}

/* Планшеты и мобильные */
@media (max-width: 1024px) {
    .kexa-menu-btn {
        display: block;
        color: #F3EBE3;
        font-size: 1rem;
        letter-spacing: 3px;
        cursor: pointer;
    }
    
    .kexa-nav-list {
        display: none;
    }
    
    .kexa-nav-overlay {
        position: fixed;
        top: 80px;
        right: -280%;
        width: 100%;
        height: auto;
        background: #0A0A0C;
        padding: 60px 30px;
        transition: 0.3s;
        z-index: 1000;
        border-radius: 12px
    }
    
    .kexa-nav-overlay.active {
        right: 0;
    }
    
    .kexa-nav-overlay .kexa-nav-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .kexa-nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #F3EBE3;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

------------------------------

.kexa-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.kexa-footer-brand {
    color: #F3EBE3;
    font-size: 14px;
    letter-spacing: 3px;
}

.kexa-footer-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kexa-footer-list a {
    color: #F3EBE3;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
}

.kexa-footer-list a:hover {
    color: #DA6111C4;
}

.kexa-footer-btn,
.kexa-footer-close {
    display: none;
}

@media (max-width: 1024px) {
    .kexa-footer-list {
        display: none;
    }
    
    .kexa-footer-btn {
        display: block;
        color: #F3EBE3;
        font-size: 12px;
        letter-spacing: 3px;
        cursor: pointer;
    }
    
    .kexa-footer-overlay {
        position: fixed;
        bottom: 12vh;
        right: -100%;
        width: 100%;
        height: auto;
        background: #0A0A0C;
        padding: 60px 30px;
        transition: 0.3s;
        z-index: 1000;
    }
    
    .kexa-footer-overlay.active {
        right: 0;
    }
    
    .kexa-footer-overlay .kexa-footer-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .kexa-footer-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #F3EBE3;
        cursor: pointer;
        font-size: 12px;
        letter-spacing: 2px;
    }
}