
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0d0f11;         
    --accent-orange: #ff5500;   
    --text-light: #ffffff;
    --text-gray: #bcbcbc;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Geologica', 'Arial', sans-serif;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

.utp-main-title, 
.about-title, 
.products-section-title, 
.product-title {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-weight: 900;
    line-height: 1.25; 
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    background: linear-gradient(rgba(13, 15, 17, 0.75), rgba(13, 15, 17, 0.3)), 
                var(--hero-bg) no-repeat center center;
    background-size: cover;
    padding: 0 10% 4rem 10%; 
}


.main-header {
    width: 100%;
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-brand {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-brand span {
    color: var(--accent-orange);
}

.logo-tagline {
    font-family: "Arial", sans-serif;
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 250px;
    line-height: 1.4;
    border-left: 1px solid #333;
    padding-left: 1rem;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-family: "Arial", sans-serif;
}

.contact-box {
    text-align: right;
}

.phone-num {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.phone-num:hover {
    color: var(--accent-orange);
}

.email-address {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 700;
}


.btn-callback {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.btn-callback:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}


.utp-container {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 650px; 
    text-align: left;
}


.utp-brand {
    font-size: 4.5rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.95;
    margin-bottom: 0.5rem;
}


.utp-main-title {
    font-size: 3.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.95;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}


.utp-description {
    font-family: "Arial", sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
}


.btn-main-action {
    background-color: var(--accent-orange);
    border: 1px solid #2d3135;
    color: #000000;
    padding: 1rem 2rem;
    font-family: "Arial", sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.btn-main-action:hover {
    background-color: #ffff;
    color: var(--bg-dark);
    border-color: var(--accent-orange);
}

.btn-main-action::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: industryShine 4s infinite ease-in-out;
}

@keyframes industryShine {
    0% { left: -60%; }
    15% { left: 130%; }
    100% { left: 130%; }
}


.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--text-light);
    transform: rotate(45deg); 
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}


@media (max-width: 992px) {
    .hero-section {
        padding: 0 5% 2rem 5%;
    }
    .main-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .logo-area {
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo-tagline {
        border-left: none;
        padding-left: 0;
    }
    .header-right {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    .contact-box {
        text-align: center;
    }
    .btn-callback, .btn-main-action {
        width: 100%;
    }
    .utp-brand {
        font-size: 2rem;
    }
    .utp-main-title {
        font-size: 1.8rem;
    }

    

}


/* ============================

БЛОК: О КОМПАНИИ

===========================================*/

.about-section {
    background-color: #08090a;
    padding: 6rem 10% 8rem 10%;
    position: relative;
    font-family: "Arial", sans-serif;
}

.about-top-grid{
    display: flex;
    min-height: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: -4rem;
}

.about-text-panel {
    flex: 1;
    background-color: var(--bg-dark);
    border-left: 5px solid var(--accent-orange);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-company-name {
    font-size: 0.9rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-title {
    
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-image-panel {
    flex: 1;
    position: relative;
    min-height: 450px;
    background-color: transparent; 
    overflow: visible; 
}


.about-image-panel {
    flex: 1;
    position: relative;
    min-height: 450px;
    background-color: transparent; 
    overflow: visible; 
}


.about-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
    
    clip-path: polygon(30% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 35%);
    position: relative;
    z-index: 1;
}


.about-image-panel::before {
    content: '';
    position: absolute;
    top: -2px; 
    left: -2px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-orange);
    
    
    clip-path: polygon(30% 0%, 52% 0%, 22% 35%, 0% 35%, 0% 24%, 19% 0%);
    z-index: 2; 
    pointer-events: none;
}


.about-image-panel::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 0;
    height: 0;
    
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--accent-orange);
    z-index: 3;
    pointer-events: none;
}


.about-image-panel-decor {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 100%;
    height: 100%;
    background-color: #ffffff; 
    clip-path: polygon(100% 90%, 100% 100%, 82% 100%);
    z-index: 2;
    pointer-events: none;
}


.about-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    position: relative;
    z-index: 10; 

    
    clear: both;
    
    
    margin-top: 3.5rem; 
    margin-bottom: 0;
}


.fact-card {
    background-color: #ffffff;
    color: #1a1d20;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-bottom: 4px solid transparent;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-orange);
}


.fact-icon-block {
    background-color: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.2);
    border-radius: 4px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-icon-block svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent-orange);
}


