/* ==================== CSS Variables (Pastel Modern Design) ==================== */
:root {
    /* Пастельные цвета - основная палитра */
    --primary-pink: #FFB3D9;      /* Основной розовый */
    --primary-purple: #E0B3FF;    /* Фиолетовый */
    --primary-blue: #B4E7FF;      /* Голубой */
    --primary-mint: #95E1D3;      /* Мятный */
    --primary-yellow: #FFE66D;    /* Желтый */
    
    /* Неоновые акценты (но мягче) */
    --accent-pink: #FF85C1;       /* Средний розовый */
    --accent-cyan: #66E7E0;       /* Бирюзовый */
    --accent-lime: #B8FF6B;       /* Лайм */
    --accent-purple: #D87FFF;     /* Фиолетовый */
    --accent-orange: #FFB366;     /* Оранжевый */
    
    /* Фоны */
    --bg-primary: #FFF5F9;        /* Основной светлый фон */
    --bg-secondary: #FFFFFF;      /* Белый для карточек */
    --bg-light: #FFF9FC;          /* Очень светлый розовый */
    --bg-gradient: linear-gradient(135deg, #FFF5F9 0%, #FCF5FF 50%, #F5FAFF 100%);
    
    /* Текст */
    --text-primary: #1a1a2e;      /* Темный для основного текста */
    --text-secondary: #4a4a6a;    /* Серый для вторичного */
    --text-tertiary: #8a8aaa;     /* Светлый серый */
    --text-light: #b0b0cc;        /* Очень светлый */
    
    /* Border и тени */
    --border-color: rgba(255, 107, 165, 0.15);
    --shadow-sm: 0 2px 8px rgba(255, 107, 165, 0.08);
    --shadow-md: 0 4px 15px rgba(255, 107, 165, 0.1);
    --shadow-lg: 0 8px 30px rgba(255, 107, 165, 0.12);
    --shadow-xl: 0 12px 40px rgba(255, 107, 165, 0.15);
    
    /* Border radius */
    --border-radius: 20px;
    --border-radius-lg: 28px;
    --border-radius-sm: 12px;
    --border-radius-xl: 32px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    color: var(--text-primary);
    background: var(--bg-gradient);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Декоративные элементы (мягкие точки) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 179, 217, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(224, 179, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    pointer-events: none;
    z-index: 1;
}

/* ==================== Container ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ==================== Navbar ==================== */
.navbar {
    position: relative;
    background: rgba(255, 245, 249, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.navbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--accent-pink);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.navbar__menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar__menu a:hover {
    color: var(--accent-pink);
}

.navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    transition: width 0.3s ease;
}

.navbar__menu a:hover::after {
    width: 100%;
}

/* Hamburger menu (hidden by default) */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1002;
}

.navbar__hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-pink);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .navbar__hamburger {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 245, 249, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar__menu.active {
        max-height: 300px;
    }

    .navbar__menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar__menu a {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .navbar__menu a::after {
        display: none;
    }

    .navbar__menu a:hover {
        background: rgba(255, 179, 217, 0.2);
    }
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 80px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    position: relative;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--accent-pink);
    font-weight: 700;
    margin-bottom: 15px;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero__benefits {
    list-style: none;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 165, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ==================== Buttons ==================== */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 133, 193, 0.3);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-mint));
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
}

.btn--outline:hover {
    background: rgba(255, 133, 193, 0.1);
}

.btn--large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn__icon {
    font-size: 1.2rem;
}

/* ==================== Section Titles ==================== */
.section__title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-align: center;
}

.section__subtitle {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.section__intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ==================== Description Section (New) ==================== */
.description {
    padding: 60px 0;
    background: var(--bg-light);
}

.description__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.description__content h3 {
    font-size: 2.2rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    font-weight: 800;
}

.description__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.description__highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.description__highlight {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-pink);
    box-shadow: var(--shadow-sm);
}

.description__highlight-icon {
    font-size: 2rem;
    color: var(--accent-pink);
    flex-shrink: 0;
}

.description__highlight-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.description__highlight-title {
    font-weight: 700;
    color: var(--text-primary);
}

.description__highlight-desc {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.description__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* ==================== Downloads Card (New) ==================== */
.description__downloads-card {
    background: linear-gradient(135deg, #FFB3D9, #E0B3FF);
    border-radius: var(--border-radius-lg);
    padding: 50px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 12px 40px rgba(255, 107, 165, 0.2);
    transition: var(--transition);
    transform: scale(1);
}

.description__downloads-card:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 107, 165, 0.3);
}

.downloads-emoji {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s infinite;
}

