:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #00f2ff; /* Твой фирменный Cyan */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Фоновые пятна (Glow) */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}
.glow-1 { top: -100px; left: -100px; background: var(--accent-color); }
.glow-2 { bottom: -100px; right: -100px; background: #bd00ff; }

/* Стекло */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Навигация */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    margin: 20px;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }
.logo-img { width: 32px; height: 32px; }

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: white; }

/* Кнопки */
.btn {
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 80vh;
    flex-wrap: wrap;
}

.hero-content { flex: 1; min-width: 300px; }
.hero-image { flex: 1; min-width: 300px; display: flex; justify-content: center; perspective: 1000px; }

h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.text-gradient {
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.sub-text { display: block; margin-top: 10px; font-size: 0.8rem; opacity: 0.5; }

/* 3D Mockup */
.app-mockup {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    transform: rotateY(-10deg) rotateX(5deg); /* Легкий поворот */
    transition: transform 0.5s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.app-mockup:hover { transform: rotateY(0) rotateX(0); }
.app-mockup img { width: 100%; border-radius: 8px; display: block; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 100px 10%;
}
.feature-card { padding: 30px; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.icon { font-size: 2rem; margin-bottom: 15px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Specs */
.specs { margin: 0 10%; padding: 40px; text-align: center; }
.specs h2 { margin-bottom: 30px; }
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
}
.spec-item { display: flex; flex-direction: column; padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.spec-item strong { color: var(--accent-color); font-size: 0.9rem; margin-bottom: 5px; }

/* Footer */
footer { text-align: center; padding: 50px 0; color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.footer-links a { color: inherit; text-decoration: none; margin: 0 10px; }
.footer-links a:hover { color: white; }

/* Mobile */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    h1 { font-size: 2.5rem; }
    .app-mockup { transform: none; margin-top: 40px; }
    nav { display: none; } /* Упрощение для мобилок */
}
/* --- Добавить в конец style.css --- */

/* Общие заголовки секций */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

/* FAQ Section */
.faq-section {
    padding: 80px 10%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 25px;
    transition: background 0.3s;
}

.faq-item h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Privacy Section */
.privacy-section {
    margin: 60px 10%;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(0, 242, 255, 0.15); /* Чуть ярче границы для важности */
}

.privacy-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.privacy-lead {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #fff;
    line-height: 1.8;
}

.privacy-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: left;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.privacy-details p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-details strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

/* Адаптив для новых секций */
@media (max-width: 768px) {
    .privacy-section {
        padding: 30px 20px;
        margin: 40px 5%;
    }
    .privacy-details {
        text-align: center;
    }
}
/* --- CAROUSEL (Слайдер) --- */
.carousel {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Скрываем всё, что выходит за рамки */
    border-radius: 8px; /* Скругляем картинки внутри рамки */
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-track img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover; /* Или contain, если хочешь видеть картинку целиком */
    display: block;
}

/* Точки навигации слайдера */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- DOWNLOAD SECTION --- */
.download-section {
    padding: 80px 10%;
    text-align: center;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.download-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.os-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.version {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.os-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
    padding-left: 20px; /* Небольшой отступ для визуального баланса */
}

.os-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.os-features li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* --- TRIAL CARD HIGHLIGHT --- */
.trial-card {
    border: 1px solid var(--accent-color); /* Цветная рамка */
    background: rgba(0, 242, 255, 0.03); /* Очень легкий оттенок фона */
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1); /* Легкое свечение */
    grid-column: span 1; /* На мобильных 1 колонка */
}

/* Если карточек станет 5, на больших экранах последняя может выглядеть одиноко.
   Можно растянуть её на 2 колонки, если хочешь, или оставить как есть.
   Вот вариант, чтобы она была широкой, если она последняя в нечетном ряду: */
@media (min-width: 1024px) {
    .features {
        /* Центрируем элементы, если их нечетное количество */
        justify-content: center; 
    }
    /* Опционально: сделать карточку триала шире */
    /* .trial-card { grid-column: span 2; } */ 
}