.fact-number {
    
    font-size: 2rem;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.fact-title {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #0d0f11;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.fact-text {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.5;
}


@media (max-width: 1024px) {
    .about-top-grid {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .about-image-panel {
        min-height: 300px;
    }
    .about-facts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-section {
        padding: 4rem 5% 4rem 5%;
    }
    .about-text-panel {
        padding: 2.5rem;
    }
}




.products-section {
    position: relative;
    padding: 8rem 10%;
    text-align: center;
    
    
    background-color: #0c0e10;
    
    
    background-repeat: repeat;
    
    background-size: 483px auto; 
    
  
  
}



.products-section-title {
    
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 6rem; 
}


.products-grid {
    display: flex;
    justify-content: center;  
    align-items: center;      
    width: 100%;
    padding: 4rem 0;          
}

.product-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 5rem 2rem 3rem 2rem; 
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    

    width: 100%;
    max-width: 400px;  
    margin: 0 auto;    

    align-items: center; 
}


.product-card.featured {
    background-color: var(--accent-orange);
    transform: scale(1.03); 
}

.product-card:hover {
    transform: translateY(-5px);
}
.product-card.featured:hover {
    transform: translateY(-5px) scale(1.03);
}


.product-image-wrap {
    position: relative;
    top: -4.5rem; 
    left: 50%;
    transform: translateX(-50%);

    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    overflow: visible !important; 

    width: 100%;



    margin: 0 auto;
}

.product-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.3)); 
    transition: transform 0.3s ease, filter 0.3s ease;
    
    /* ЭФФЕКТ ОТРАЖЕНИЯ: 
       below - отобразить снизу, 
       -15px - зазор между товаром и началом отражения, 
       linear-gradient - плавное затухание в прозрачность */
    -webkit-box-reflect: below -15px linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0) 20%,      
        rgba(255, 255, 255, 0.25) 70%,    
        rgba(255, 255, 255, 0.4) 100%     
    );
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05) translateY(-8px);
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.4));
}

.product-card.featured .product-image-wrap img {
    -webkit-box-reflect: below -15px linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0) 10%, 
        rgba(0, 0, 0, 0.3) 60%, 
        rgba(0, 0, 0, 0.5) 100%
    );
}


.product-title {
   
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #0d0f11;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}


.product-card.featured .product-title {
    color: #ffffff;
}


.product-desc {
   
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}


.product-card.featured .product-desc {
    color: #f3f4f6;
}


.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}


.btn-prod-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; 
    padding: 1rem 2rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-prod-primary:hover { background-color: #e04b00; }

.btn-prod-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; 
    padding: 1rem 2rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-prod-secondary:hover { 
    background-color: #f9fafb;
    color: #0d0f11;
}


.product-card.featured .btn-prod-primary {
    background-color: #0d0f11;
    color: #ffffff;
}
.product-card.featured .btn-prod-primary:hover { background-color: #1e2225; }

.product-card.featured .btn-prod-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}
.product-card.featured .btn-prod-secondary:hover { 
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
    width: 22px;        
    height: 22px;       
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease; 
}


.btn-custom:hover .btn-icon {
    transform: scale(1.1); 
}


.product-bottom-action {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #0d0f11;
    border: 2px solid #ffffff;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s;

    transform: translate(-50%, 50%); 
    margin: 0; 
}

.product-card.featured .product-bottom-action {
    background-color: #ffffff;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.product-bottom-action:hover {
    transform: translateX(-50%) scale(1.1);
}

.product-bottom-action svg {
    width: 1.25rem;
    height: 1.25rem;
}


@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 6rem 0;
    }
    .product-card.featured {
        transform: scale(1);
    }
    .product-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }
    .products-section {
        padding: 6rem 5% 6rem 5%;
    }
}