.downloads-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.downloads-count {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.downloads-subtitle {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.downloads-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 2rem;
}

.downloads-icons i {
    animation: beat 1s infinite;
}

.downloads-icons i:nth-child(2) {
    animation-delay: 0.2s;
}

.downloads-icons i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ==================== Versions Block (New) ==================== */
.versions {
    padding: 60px 0;
    background: white;
}

.versions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.version-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.version-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 15px 40px rgba(255, 133, 193, 0.15);
}

.version-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.version-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.version-card__desc {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.version-card__info {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 15px 0;
    font-size: 0.9rem;
}

.version-card__info-item {
    text-align: center;
}

.version-card__info-label {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    display: block;
}

.version-card__info-value {
    color: var(--accent-pink);
    font-weight: 700;
    display: block;
}

.version-card__button {
    width: 100%;
}

.versions__qr {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--border-color);
}

.versions__qr-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.versions__qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border: 2px solid var(--accent-pink);
    border-radius: 12px;
    margin: 0 auto;
    padding: 10px;
}

/* ==================== Features Section ==================== */
.features {
    padding: 80px 0;
    background: white;
}

.features__description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.features__description p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
    box-shadow: 0 20px 50px rgba(255, 133, 193, 0.15);
}

.feature-card__icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== Mod Features Section ==================== */
.mod-features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.mod-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mod-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(102, 231, 224, 0.15);
}

.mod-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mod-card h3 i {
    color: var(--accent-cyan);
    font-size: 1.8rem;
}

.mod-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mod-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.mod-card i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==================== Installation Section ==================== */
.installation {
    padding: 80px 0;
    background: white;
}

.steps__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.step {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-lg);
}

.step__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== Comparison Section ==================== */
.comparison {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison__table {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.comparison__header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.comparison__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.comparison__row:last-child {
    border-bottom: none;
}

.comparison__cell {
    padding: 25px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.comparison__row .comparison__cell:first-child {
    text-align: left;
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison__cell--highlight {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* ==================== Safety Section ==================== */
.safety {
    padding: 80px 0;
    background: white;
}

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

.safety__card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.safety__card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 15px 40px rgba(255, 133, 193, 0.15);
}

.safety__icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.safety__card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 20px;
}

.safety__card ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety__card li {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.safety__card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* ==================== System Requirements (New) ==================== */
.requirements {
    padding: 60px 0;
    background: var(--bg-light);
}

.requirements__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.requirements__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-pink);
    box-shadow: var(--shadow-sm);
}

.requirement-item__icon {
    font-size: 1.8rem;
    color: var(--accent-pink);
    flex-shrink: 0;
}

.requirement-item__text {
    display: flex;
    flex-direction: column;
}

.requirement-item__label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.requirement-item__value {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.badges-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.badges-section__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
}

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

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.badge:hover {
    transform: scale(1.05);
    border-color: var(--accent-pink);
}

.badge__icon {
    font-size: 2.5rem;
    color: var(--accent-pink);
}

.badge__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ==================== Reviews Section ==================== */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(255, 230, 109, 0.15);
}

.review-card__rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
}

.review-card__star {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.review-card__text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.review-card__author-info {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.review-card__title {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ==================== Screenshots Section ==================== */
.screenshots {
    padding: 80px 0;
    background: var(--bg-light);
}

.screenshots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.screenshot {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    background: white;
    border: 2px solid var(--border-color);
}

.screenshot:hover {
    transform: scale(1.05);
    border-color: var(--accent-pink);
    box-shadow: 0 20px 50px rgba(255, 133, 193, 0.2);
}

.screenshot img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ==================== Screenshot Modal ==================== */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-modal.active {
    display: flex;
    opacity: 1;
}

.screenshot-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.screenshot-modal__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 100;
    animation: modalZoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.screenshot-modal__image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screenshot-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    z-index: 1002;
}

.screenshot-modal__close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--accent-pink);
    color: white;
}

/* Navigation buttons */
.screenshot-modal__nav {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    z-index: 101;
}

.screenshot-modal__nav:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.screenshot-modal__nav--prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.screenshot-modal__nav--next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.screenshot-modal__nav--prev:hover {
    left: 15px;
}

.screenshot-modal__nav--next:hover {
    right: 15px;
}

/* Counter and hint */
.screenshot-modal__counter {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 101;
    backdrop-filter: blur(10px);
}

.screenshot-modal__hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    z-index: 101;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 90%;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==================== FAQ Section ==================== */
.faq {
    padding: 80px 0;
    background: white;
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-md);
}

