/* ============================================
   НАСТРОЙКИ И ПЕРЕМЕННЫЕ
   ============================================ */
:root {
    /* Ваша цветовая палитра */
    --color-black: #000101;
    --color-accent: #75C309;           /* Самый яркий зеленый */
    --color-accent-light: #8CE80A;     /* Еще светлее */
    --color-secondary: #6FAE28;
    --color-border: #597F2A;
    --color-dark-bg: #1B3306;
    --color-dark-bg-transparent: rgba(27, 51, 6, 0.9);
    
    /* Дополнительные цвета */
    --color-text-light: #f0f7f0;
    --color-text-medium: #d0e0d0;
    --color-text-dark: #a0c0a0;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    --gradient-dark: linear-gradient(to bottom, var(--color-dark-bg) 0%, var(--color-black) 100%);
    --gradient-body: linear-gradient(to bottom, 
        var(--color-accent) 0%,         /* Верх - яркий зеленый */
        var(--color-accent-light) 10%,   /* Очень быстро переходим к светлому зеленому */
        var(--color-secondary) 20%,     /* Быстрый переход к обычному зеленому */
        var(--color-dark-bg) 45%,       /* Уже в 25% - темно-зеленый */
        var(--color-black) 60%,         /* В 40% - уже черный цвет */
        var(--color-black) 100%         /* Остальное - черный */
    ); 
    
    
    /* Отступы и размеры */
    --container-max-width: 1200px;
    --mobile-padding: 15px;
    --desktop-padding: 30px;
    --element-spacing: 20px;
    --section-spacing: 50px;
    
    /* Тени */
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 12px 36px rgba(0, 0, 0, 0.3);
    
    /* Скругления */
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 20px;
}

/* ============================================
   СБРОС И БАЗОВЫЕ СТИЛИ
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-body);
    color: var(--color-text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

/* Градиентная маска для плавного перехода */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--gradient-body);
    z-index: -2;
    pointer-events: none;
}

/* ============================================
   ШАПКА (HEADER) С ФОНОВЫМ ИЗОБРАЖЕНИЕМ
   ============================================ */
header {
    text-align: center;
    padding: 40px var(--mobile-padding) 30px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 1, 1, 0.7), rgba(27, 51, 6, 0.8)), 
                url('/images/back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--color-accent);
}


@media (min-width: 768px) {
    header {
        padding: 60px var(--desktop-padding) 40px;
        min-height: 500px;
    }
}

/* Анимированные частицы на фоне */
.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.3;
}

.particle {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-1000px) rotate(720deg); }
}

.logo {
    width: min(300px, 80%);
    height: auto;
    margin: 0 auto 20px;
    display: block;
    animation: fadeInUp 1s ease-out;
}

.logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.slogan {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .slogan {
        font-size: 1.4rem;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(117, 195, 9, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--color-accent);
    margin-top: 10px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(117, 195, 9, 0.7);
    }
    50% { 
        opacity: 0.5; 
        box-shadow: 0 0 0 10px rgba(117, 195, 9, 0);
    }
}

.status-text {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .status-text {
        font-size: 1rem;
    }
}

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

/* ============================================
   ОСНОВНОЙ КОНТЕНТ (MAIN) С ГРАДИЕНТОМ
   ============================================ */
main {
    flex: 1;
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 1;
}

/* Создаем эффект глубины с помощью псевдоэлемента */
main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(117, 195, 9, 0.1) 0%,
        transparent 50%
    );
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
    position: relative;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--desktop-padding);
    }
}

/* ============================================
   ДВЕ КОЛОНКИ: О ПРОЕКТЕ И ФОРМА
   ============================================ */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* ============================================
   СЕКЦИЯ "О ПРОЕКТЕ"
   ============================================ */
