:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #1a1a2e;
    --accent: #ff006e;
    --success: #00d651;
    --warning: #ffa500;
    --danger: #ff3333;
    --bg: #0f0f1e;
    --bg-light: #16213e;
    --text: #ffffff;
    --text-secondary: #b0b0b0;
    --border: #2a2a4e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
    color: unset
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--secondary), var(--bg-light));
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo {
    width: 50px;
    border-radius: 15px;
    z-index: 102;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* Гамбургер кнопка - скрыта по умолчанию */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 102;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Анимация гамбургера при открытии */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Скрываем мобильную кнопку в хедере по умолчанию */
.btn-mobile-header {
    display: none;
}

/* Мобильная версия - до 768px */
@media screen and (max-width: 768px) {
    .header-content {
        padding: 12px 0;
        gap: 10px;
    }
    
    .logo {
        width: 40px;
        flex-shrink: 0;
    }
    
    /* Показываем мобильную кнопку в хедере */
    .btn-mobile-header {
        display: inline-block;
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Показываем гамбургер */
    .hamburger {
        display: flex;
        flex-shrink: 0;
    }
    
    /* Скрываем десктопную кнопку */
    .btn-desktop {
        display: none;
    }
    
    /* Мобильное меню */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 101;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-menu li {
        text-align: left;
    }
    
    .nav-menu a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
}

/* Очень маленькие экраны */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        width: 35px;
    }
    
    .btn-mobile-header {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hamburger span {
        width: 24px;
    }
    
    .nav-menu {
        width: 250px;
    }
}

/* Планшеты */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    nav ul {
        gap: 20px;
    }
    
    nav a {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 50%, var(--secondary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 40px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

/* Section Styles */
section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.data-table thead {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--secondary);
}

.data-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 15px 20px;
    border-top: 1px solid var(--border);
}

.data-table tbody tr:hover {
    background: var(--secondary);
}
/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Award Card */
.award-card {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.award-card-primary {
    border: 2px solid var(--primary);
}

.award-card-accent {
    border: 2px solid var(--accent);
}

/* Award Icon */
.award-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.award-card-primary .award-icon i {
    color: var(--primary);
}

.award-card-accent .award-icon i {
    color: var(--accent);
}

.award-card:hover .award-icon i {
    animation: bounce 0.6s ease;
}

/* Award Text */
.award-card h3 {
    margin: 15px 0 10px;
    font-size: 1.2rem;
}

.award-card-primary h3 {
    color: var(--primary);
}

.award-card-accent h3 {
    color: var(--accent);
}

.award-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .award-card {
        padding: 20px 15px;
    }
    
    .award-icon {
        font-size: 2rem;
    }
    
    .award-card h3 {
        font-size: 1rem;
    }
    
    .award-card p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Bonuses Section */
.bonuses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.bonus-item {
    background: linear-gradient(135deg, var(--bg-light), var(--secondary));
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    text-align: center;
}

.bonus-amount {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.comparison-table thead {
    background: var(--bg-light);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    border: 1px solid var(--border);
    text-align: center;
}

.comparison-table th {
    color: var(--primary);
    font-weight: 600;
}

.feature-check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-cross {
    color: var(--danger);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary);
}

.rating {
    color: var(--warning);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-light);
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-answer {
    background: var(--bg);
    padding: 18px;
    color: var(--text-secondary);
    display: none;
    border-top: 1px solid var(--border);
}

.faq-answer.active {
    display: block;
}

/* Download Section */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg-light);
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary), var(--bg-light));
    color: var(--text-secondary);
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }
    .reviews-container{ 
        grid-template-columns: 1fr;
    }
}
.image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    margin-top: 20px;
}
.full {
    width: 100% !important;
    display: inline-block !important;
    text-align: center !important;
    margin-top: 20px !important;
}
.images-block{
    max-width: 900px;
    margin: 20px auto;
}
.image-top {
    width: 33% !important;
    border-radius: 5px;
}
/* Schema Markup Styling */
.schema-breadcrumb {
    margin: 20px 0;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--text);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px;
}