.faq-item__header {
    padding: 25px 30px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-item__header:hover {
    background: rgba(255, 133, 193, 0.05);
}

.faq-item__question {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item__question-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item__toggle {
    font-size: 1.5rem;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
}

.faq-item__toggle.active {
    transform: rotate(180deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item__content.active {
    max-height: 500px;
}

.faq-item__text {
    padding: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==================== CTA Section ==================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    text-align: center;
    border-radius: var(--border-radius-xl);
    margin: 60px 0;
}

.cta__title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cta__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta .btn {
    background: white;
    color: var(--accent-pink);
    font-weight: 800;
}

.cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ==================== Footer ==================== */
footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ==================== Notification ==================== */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    animation: slideInRight 0.4s ease;
    max-width: 350px;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.remove {
    animation: slideOutRight 0.4s ease forwards;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero .container,
    .description__container,
    .requirements__container {
        grid-template-columns: 1fr;
    }

    .navbar__menu {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__benefits li {
        font-size: 0.95rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .section__subtitle {
        font-size: 1rem;
    }

    .features__grid,
    .mod-features__grid,
    .safety__grid,
    .reviews__grid,
    .versions__grid,
    .descriptions__highlights,
    .badges {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .cta__title {
        font-size: 2rem;
    }

    .description__downloads-card {
        margin-top: 30px;
    }

    .badges-section {
        padding: 25px;
    }

    .badges-section__title {
        font-size: 1.2rem;
    }

    .badge {
        padding: 15px;
    }

    .badge__icon {
        font-size: 2rem;
    }

    .badge__label {
        font-size: 0.75rem;
    }

    .requirement-item {
        flex-direction: row;
        gap: 15px;
    }

    .requirement-item__icon {
        min-width: 40px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card__icon {
        font-size: 2.5rem;
    }

    .btn--large {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Container & Layout */
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

    .hero__title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero__benefits {
        margin-bottom: 20px;
    }

    .hero__benefits li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .check {
        min-width: 18px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section__title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .section__subtitle {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn--large {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn__icon {
        font-size: 1rem;
    }

    /* Navbar */
    .navbar {
        padding: 15px 0;
    }

    .navbar__menu {
        gap: 0.8rem;
        font-size: 0.7rem;
    }

    .navbar__logo {
        font-size: 1rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    /* Description & Cards */
    .description {
        padding: 40px 0;
    }

    .description__text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .description__downloads-card {
        margin-top: 25px;
        padding: 20px;
    }

    .downloads-title {
        font-size: 0.9rem;
    }

    .downloads-count {
        font-size: 1.8rem;
    }

    .downloads-subtitle {
        font-size: 0.8rem;
    }

    .downloads-icons i {
        font-size: 0.9rem;
    }

    /* Badges Section */
    .badges-section {
        padding: 20px;
    }

    .badges-section__title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .badges {
        gap: 10px;
    }

    .badge {
        padding: 12px;
        gap: 8px;
    }

    .badge__icon {
        font-size: 1.8rem;
    }

    .badge__label {
        font-size: 0.7rem;
    }

    /* Features & Cards */
    .feature-card {
        padding: 15px;
    }

    .feature-card__icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Version Cards */
    .version-card {
        padding: 15px;
    }

    .version-card__title {
        font-size: 1.1rem;
    }

    .version-card__info {
        margin: 15px 0;
    }

    .version-card__badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    /* Steps */
    .steps__container {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 20px;
    }

    /* Comparison */
    .comparison__header,
    .comparison__row {
        grid-template-columns: 1fr 1fr;
        font-size: 0.8rem;
        gap: 8px;
    }

    .comparison__cell {
        padding: 12px 8px;
    }

    /* Requirements */
    .requirement-item {
        padding: 15px;
    }

    .requirement-item__label {
        font-size: 0.85rem;
    }

    .requirement-item__value {
        font-size: 0.9rem;
    }

    /* Notification */
    .notification {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 30px 0;
    }

    footer p {
        font-size: 0.85rem;
    }

    /* QR Code */
    .versions__qr-code {
        max-width: 200px;
    }

    .versions__qr-title {
        font-size: 1.1rem;
    }

    /* Modal/Forms */
    .modal-content {
        width: 95vw;
        padding: 20px;
    }

    /* Reviews */
    .review-card {
        padding: 15px;
    }

    .review-card__text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .review-card__author {
        font-size: 0.85rem;
    }

    /* CTA Section */
    .cta {
        padding: 30px 0;
    }

    .cta__title {
        font-size: 1.4rem;
    }

    .cta__subtitle {
        font-size: 0.9rem;
    }

    /* Highlight items */
    .description__highlight {
        padding: 15px;
    }

    .description__highlight-icon {
        font-size: 2rem;
    }

    .description__highlight-title {
        font-size: 1rem;
    }

    .description__highlight-desc {
        font-size: 0.8rem;
    }
}

/* ==================== Accessibility ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}