.about-section {
    background: rgba(27, 51, 6, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    padding: 30px;
    border: 1px solid rgba(117, 195, 9, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.about-section h2 {
    color: var(--color-accent);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(117, 195, 9, 0.3);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.about-section h2 i {
    color: var(--color-secondary);
}

.about-section p {
    margin-bottom: 20px;
    color: var(--color-text-medium);
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(117, 195, 9, 0.15) 0%, rgba(111, 174, 40, 0.1) 100%);
    padding: 25px;
    border-radius: var(--border-radius-medium);
    border-left: 4px solid var(--color-accent);
    margin: 20px 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(117, 195, 9, 0.2);
}

.highlight-box i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    display: block;
}

.highlight-box h3 {
    color: var(--color-text-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-section h3 {
    color: var(--color-text-light);
    margin: 25px 0 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.about-section h3 i {
    color: var(--color-secondary);
}

.features-list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(89, 127, 42, 0.3);
    position: relative;
    padding-left: 30px;
    color: var(--color-text-medium);
    transition: color 0.3s ease;
}

.features-list li:hover {
    color: var(--color-text-light);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.features-list li strong {
    color: var(--color-text-light);
}

/* ============================================
   КОНТАКТНАЯ ФОРМА
   ============================================ */
.contact-card {
    background: rgba(27, 51, 6, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    padding: 30px;
    border: 1px solid rgba(117, 195, 9, 0.3);
    box-shadow: var(--shadow-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.contact-card h2 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-subtitle {
    color: var(--color-text-medium);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Стили формы */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-group label i {
    color: var(--color-secondary);
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 1, 1, 0.6);
    border: 1px solid rgba(117, 195, 9, 0.4);
    border-radius: var(--border-radius-small);
    color: var(--color-text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(117, 195, 9, 0.3);
    background: rgba(0, 1, 1, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(240, 247, 240, 0.5);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--color-black);
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(117, 195, 9, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 195, 9, 0.4);
    opacity: 0.95;
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1rem;
}

.direct-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(117, 195, 9, 0.3);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.direct-contact h3 {
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(117, 195, 9, 0.2) 0%, rgba(111, 174, 40, 0.15) 100%);
    padding: 16px 24px;
    border-radius: var(--border-radius-medium);
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(117, 195, 9, 0.3);
    margin-top: auto;
    backdrop-filter: blur(5px);
}

.email-link:hover {
    background: linear-gradient(135deg, rgba(117, 195, 9, 0.3) 0%, rgba(111, 174, 40, 0.25) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    color: var(--color-accent-light);
}

.email-link i {
    font-size: 1.2rem;
}

/* ============================================
   БЛОК "CO CHYSTÁME?" (ПОЛНАЯ ШИРИНА)
   ============================================ */
.future-products {
    background: rgba(27, 51, 6, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(117, 195, 9, 0.3);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.future-products h2 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    color: var(--color-text-medium);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.future-card {
    background: rgba(27, 51, 6, 0.5);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: var(--border-radius-medium);
    border: 1px solid rgba(117, 195, 9, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.future-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-medium);
    background: rgba(27, 51, 6, 0.7);
}

.future-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.future-card h3 {
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.future-card p {
    color: var(--color-text-medium);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

/* ============================================
   БЛОК ПРОДУКТА (ПОЛНАЯ ШИРИНА)
   ============================================ */
.product-showcase {
    background: rgba(27, 51, 6, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    border: 1px solid rgba(117, 195, 9, 0.3);
    margin-bottom: 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.product-showcase h2 {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
    align-items: start;
    text-align: left;
}

@media (max-width: 992px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Левая часть: Изображение */
.product-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-placeholder {
    text-align: center;
    margin-bottom: 20px;
}

.image-frame {
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 1, 1, 0.6) 0%, rgba(27, 51, 6, 0.7) 100%);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.image-frame i {
    font-size: 5rem;
    color: var(--color-accent);
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.image-caption {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Правая часть: Детали продукта */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-description p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-specs-wrapper h3 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.product-specs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-specs li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(27, 51, 6, 0.5);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(117, 195, 9, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.product-specs li:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
    background: rgba(27, 51, 6, 0.7);
}

.product-specs li i {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.product-specs li strong {
    color: var(--color-text-light);
    margin-right: 5px;
}

.product-specs li span {
    color: var(--color-text-medium);
    line-height: 1.5;
}

.product-highlight {
    background: linear-gradient(135deg, rgba(117, 195, 9, 0.15) 0%, rgba(111, 174, 40, 0.1) 100%);
    padding: 25px;
    border-radius: var(--border-radius-medium);
    border-left: 4px solid var(--color-accent);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(117, 195, 9, 0.2);
}

.product-highlight i {
    color: var(--color-accent);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.product-highlight p {
    color: var(--color-text-medium);
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-highlight strong {
    color: var(--color-text-light);
}

/* Адаптивность для блока продукта */
@media (max-width: 768px) {
    .product-showcase {
        padding: 30px 20px;
    }
    
    .product-content {
        gap: 30px;
    }
    
    .image-frame {
        width: 240px;
        height: 240px;
    }
    
    .image-frame i {
        font-size: 4rem;
    }
    
    .product-specs li {
        padding: 12px;
    }
    
    .product-highlight {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .image-frame {
        width: 200px;
        height: 200px;
    }
    
    .product-specs li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-specs li i {
        margin-top: 0;
    }
}

/* ============================================
   ПОДВАЛ (FOOTER) С ГРАДИЕНТОМ
   ============================================ */
footer {
    background: linear-gradient(to top, var(--color-dark-bg) 0%, var(--color-black) 100%);
    padding: 50px var(--mobile-padding) 30px;
    margin-top: 60px;
    border-top: 3px solid var(--color-accent);
    position: relative;
    z-index: 1;
}

/* Эффект свечения сверху футера */
footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent) 20%, 
        var(--color-accent-light) 50%, 
        var(--color-accent) 80%, 
        transparent 100%
    );
    z-index: 2;
}

@media (min-width: 768px) {
    footer {
        padding: 60px var(--desktop-padding) 30px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .footer-brand {
        align-items: center;
        text-align: center;
    }
}

.footer-logo {
    font-size: 2.2rem;
    color: var(--color-accent);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    color: var(--color-text-medium);
    font-style: italic;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links h4,
.footer-social h4 {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .footer-links,
    .footer-social {
        text-align: center;
    }
}

.footer-links p {
    color: var(--color-text-medium);
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(117, 195, 9, 0.5);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
    }
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(117, 195, 9, 0.2) 0%, rgba(111, 174, 40, 0.15) 100%);
    border-radius: 50%;
    color: var(--color-text-light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(117, 195, 9, 0.3);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-black);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(117, 195, 9, 0.4);
    border-color: var(--color-accent);
}

.social-note {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(117, 195, 9, 0.3);
    text-align: center;
}

.copyright {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.copyright strong {
    color: var(--color-accent);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.separator {
    margin: 0 10px;
    color: var(--color-border);
}

/* ============================================
   АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ
   ============================================ */
@media (max-width: 767px) {
    .main-grid {
        gap: 30px;
    }
    
    .about-section,
    .contact-card {
        padding: 25px 20px;
    }
    
    .future-products,
    .product-showcase {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 30px 15px 25px;
        min-height: 350px;
    }
    
    .logo {
        width: min(250px, 90%);
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    .status-badge {
        flex-direction: column;
        gap: 8px;
        padding: 15px 20px;
    }
    
    .about-section h2,
    .contact-card h2,
    .product-showcase h2 {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Предотвращает зум на iOS */
    }
}

/* ============================================
   АНИМАЦИЯ ПАРТИКЛ ДЛЯ ШАПКИ (опционально)
   ============================================ */
 /* Это создаст частицы для шапки. Можете удалить, если не нужно */
.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Создание частиц с помощью JS будет добавлено позже, если нужно */
/* ============================================
   СТИЛИ ДЛЯ ФОТО ПРОДУКТА
   ============================================ */

.product-photo {
    width: 115%;
    height: 115%;
    object-fit: contain; /* Масштабирует фото, чтобы оно полностью поместилось */
    border-radius: var(--border-radius-small);
    display: block;
}

/* Убираем иконку, если фото загружено */
.image-frame img.product-photo ~ i.fa-cube {
    display: none;
}

/* Адаптация рамки под фото */
.image-frame {
    padding: 10px; /* Добавляем отступ внутри рамки */
    background: rgba(0, 1, 1, 0.8); /* Темный фон для контраста */
}

/* Улучшаем отображение на мобильных */
@media (max-width: 768px) {
    .image-frame {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Эффект при наведении */
.product-photo {
    transition: transform 0.5s ease;
}

.product-photo:hover {
    transform: scale(1.05);
}
