:root { --accent: #FFB800; --bg: #0F101C; --card: #1A1C2E; --text: #FFFFFF; }

body { 
    margin: 0; 
    font-family: 'Segoe UI', sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
}

/* КОМПАКТНАЯ ШАПКА */
header { 
    padding: 40px 20px; 
    text-align: center; 
    background: linear-gradient(180deg, #1e213a 0%, #0f101c 100%);
}

h1 { 
    font-size: 2.8rem; 
    color: var(--accent); 
    margin: 0; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.hero-text { 
    color: #8F91A2; 
    font-size: 1.1rem; 
    max-width: 800px; 
    margin: 10px auto; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

.section-title { 
    text-align: center; 
    font-size: 1.8rem; 
    margin: 30px 0; 
    color: #fff; 
}

/* ТВОЯ РАБОЧАЯ ГАЛЕРЕЯ (БЕЗ ИЗМЕНЕНИЙ) */
.gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 20px; 
}

.photo-item { 
    cursor: pointer; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid #2E3147; 
    background: var(--card);
    transition: 0.3s;
}

.photo-item:hover { 
    border-color: var(--accent); 
    transform: translateY(-5px); 
}

.photo-item img { 
    width: 100%; 
    height: auto; 
    display: block; 
    opacity: 0.9; 
}

.photo-item p { 
    padding: 15px; 
    text-align: center; 
    font-weight: bold; 
    margin: 0; 
    background: #161826; 
    border-top: 1px solid #2E3147;
    font-size: 0.9rem;
}

/* МОДАЛЬНОЕ ОКНО */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 1000; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.95); 
    justify-content: center; 
    align-items: center; 
    cursor: zoom-out; 
}

.modal img { 
    max-width: 95%; 
    max-height: 90%; 
    border-radius: 8px; 
    border: 1px solid var(--accent); 
    box-shadow: 0 0 40px rgba(255,184,0,0.2); 
}

.close { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    color: white; 
    font-size: 40px; 
    cursor: pointer; 
}

/* ОПИСАНИЕ */
.benefits-box { 
    background: #161826; 
    padding: 40px; 
    border-radius: 20px; 
    margin-top: 60px; 
    border: 1px solid #2E3147;
    text-align: center;
}

.benefits-box h2 { color: var(--accent); margin-top: 0; }

.btn-contact { 
    display: inline-block; 
    margin-top: 20px; 
    padding: 12px 30px; 
    background: var(--accent); 
    color: #000; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 8px; 
}
/* ОТДЕЛЬНЫЙ БЛОК ДЛЯ ОПИСАНИЯ ПЛЮСОВ */
.features-section {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #1A1C2E;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2E3147;
    transition: 0.3s;
}

.feature-item:hover {
    border-color: #00FF00; /* Подсветка при наведении */
    transform: translateY(-5px);
}

/* ТЕ САМЫЕ ЗЕЛЕНЫЕ ЗАГОЛОВКИ */
.feature-item h3 {
    color: #00FF00; 
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.feature-item p {
    color: #8F91A2;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}
.feature-item h3 {
    background: linear-gradient(to right, #00FF00, #00CC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.3));
}
