/* FAQ — в концепции about/careers/press */

.faq-container {
    padding-bottom: var(--space-2xl, 3rem);
}

.faq-hero .about-subtitle {
    max-width: 720px;
}

.faq-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl, 2rem);
    color: var(--text-secondary, #64748b);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Секция FAQ */
.faq-section {
    padding: var(--space-6xl, 4rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: var(--space-2xl, 2rem) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light, #e2e8f0);
}

.faq-section .section-title {
    margin-bottom: var(--space-xl, 2rem);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.faq-item[open] {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.faq-item summary {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #0f172a);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875rem;
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary, #475569);
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    margin-top: 0;
}

.faq-item p a {
    color: var(--primary, #2563eb);
    text-decoration: none;
    font-weight: 600;
}

.faq-item p a:hover {
    text-decoration: underline;
}

/* Ссылки */
.faq-links {
    padding: var(--space-6xl, 4rem) 0;
    margin: var(--space-2xl, 2rem) 0;
}

.faq-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.faq-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 12px;
    color: var(--text-primary, #0f172a);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.faq-link-card i {
    color: var(--primary, #2563eb);
    font-size: 1.125rem;
}

.faq-link-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.seo-landing-page .seo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-lg, 1.5rem);
    max-width: 960px;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--text-secondary, #64748b);
}

.seo-landing-page .seo-breadcrumbs a,
.seo-landing-page .seo-breadcrumbs span[aria-current="page"] {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.625rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-light, #e2e8f0);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    color: inherit;
    max-width: 100%;
}

.seo-landing-page .seo-breadcrumbs a:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.seo-landing-page .seo-breadcrumbs-sep {
    color: #94a3b8;
    user-select: none;
}

.seo-landing-page .about-container {
    max-width: 100%;
    padding: 0;
}

.seo-landing-page {
    background: #f8fafc;
}

.seo-landing-page .about-container {
    background: transparent;
}

.seo-landing-page .about-hero {
    padding: 120px 0 80px;
    border-radius: 0;
    margin-bottom: var(--space-xl, 2rem);
}

.seo-landing-page .about-hero .container {
    max-width: 1100px;
}

.seo-landing-page .about-title {
    letter-spacing: -0.03em;
}

.seo-landing-page .about-subtitle {
    max-width: 860px;
}

.seo-landing-page .mission-section,
.seo-landing-page .values-section,
.seo-landing-page .cta-section {
    padding: var(--space-5xl, 3.5rem) 0;
}

.seo-landing-page .mission-section,
.seo-landing-page .values-section,
.seo-landing-page .cta-section {
    margin-left: var(--space-lg, 1.5rem);
    margin-right: var(--space-lg, 1.5rem);
}

.seo-landing-page .mission-section::before,
.seo-landing-page .values-section::before,
.seo-landing-page .cta-section::before {
    opacity: 0.7;
}

.seo-landing-page .faq-links-grid {
    max-width: 980px;
}

.seo-landing-page .faq-link-card {
    align-items: flex-start;
    line-height: 1.35;
    position: relative;
    overflow: hidden;
}

.seo-landing-page .faq-link-card i {
    margin-top: 0.125rem;
}

.seo-landing-page .faq-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: left;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.seo-landing-page .faq-link-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.seo-landing-page .faq-link-card:hover {
    transform: translateY(-1px);
}

.seo-landing-page .faq-link-card {
    font-size: 0.95rem;
}

.seo-landing-page .mission-section .mission-description {
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .faq-list {
        gap: 0.5rem;
    }
    .faq-item summary {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    .faq-item p {
        padding: 0.75rem 1rem 1rem;
    }

    .seo-landing-page .seo-breadcrumbs {
        justify-content: flex-start;
        max-width: 100%;
    }

    .seo-landing-page .about-hero {
        padding: 96px 0 56px;
    }

    .seo-landing-page .mission-section,
    .seo-landing-page .values-section,
    .seo-landing-page .cta-section {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}