/* ==========================================
   АДАПТАЦИЯ И АНИМАЦИЯ КНОПОК ДЛЯ DESKTOP
   (Оригинальные стили выше не трогаем)
   ========================================== */
@media (min-width: 993px) {
    
    .btn-main-action,
    .btn-prod-primary,
    .btn-prod-secondary {
        position: relative;
        overflow: hidden; 
        z-index: 1;
        background-color: rgba(255, 85, 0, 0.7) !important; 
        border: 1px solid rgba(255, 85, 0, 0.4) !important;  
        color: #000000 !important;
        transition: color 0.4s ease, border-color 0.4s ease !important;
    }

    
    .btn-main-action::before,
    .btn-prod-primary::before,
    .btn-prod-secondary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%; 
        height: 300px; 
        background-color: #fff; 
        border-radius: 40%; 
        transform: translate(-50%, -50%) scale(0) rotate(0deg); 
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: -1; 
    }

    
    .btn-main-action:hover::before,
    .btn-prod-primary:hover::before,
    .btn-prod-secondary:hover::before {
        
        transform: translate(-50%, -50%) scale(1) rotate(180deg);
    }

    .btn-main-action:hover,
    .btn-prod-primary:hover,
    .btn-prod-secondary:hover {
        color: #0d0f11 !important; 
        border-color: var(--accent-orange) !important;
        cursor: pointer;
    }

    
    
    .product-card.featured .btn-prod-primary,
    .product-card.featured .btn-prod-secondary {
        background-color: rgba(13, 15, 17, 0.3) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        color: #ffffff !important;
    }

    .product-card.featured .btn-prod-primary::before,
    .product-card.featured .btn-prod-secondary::before {
        background-color: #0d0f11; 
    }

    .product-card.featured .btn-prod-primary:hover,
    .product-card.featured .btn-prod-secondary:hover {
        color: var(--accent-orange) !important; 
        border-color: #0d0f11 !important;
    }
}

/* ==========================================
   БЛОК: ФОРМА ОБРАТНОЙ СВЯЗИ (image_e76316.png)
   ========================================== */
.feedback-section {
    background-color: #050607; 
    padding: 7rem 10%;
    border-top: 1px solid #16181a;
    
}

.feedback-container {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}


.feedback-form-block {
    flex: 1.6; 
    text-align: left;
}

.feedback-title {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.feedback-subtitle {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 700px;
}


.industry-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
}


.form-input, .form-select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #0d0f11;
    padding: 1.1rem 1.5rem;
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.2);
}


.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: #4b5563;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select {
    appearance: none; 
    cursor: pointer;
    padding-right: 3rem;
}


