@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0f1a;
    color: #e2e8f0;
}

/* Эффект матового стекла */
.glass {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ссылки в футере */
.footer-link {
    color: #94a3b8;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: #4ade80;
}

/* SEO контент */
.seo-content p {
    margin-bottom: 1.5rem;
    color: #94a3b8;
    line-height: 1.8;
}

.seo-content h2 {
    color: #f8fafc;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* FAQ аккордеон */
.faq-item:hover {
    border-color: rgba(74, 222, 128, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

.faq-item.active i {
    transform: rotate(180deg);
    color: #4ade80;
}

/* Списки с галочками */
.list-check {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.list-check li {
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #94a3b8;
}

.list-check li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4ade80;
    font-size: 1.2rem;
}

/* Списки с градиентными точками */
.list-gradient {
    list-style: none !important;
    padding: 0 !important;
}

.list-gradient li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #94a3b8;
}

.list-gradient li::before {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-right: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}