/* ВАРИАНТ 1: Мягкий и профессиональный */

:root {
    --bg-color: #111827; /* Более мягкий темно-синий */
    --primary-color: #4dd0e1; /* Приглушенный бирюзовый */
    --secondary-color: #ab47bc; /* Глубокий фиолетовый */
    --text-color: #d1d5db; /* Светло-серый */
    --card-bg: rgba(31, 41, 55, 0.6); /* Полупрозрачный фон карточек */
    --border-color: rgba(77, 208, 225, 0.4); /* Бирюзовая рамка */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    /* УБРАНА ФОНОВАЯ СЕТКА */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    /* БОЛЕЕ МЯГКОЕ СВЕЧЕНИЕ */
    text-shadow: 0 0 12px rgba(77, 208, 225, 0.5);
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

p.subtitle {
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

header#hero {
    text-align: center;
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    backdrop-filter: blur(5px);
    border-radius: 8px; /* Добавим скругление для мягкости */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--border-color);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.hex {
    position: relative;
    width: 200px;
    height: 230px;
    background-color: var(--card-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s;
}
.hex:hover {
    background-color: rgba(77, 208, 225, 0.2);
}
.hex span {
    font-weight: bold;
    color: var(--primary-color);
}
.hex small {
    display: block;
    color: var(--text-color);
    font-weight: normal;
    margin-top: 5px;
}

#special-ops ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

#special-ops li {
    background: var(--card-bg);
    margin-bottom: 10px;
    padding: 15px;
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
}
#special-ops li span {
    color: var(--secondary-color);
    margin-right: 10px;
    font-weight: bold;
}

#contact, #cta {
    text-align: center;
}
#contact .contact-info {
    font-size: 1.2rem;
    color: var(--text-color);
}
#contact .contact-info p {
    margin: 5px 0;
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    font-size: 1.2rem;
    overflow: hidden;
    transition: color 0.4s ease;
    border-radius: 5px;
}
.cta-button:hover {
    color: var(--bg-color);
}
.cta-button .glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: left 0.4s ease;
}
.cta-button:hover .glow {
    left: 0;
}
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
footer #privacy-link {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--secondary-color);
    transition: color 0.3s, border-bottom-color 0.3s;
}

footer #privacy-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-color);
    margin: 10% auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    width: 80%;
    max-width: 700px;
    position: relative;
    color: var(--text-color);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.modal-content h2 {
    margin-top: 0;
    text-align: left;
}

.modal-content h4 {
    color: var(--primary-color);
    margin-top: 20px;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    header h1 { font-size: 2rem; }
    .hex { width: 150px; height: 172.5px; }
}