/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #081c06 0%, #163e31 50%, #0a2705 100%);
    color: #e6e6e6;
    min-height: 100vh;
    line-height: 1.6;
}

.ad-banners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
    margin-top: -15px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .ad-banners {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .ad-banners, .ad-banners div, .ad-banners a, .ad-banners img {
        width: 100% !important;
        height: 90%;
        display: block;
        box-sizing: border-box;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Навигация */
.navbar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand a {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #e6e6e6;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-stats {
    display: flex;
    gap: 15px;
}

.stat {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Основной контент */
.header {
    text-align: center;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header p {
    font-size: 1.1em;
    opacity: 0.8;
    margin-bottom: -20px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn {
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
}

.btn-info {
    background: linear-gradient(45deg, #4CAF50, #4CAF50);
}

.btn-info:hover {
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
}

.btn-success {
    background: linear-gradient(45deg, #56ab2f, #a8e063);
}

.btn-success:hover {
    box-shadow: 0 5px 15px rgba(86, 171, 47, 0.4);
}

.btn-lg {
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Стили для страницы без доступных сайтов */
.no-sites-container {
    text-align: center;
    padding: 50px 20px;
}

.no-sites-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-mini {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.stat-mini-number {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-mini-label {
    font-size: 0.8em;
    opacity: 0.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: #8BC34A;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(45deg, #4CAF50, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-list {
    display: grid;
    gap: 15px;
}

.site-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.site-item:hover {
    transform: translateY(-2px);
}

.site-url {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.site-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Уведомления */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.alert-success {
    margin-top: 10px;
    margin-bottom: -10px;
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #48bb78;
}

.alert-error {
    margin-top: 10px;
    margin-bottom: -10px;
    background: rgba(245, 101, 101, 0.2);
    border: 1px solid rgba(245, 101, 101, 0.3);
    color: #f56565;
}

.alert-info {
    margin-top: 10px;
    margin-bottom: -10px;
    background: rgba(66, 153, 225, 0.2);
    border: 1px solid rgba(66, 153, 225, 0.3);
    color: #4CAF50;
}

.alert-warning {
    margin-top: 10px;
    margin-bottom: -10px;
    background: rgba(237, 137, 54, 0.15);
    border: 1px solid rgba(237, 137, 54, 0.3);
    color: #ed8936;
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .alert-success,
    .alert-error,
    .alert-info,
    .alert-warning {
        margin: 8px auto;
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 6px;
        width: 95%;
        max-width: 95%;
    }
}

/* Очень маленькие экраны (до 480px) */
@media (max-width: 480px) {
    .alert-success,
    .alert-error,
    .alert-info,
    .alert-warning {
        margin: 6px auto;
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 5px;
        width: 98%;
        max-width: 98%;
    }
}

/* Планшеты (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .alert-success,
    .alert-error,
    .alert-info,
    .alert-warning {
        margin: 10px auto;
        padding: 12px 15px;
        font-size: 0.95rem;
        width: 92%;
        max-width: 92%;
    }
}

/* Подвал */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8BC34A;
}

.footer-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-stat {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: 80px;
}

.footer-stat strong {
    display: block;
    font-size: 1.5em;
    background: linear-gradient(45deg, #8BC34A, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .container {
        padding: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Стили для страницы 404 */
.error-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 70vh;
    padding: 40px 0;
}

.error-content {
    text-align: left;
}

.error-number {
    font-size: 6em;
    font-weight: bold;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1;
}

.error-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.8;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-stats {
    display: flex;
    gap: 20px;
}

.error-stats .stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
}

/* Анимация космонавта */
.astro-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 50px rgba(102, 126, 234, 0.3);
}

.planet::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.planet::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 30px;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.astronaut {
    font-size: 4em;
    position: absolute;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}

.star:nth-child(1) {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    width: 2px;
    height: 2px;
    top: 60%;
    left: 80%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 80%;
    left: 40%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Адаптивность для 404 */
@media (max-width: 768px) {
    .error-page {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .error-content {
        text-align: center;
    }
    
    .error-number {
        font-size: 4em;
    }
    
    .error-content h1 {
        font-size: 2em;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .error-stats {
        justify-content: center;
    }
    
    .astro-illustration {
        height: 300px;
    }
    
    .planet {
        width: 150px;
        height: 150px;
    }
}

.desktop-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .desktop-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .desktop-grid > * {
        width: 100%;
    }
    
    /* Специфичные стили для правого блока на мобильных */
    .desktop-grid > div:last-child {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* ==================== */
/* СТИЛИ ДЛЯ SEO-СТРАНИЦЫ */
/* ==================== */

/* Основной контейнер SEO страницы */
.seo-page {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

/* Хлебные крошки */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-item {
    margin-right: 10px;
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.5;
}

.breadcrumb-item a {
    color: #8BC34A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #764ba2;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

/* Заголовок страницы */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Основные секции */
.section-card {
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-out;
}

.section-card .card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.section-card .card-header {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-card .card-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    color: #e6e6e6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-card .card-body {
    padding: 30px;
}

/* Особенности (Features) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #e6e6e6;
}

.feature-content p {
    margin: 0;
    color: rgba(230, 230, 230, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Шаги (Steps) */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #e6e6e6;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: rgba(230, 230, 230, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Преимущества (Benefits) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.benefit-header h3 {
    margin: 0;
    color: #e6e6e6;
    font-size: 1.2rem;
}

.benefit-content p {
    margin: 0;
    color: rgba(230, 230, 230, 0.8);
    line-height: 1.6;
}

.benefit-content strong {
    color: #8BC34A;
    font-weight: 600;
}

/* Аудитория */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.audience-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.audience-content h4 {
    margin: 0 0 5px 0;
    color: #e6e6e6;
    font-size: 1rem;
}

.audience-content p {
    margin: 0;
    color: rgba(230, 230, 230, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Шаги получения трафика */
.traffic-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.traffic-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8BC34A;
    transition: all 0.3s ease;
}

.traffic-step:hover {
    background: rgba(255, 255, 255, 0.08);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.step-badge {
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 15px;
    font-weight: bold;
    min-width: 70px;
    text-align: center;
}

.step-header h3 {
    margin: 0;
    color: #e6e6e6;
    font-size: 1.1rem;
}

.traffic-step p {
    margin: 0;
    color: rgba(230, 230, 230, 0.8);
    line-height: 1.6;
}

/* Гарантии */
.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(56, 178, 172, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(56, 178, 172, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(56, 178, 172, 0.15);
    transform: translateY(-3px);
}

.guarantee-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #38b2ac;
}

.guarantee-content h4 {
    margin: 0 0 5px 0;
    color: #e6e6e6;
    font-size: 1rem;
}

.guarantee-content p {
    margin: 0;
    color: rgba(230, 230, 230, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Отзывы */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    background: rgba(66, 153, 225, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(66, 153, 225, 0.15);
    transform: translateY(-3px);
}

.testimonial-content p {
    margin: 0 0 20px 0;
    font-style: italic;
    color: rgba(230, 230, 230, 0.9);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: #4CAF50;
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0.5;
}

.testimonial-author {
    text-align: right;
    color: rgba(230, 230, 230, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #4CAF50;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    margin: 0;
    color: #e6e6e6;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer p {
    margin: 0;
    color: rgba(230, 230, 230, 0.9);
    line-height: 1.6;
}

.faq-answer strong {
    color: #8BC34A;
}

/* CTA Section */
.cta-section {
    margin-top: 40px;
    animation: fadeIn 0.8s ease-out;
}

.cta-card {
    background: linear-gradient(135deg, rgba(10, 33, 20, 0.9) 0%, rgba(42, 152, 54, 0.9) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(45deg, #fff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text strong {
    color: #a8e063;
}

.cta-features {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.cta-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-check {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #a8e063;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-highlight h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-final {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #8BC34A, #8BC34A);
}

.cta-buttons .btn-success {
    background: linear-gradient(45deg, #56ab2f, #a8e063);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Утилитные классы */
.mt-4 {
    margin-top: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(230, 230, 230, 0.9);
    margin-bottom: 20px;
}

.intro-section {
    margin-bottom: 40px;
}

/* SEO оптимизация текста */
strong {
    color: #8BC34A;
    font-weight: 600;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для SEO страницы */
@media (max-width: 768px) {
    .seo-page {
        padding: 10px;
    }
    
    .page-header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-card .card-body {
        padding: 20px;
    }
    
    .features-grid,
    .benefits-grid,
    .audience-grid,
    .guarantees,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        min-width: 100%;
    }
    
    .traffic-steps {
        gap: 10px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text,
    .cta-final {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        min-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-highlight h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        font-size: 0.8rem;
    }
    
    .faq-question h4,
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.7rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-card .card-title {
        font-size: 1.3rem;
    }
    
    .feature-item,
    .audience-item,
    .guarantee-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon,
    .audience-icon,
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .step-badge {
        margin-right: 0;
        align-self: flex-start;
    }
}

/* Планшеты (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

/* Эффекты для интерактивных элементов */
.feature-item,
.benefit-card,
.audience-item,
.guarantee-item,
.testimonial,
.faq-item,
.cta-feature {
    position: relative;
    overflow: hidden;
}

.feature-item::before,
.benefit-card::before,
.audience-item::before,
.guarantee-item::before,
.testimonial::before,
.faq-item::before,
.cta-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s;
}

.feature-item:hover::before,
.benefit-card:hover::before,
.audience-item:hover::before,
.guarantee-item:hover::before,
.testimonial:hover::before,
.faq-item:hover::before,
.cta-feature:hover::before {
    left: 100%;
}