.form-footer {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-submit {
    flex-shrink: 0;
    min-width: 280px;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-text {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}


.feedback-contacts-panel {
    flex: 1;
    background-color: #111315; 
    border-radius: 4px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.contacts-decor-line {
    width: 40px;
    height: 3px;
    background-color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contacts-panel-title {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contacts-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-value {
    font-family: 'Geologica', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value:hover {
    color: var(--accent-orange);
}

.contact-value.email-accent {
    color: var(--accent-orange);
    font-size: 1.15rem;
    word-break: break-all;
}

.contact-value.email-accent:hover {
    color: #e04b00;
}


.social-icons {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.social-link {
    color: var(--text-light);
    width: 2rem;
    height: 2rem;
    transition: transform 0.2s, color 0.2s;
}

.social-link:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

/* ==========================================
   ДОБАВЛЕНИЕ В СУЩЕСТВУЮЩИЙ АДАПТИВ
   ========================================== */
@media (max-width: 1024px) {
    .feedback-container {
        flex-direction: column;
        gap: 3.5rem;
    }
    .feedback-contacts-panel {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 5rem 5%;
    }
    .feedback-title {
        font-size: 1.85rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .btn-submit {
        width: 100%;
    }

   .gallery-section {
        padding: 2rem 16px 4rem 16px;
    }

    
    .gallery-container {
        grid-template-columns: 1fr !important; 
        gap: 15px;
    }

    
    .gallery-right-grid {
        grid-template-columns: 1fr !important; 
        grid-template-rows: auto !important; 
        gap: 15px;
    }

    
    .gallery-item {
        min-height: 240px; 
        height: 240px; 
    }
    
    
    .gallery-item.item-featured {
        min-height: 260px;
        height: 260px;
        clip-path: none !important; 
    }
    
    .gallery-overlay {
        padding: 1.25rem;
    }
    
    .gallery-item-title {
        font-size: 1.1rem;
    }
    
    .gallery-item.item-featured .gallery-item-title {
        font-size: 1.2rem;
    }
}

/* ==========================================
   БЛОК: СТРОГИЙ ИНДУСТРИАЛЬНЫЙ ПОДВАЛ (ЭКРАН 5)
   ========================================== */
.main-footer {
    background-color: #0b0c0d; 
    border-top: 3px solid var(--accent-orange); 
    padding: 5rem 0 0 0; 
    position: relative;
    clear: both;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10%;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}


.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: 'Geologica', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    position: relative;
}


.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-logo span {
    color: var(--accent-orange);
}

.company-legal-name {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.info-label {
    font-size: 0.8rem;
    color: #555c64; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-value.link-hover:hover {
    color: var(--accent-orange);
}

.info-value.email-accent {
    color: var(--accent-orange);
    font-weight: bold;
}


.footer-map-block {
    flex: 1.3; 
}

.footer-map-wrapper {
    width: 100%;
    height: 560px;
    background-color: #121417;
    border: 1px solid #22262a;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.map-hint {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #555c64;
    font-style: italic;
}


.requisites-box {
    background-color: #111315;
    border: 1px solid #1c1f22;
    padding: 1.75rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.req-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid #1c1f22;
    padding-bottom: 0.75rem;
}

.req-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.req-label {
    font-size: 0.75rem;
    color: #555c64;
    text-transform: uppercase;
    font-weight: bold;
}

.req-value {
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}


.footer-bottom-bar {
    margin-top: 5rem;
    background-color: #050607;
    border-top: 1px solid #121417;
    padding: 1.5rem 0;
}

.footer-bottom-container {
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #444a51;
}

.dev-signature {
    font-size: 0.8rem;
    color: #444a51;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dev-signature span {
    color: var(--text-gray);
    font-weight: bold;
}

/* ==========================================
   АДАПТИВНАЯ МОБИЛЬНАЯ ВЕРСIЯ (В СТИЛЕ @media)
   ========================================== */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 3.5rem;
    }
    .footer-column {
        width: 100%;
    }
    .footer-map-wrapper {
        height: 240px; 
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 4rem;
    }
    .footer-container {
        padding: 0 5%;
    }
    .footer-bottom-container {
        padding: 0 5%;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-column-title {
        margin-bottom: 1.25rem;
    }
}

.fact-icon-block img {
    width: 3rem;
}


/* ==========================================
   МОБИЛЬНАЯ АДАПТИВНОСТЬ (До 768px)
   ========================================== */
@media (max-width: 768px) {
    
    .about-section, .products-section, .feedback-section {
        padding: 3rem 16px; 
    }

    
    .about-top-grid {
        display: flex;
        flex-direction: column-reverse; 
        gap: 2rem;
    }
    
    .about-facts-grid {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    
    .products-grid {
        padding: 2rem 0;
    }
    
    .product-card {
        padding: 5rem 1.5rem 2.5rem 1.5rem; 
        max-width: 100%; 
    }

    .product-buttons {
        flex-direction: column; 
        gap: 1rem;
    }

    .btn-prod-primary, .btn-prod-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem; 
        font-size: 1rem;
    }

    
    .feedback-container {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }

    .form-grid {
        grid-template-columns: 1fr; 
        gap: 1.2rem;
    }

    .form-input, .form-select {
        padding: 1rem; 
        font-size: 1rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-submit {
        width: 100%; 
        padding: 1.2rem;
    }

    
    
    [data-aos] {
        pointer-events: auto !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 992px) {
    
    .about-title {
        font-size: 1.6rem;       
        line-height: 1.2;        
        margin-bottom: 1.5rem;   
    }

    .products-section-title{
        font-size: 2.2rem;
    }

}

/* ==========================================================================
   БРУТАЛЬНЫЕ ПРОМЫШЛЕННЫЕ ДЕКОРАЦИИ ПО ВСЕМУ САЙТУ (6-7 ШТУК)
   ========================================================================== */


.ind-decor-item {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none; 
    z-index: 1;          
    

    opacity: 0.25;
}


.hero-section, .about-section, .products-section, .feedback-section {
    position: relative;
    overflow: hidden; 
}

/* --------------------------------------------------------------------------
   СЕКЦИЯ 1: ГЛАВНЫЙ ЭКРАН (HERO)
   -------------------------------------------------------------------------- */


.decor-tank {
    width: 250px;
    height: 250px;
    bottom: 5%;
    left: 2%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ff5500' stroke-width='0.8'%3E%3Cpath d='M20 30h60v40H20zM30 30V20h40v10M50 20v10M20 40h60M20 50h60M20 60h60M35 70l-5 15M65 70l5 15'/%3E%3Ccircle cx='50' cy='45' r='8'/%3E%3C/svg%3E");
}

.decor-molecule-1 {
    width: 320px;
    height: 320px;
    top: 12%;
    right: -5%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ff5500' stroke-width='0.8'%3E%3Cpath d='M50 20l20 12v23L50 67l-20-12V32zM50 20V5M70 32l13-7M70 55l13 7M50 67v15M30 55l-13 7M30 32l-13-7'/%3E%3Ccircle cx='50' cy='5' r='3' fill='%23ff5500'/%3E%3Ccircle cx='83' cy='25' r='3'/%3E%3Ccircle cx='83' cy='62' r='3'/%3E%3Ccircle cx='50' cy='82' r='3' fill='%23ff5500'/%3E%3C/svg%3E");
}
/* --------------------------------------------------------------------------
   СЕКЦИЯ 2: О КОМПАНИИ (ABOUT)
   -------------------------------------------------------------------------- */


.decor-gauge {
    width: 280px;
    height: 280px;
    bottom: -3%;
    right: 3%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ff5500' stroke-width='0.8'%3E%3Ccircle cx='50' cy='50' r='35'/%3E%3Ccircle cx='50' cy='50' r='38' stroke-dasharray='2,2'/%3E%3Cpath d='M50 50l18-18M25 50h5M75 50h5M50 25v5M50 75v5M32.5 32.5l3.5 3.5M67.5 67.5l3.5 3.5'/%3E%3Ccircle cx='50' cy='50' r='4' fill='%23ff5500'/%3E%3C/svg%3E");
}


.decor-pipes {
    width: 350px;
    height: 200px;
    top: 5%;
    left: -8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 100' fill='none' stroke='%23ff5500' stroke-width='0.8'%3E%3Cpath d='M0 20h60v40h90M0 30h50v20h100M60 0v100M50 0v100M110 20v80M120 30v70'/%3E%3Ccircle cx='55' cy='25' r='5' fill='%23ff5500' fill-opacity='0.5'/%3E%3Ccircle cx='115' cy='25' r='5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   СЕКЦИЯ 3: НАПРАВЛЕНИЯ ДЕЯТЕЛЬНОСТИ (PRODUCTS)
   -------------------------------------------------------------------------- */


.decor-road {
    width: 300px;
    height: 300px;
    bottom: 5%;
    left: -4%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ff5500' stroke-width='0.7'%3E%3Cpath d='M0 50c50 0 50-40 100-40M0 60c40 0 40-40 100-40M50 0v100M40 0v100'/%3E%3Cpath d='M0 55h40M60 10h40' stroke-dasharray='3,3'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   СЕКЦИЯ 4: ФОРМА ОБРАТНОЙ СВЯЗИ (FEEDBACK)
   -------------------------------------------------------------------------- */


.decor-molecule-2 {
    width: 260px;
    height: 260px;
    top: 4%;
    right: 2%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23ff5500' stroke-width='0.8'%3E%3Cpath d='M20 20h20v20H20zM60 20h20v20H60zM40 60h20v20H40zM40 30h20M30 40v20M70 40v20'/%3E%3Ccircle cx='50' cy='30' r='2' fill='%23ff5500'/%3E%3Ccircle cx='30' cy='50' r='2'/%3E%3Ccircle cx='70' cy='50' r='2'/%3E%3C/svg%3E");
}


.decor-spec {
    width: 240px;
    height: 150px;
    bottom: 1%;
    left: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70' fill='none' stroke='%23ff5500' stroke-width='0.8'%3E%3Cpath d='M0 0h120v70H0zM0 15h120M0 30h120M0 45h120M40 30v40M80 45v25'/%3E%3Cpath d='M5 7h40M5 22h80M5 37h30M45 52h30M85 52h30' stroke-width='0.4'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    
    
    .ind-decor-item {
        display: none !important;
    }

    
    .gallery-container {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    .gallery-right-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    
    .gallery-item.item-featured {
        min-height: 350px; 
        clip-path: none; 
    }
}

/* ==========================================
   БЛОК: ГАЛЕРЕЯ (ПРОМЫШЛЕННАЯ СЕТКА)
   ========================================== */
.gallery-section {
    background-color: #08090a;
    padding: 2rem 10% 6rem 10%; 
    position: relative;
    z-index: 2;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr; 
    gap: 20px;
    width: 100%;
}

.gallery-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #111315;
    border: 1px solid #22262a;
    height: 100%;
    min-height: 240px;
    cursor: pointer;
}


.gallery-item.item-featured {
    min-height: 500px;
    clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%);
    border: none; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(0.2) brightness(0.8); 
}


.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0) brightness(0.9);
}


.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(13, 15, 17, 0.95) 0%, rgba(13, 15, 17, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.gallery-item-title {
    font-family: 'Geologica', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}


.gallery-item.item-featured .gallery-item-title {
    font-size: 1.6rem;
}


/* ==========================================================================
   БЛОК ЛОГИСТИКИ И СОТРУДНИЧЕСТВА
   ========================================================================== */
.about-logistics-container {
    
    max-width: 1200px; 
    width: 100%;
    
    
    
    margin: 5rem auto 4rem auto; 
    
    
    padding: 0 16px; 
    box-sizing: border-box;
}


.logistics-main-card {
    background: #131619;
    border-left: 3px solid var(--accent-orange);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.logistics-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 1rem;
}

.logistics-lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin: 0;
}

.logistics-lead-text strong {
    color: #ffffff;
    font-weight: 800;
}


.logistics-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step-card {
    background: #111416;
    border: 1px solid #22262a;
    padding: 1.75rem;
    transition: border-color 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 85, 0, 0.3);
}

.step-icon {
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.step-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}


@media (max-width: 992px) {
    .logistics-steps-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    .about-logistics-container {
        margin-top: 3.5rem;
        margin-bottom: 3rem;
    }

    .fact-card{
        width: 100% !important;        
        max-width: 95% !important;    
        
        
        
        box-sizing: border-box !important; 
        
        
        
        margin-left: 0 !important;
        margin-right: 0 !important;
        
        
        padding: 1.25rem !important; 
        
        
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}


/* ==========================================================================
   СТИЛИ УВЕДОМЛЕНИЙ ОБ ОТПРАВКЕ ФОРМЫ
   ========================================================================== */
.form-messages-container {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 600px; 
    margin-inline: auto;
}

.form-alert {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-left: 4px solid transparent;
    background: #131619;
    color: #ffffff;
    font-size: 0.95rem;
    position: relative;
    box-sizing: border-box;
    animation: fadeInAlert 0.3s ease-in-out;
}


.form-alert.alert-success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-left: 4px solid #10b981;
}
.form-alert.alert-success .alert-icon {
    color: #10b981;
}


.form-alert.alert-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-left: 4px solid #ef4444;
}
.form-alert.alert-error .alert-icon {
    color: #ef4444;
}

.alert-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.alert-text {
    flex-grow: 1;
    line-height: 1.5;
    font-weight: 400;
}


.alert-close-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    line-height: 1;
    transition: color 0.2s;
}
.alert-close-btn:hover {
    color: #ffffff;
}

@keyframes fadeInAlert {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.top-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky; 
    top: 0;
    z-index: 1000;
}

.nav-btn {
    text-decoration: none;
    color: #ffff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}


.nav-btn:hover {
    background-color: #f5f5f5;
    color: #000000;
}

/* Адаптив для мобильных телефонов */
@media (max-width: 768px) {
    .top-navigation {
        gap: 8px; 
        padding: 10px;
        justify-content: space-around; 
    }

    .nav-btn {
        padding: 6px 10px;
        font-size: 13px; 
        font-weight: 600;
        text-align: center;
        flex: 1; 

        text-decoration: underline;
    text-decoration-color: #cccccc;      
    text-decoration-thickness: 1px;     
    text-underline-offset: 6px;
    }
}

.banner-lang-panel {
    position: absolute;
    right: 4%; 
    top: 55%;  
    transform: translateY(-50%);
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 10px;
    background: rgba(19, 22, 25, 0.75); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 10px;
    border-radius: 14px;
    backdrop-filter: blur(8px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


.lang-indicator {
    color: #ff9900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    opacity: 0.9;
}


.lang-divider-line {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 4px;
}

/* Кнопка языка */
.lang-btn-banner {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #a0a5b0;
    font-weight: 700;
    font-size: 11px;
    font-family: Arial, sans-serif;
    transition: all 0.2s ease;
    padding: 6px;
    border-radius: 8px;
    width: 44px;
}

.lang-btn-banner .flag-icon {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s;
}

.lang-btn-banner:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn-banner:hover .flag-icon {
    transform: scale(1.15);
}

.lang-btn-banner.active {
    color: #ff9900; 
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.25);
}

/* Адаптивность для мобилок */
@media (max-width: 992px) {
    .banner-lang-panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row; 
        justify-content: center;
        margin: 24px auto 0 auto;
        width: fit-content;
        padding: 10px 16px;
    }
    .lang-divider-line {
        width: 1px;
        height: 20px; 
        margin: 0 6px 0 2px;
    }
    .lang-btn-banner {
        flex-direction: row;
        gap: 6px;
        width: auto;
        font-size: 13px;
    }
    .lang-indicator {
        margin-bottom: 0;
    }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(8px);    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; 
    animation: fadeInBg 0.3s ease forwards;
    padding: 20px;
}


.modal-card {
    background: #191c1f; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px 25px;
    border-radius: 24px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    animation: scaleUpCard 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


.modal-status-icon {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 15px;
}


.modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.modal-message {
    color: #a0a5b0;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}


.modal-btn {
    background: #ff9900; 
    color: #131619;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.modal-btn:hover {
    background: #e68a00;
    transform: translateY(-1px);
}

.modal-btn:active {
    transform: translateY(1px);
}


@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUpCard {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
