.static-page {
    max-width: 1180px;
    margin-inline: auto;
}

.static-page .static-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.static-page .static-card {
    padding: 22px;
}

.static-page .static-card h2,
.static-page .static-card h3 {
    margin: 8px 0 10px;
    letter-spacing: -.03em;
}

.static-page .static-card p,
.static-page .static-section p,
.static-page .static-section li {
    color: var(--muted);
    line-height: 1.65;
}

.static-page .static-section {
    margin-top: 20px;
    padding: 26px;
}

.static-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    padding: 24px;
}

.contact-card a:not(.btn) {
    color: var(--blue);
    font-size: 18px;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 850;
    list-style-position: inside;
}

.faq-item div {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.65;
}

.not-found-page {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    gap: 20px;
    align-items: stretch;
    max-width: 1120px;
    min-height: 520px;
    margin: 34px auto;
}

.not-found-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 5vw, 58px);
}

.not-found-code {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: clamp(72px, 13vw, 160px);
    font-weight: 950;
    line-height: .8;
    letter-spacing: -.08em;
}

.not-found-card h1 {
    margin: 16px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.not-found-card > p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.not-found-search {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.not-found-search input {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    padding: 0 14px;
}

.not-found-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--r-xl);
    background: linear-gradient(150deg, #17202a, #294354 55%, #1d65d8);
    padding: 34px;
    color: #fff;
}

.not-found-side img {
    width: min(100%, 280px);
    margin: auto auto 36px;
}

.not-found-side p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .static-page .static-grid,
    .contact-grid,
    .not-found-page {
        grid-template-columns: 1fr;
    }

    .not-found-side {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .not-found-search,
    .static-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
