

/* Start:/local/templates/dev/css/advantages-section.css?17841658873604*/
/* Секция преимуществ */
.advantages-section {
    width: 100%;
    padding: 80px 0;
    background: var(--surface-ffffff);
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.advantages-header {
    margin-bottom: 4rem;
}

.advantages-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary-111827);
    margin-bottom: 1rem;
}

.advantages-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted-6b7280);
    max-width: 700px;
    margin: 0 auto;
}

/* Сетка преимуществ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: var(--surface-ffffff);
    border: 2px solid var(--border-e5e7eb);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
}

.advantage-icon svg {
    width: 48px;
    height: 48px;
    color: #2563eb;
}

.advantage-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.advantage-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary-111827);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-description {
    font-size: 1rem;
    color: var(--text-muted-4b5563);
    line-height: 1.7;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .advantages-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }

    .advantages-header {
        margin-bottom: 3rem;
    }

    .advantages-title {
        font-size: 1.75rem;
    }

    .advantages-subtitle {
        font-size: 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .advantage-title {
        font-size: 1.25rem;
    }

    .advantage-description {
        font-size: 0.938rem;
    }
}

@media (max-width: 640px) {
    .advantages-section {
        padding: 40px 0;
    }

    .advantages-container {
        padding: 0 1rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        width: 64px;
        height: 64px;
    }

    .advantage-icon svg {
        width: 40px;
        height: 40px;
    }
}
/* End */


/* Start:/local/templates/dev/css/theme.css?17841659343937*/
/*
 * theme.css — переключатель светлой/тёмной темы
 * Сгенерировано автоматически: переменные покрывают нейтральные цвета
 * (фон/текст/бордеры) из template_styles.css и css/*.css.
 * Светлые значения = оригинальные цвета сайта (визуально ничего не меняется).
 * Тёмные значения — палитра для [data-theme="dark"].
 * Брендовые/акцентные цвета (синий, статусные бейджи) в темах не участвуют —
 * они одинаково хорошо смотрятся на светлом и тёмном фоне.
 */

:root {
    --surface-page: #ffffff;
    --border-d1d5db: #d1d5db;
    --border-e0e0e0: #e0e0e0;
    --border-e2e8f0: #e2e8f0;
    --border-e5e7eb: #e5e7eb;
    --surface-e2e8f0: #e2e8f0;
    --surface-f1f5f9: #f1f5f9;
    --surface-f3f4f6: #f3f4f6;
    --surface-f8f9fa: #f8f9fa;
    --surface-f8fafc: #f8fafc;
    --surface-f9fafb: #f9fafb;
    --surface-ffffff: #ffffff;
    --text-muted-1a1a1a: #1a1a1a;
    --text-muted-333333: #333;
    --text-muted-374151: #374151;
    --text-muted-475569: #475569;
    --text-muted-4b5563: #4b5563;
    --text-muted-64748b: #64748b;
    --text-muted-666666: #666;
    --text-muted-6b7280: #6b7280;
    --text-muted-94a3b8: #94a3b8;
    --text-muted-9ca3af: #9ca3af;
    --text-primary-0f172a: #0f172a;
    --text-primary-111827: #111827;
    --text-primary-1e293b: #1e293b;
}

[data-theme="dark"] {
    --surface-page: #0f172a;
    --border-d1d5db: rgba(255,255,255,0.12);
    --border-e0e0e0: rgba(255,255,255,0.12);
    --border-e2e8f0: rgba(255,255,255,0.12);
    --border-e5e7eb: rgba(255,255,255,0.12);
    --surface-e2e8f0: #172033;
    --surface-f1f5f9: #172033;
    --surface-f3f4f6: #172033;
    --surface-f8f9fa: #172033;
    --surface-f8fafc: #172033;
    --surface-f9fafb: #172033;
    --surface-ffffff: #1e293b;
    --text-muted-1a1a1a: #94a3b8;
    --text-muted-333333: #94a3b8;
    --text-muted-374151: #94a3b8;
    --text-muted-475569: #94a3b8;
    --text-muted-4b5563: #94a3b8;
    --text-muted-64748b: #94a3b8;
    --text-muted-666666: #94a3b8;
    --text-muted-6b7280: #94a3b8;
    --text-muted-94a3b8: #94a3b8;
    --text-muted-9ca3af: #94a3b8;
    --text-primary-0f172a: #f1f5f9;
    --text-primary-111827: #f1f5f9;
    --text-primary-1e293b: #f1f5f9;
}

[data-theme="dark"] body {
    background-color: var(--surface-page);
}

/* Переключатель темы — кнопка с солнцем/луной */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-e5e7eb);
    background: var(--surface-ffffff);
    cursor: pointer;
    color: var(--text-muted-6b7280);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--surface-f3f4f6);
    color: var(--text-primary-111827);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline-flex; }

[data-theme="dark"] .theme-toggle .icon-sun { display: inline-flex; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Плавный переход цветов при смене темы на всей странице */
body, .header, .header-top, .header-main, .footer,
.hero-new, .create-card, .achievements-section, .achievement-item,
.brands-section, .steps-section, .step-card, .testimonial-card,
.about-section, .service-page, .advantages-section, .advantage-card,
.stages-section, .stage-circle {
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* End */


/* Start:/local/templates/dev/components/bitrix/breadcrumb/universal/style.css?1787490770901*/
.bx-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bx-breadcrumb-item {
    height: 22px;
    white-space: nowrap;
}

.bx-breadcrumb-item-angle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 8px;
    width: 8px;
    height: 21px;
    margin: 0 12px 0 10px;
    color: #94a3b8;
    font: 400 19px/21px Arial, sans-serif;
}

.bx-breadcrumb-item-link {
    border-bottom: 0;
    vertical-align: top;
    line-height: 21px;
}

.bx-breadcrumb-item-text {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    font: 400 13px/21px 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: 250ms linear all;
}

/* End */


/* Start:/local/templates/dev/template_styles.css?1787489976107459*/
/* Основные стили для сайта BitrixPro */

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted-333333);
    background-color: var(--surface-page);
    overflow-x: clip;
}

a {
    text-decoration: none;
    color: inherit;
}

/* App Container */
.app-container {
    width: 100%;
    min-height: 100vh;
    /* overflow:hidden создавал отдельный scroll-контейнер и ломал sticky у шапки. */
    overflow-x: clip;
}

/* Main Content */
main {
    width: 100%;
    overflow-x: clip;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Шапка сайта */
.header {
    width: 100%;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    isolation: isolate;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

/* Верхняя панель */
.header-top {
    background-color: var(--surface-f8fafc);
    border-bottom: 1px solid var(--border-e5e7eb);
    padding: 0.75rem 0;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted-475569);
}

.header-address svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link.whatsapp {
    background-color: #22c55e;
}

.social-link.whatsapp:hover {
    background-color: #16a34a;
}

.social-link.telegram {
    background-color: #3b82f6;
}

.social-link.telegram:hover {
    background-color: #2563eb;
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.header-top-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted-374151);
    transition: color 0.3s;
}

.header-top-contact:hover {
    color: #2563eb;
}

.header-top-contact svg {
    width: 1rem;
    height: 1rem;
}

/* Основная панель шапки */
.header-main {
    border-bottom: 1px solid var(--border-e5e7eb);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.yandex-rating-badge {
    width: 150px;
    height: 50px;
    flex: 0 0 150px;
    overflow: hidden;
}

.yandex-rating-badge iframe {
    display: block;
    border: 0;
}

.yandex-rating-badge--desktop {
    display: none;
}

.yandex-rating-badge--mobile {
    margin: 0 auto 0.75rem;
}

/* Логотип */
.logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-title {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.2;
    color: var(--text-primary-111827);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted-6b7280);
    line-height: 1.2;
}

/* Навигация */
.nav {
    display: none;
    gap: 1.25rem;
    align-items: center;
}

.nav a {
    color: var(--text-muted-374151);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2563eb;
}

/* Контакты в шапке */
.header-contacts {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.messengers {
    display: flex;
    gap: 0.75rem;
}

.messenger-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.messenger-link.whatsapp {
    background-color: #22c55e;
}

.messenger-link.whatsapp:hover {
    background-color: #16a34a;
}

.messenger-link.telegram {
    background-color: #3b82f6;
}

.messenger-link.telegram:hover {
    background-color: #2563eb;
}

.messenger-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted-374151);
    transition: color 0.3s;
}

.contact-item:hover {
    color: #2563eb;
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

/* Мобильное меню */
.mobile-menu-button {
    display: flex;
    padding: 0.5rem;
    color: var(--text-muted-374151);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-button:hover {
    color: #2563eb;
}

.mobile-menu-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-e5e7eb);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    padding: 0.5rem 0;
    color: var(--text-muted-374151);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #2563eb;
}

.mobile-contacts {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-e5e7eb);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-contact-list a {
    font-size: 0.875rem;
    color: var(--text-muted-374151);
}

.mobile-contact-list a:hover {
    color: #2563eb;
}

.mobile-messengers {
    display: flex;
    gap: 0.75rem;
}

.mobile-messengers a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-messengers .whatsapp {
    background-color: #22c55e;
}

.mobile-messengers .whatsapp:hover {
    background-color: #16a34a;
}

.mobile-messengers .telegram {
    background-color: #3b82f6;
}

.mobile-messengers .telegram:hover {
    background-color: #2563eb;
}

/*
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(37, 99, 235, 0.65) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
    max-width: 64rem;
    margin: 0 auto;
    text-align: left;
    margin-left: 10%;
}

.hero-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    background: linear-gradient(to right, #93c5fd, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: #e0e7ff;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 750px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.btn-hero-primary {
    background-color: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background-color: var(--surface-f3f4f6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-hero-secondary {
    background-color: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    background-color: rgba(37, 99, 235, 0.3);
}

.hero-stats {
    display: none;
}
*/

/* Hero секция */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.05);
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(37, 99, 235, 0.65) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
    max-width: 64rem;
    margin: 0 auto;
    text-align: left;
    margin-left: 10%;
}

.hero-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    background: linear-gradient(to right, #93c5fd, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: #e0e7ff;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 750px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.btn-hero-primary {
    background-color: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background-color: var(--surface-f3f4f6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: none;
}

.hero-new {
    width: 100%;
    background: var(--surface-ffffff);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-new-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-new-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) saturate(1.05);
    transform: scale(1.06);
}

.hero-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.86) 100%);
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero-new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Левый блок - текстовый контент */
.hero-new-content {
    color: var(--text-primary-111827);
}

.hero-new-kicker {
    margin: 0 0 0.75rem;
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-new-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary-111827);
}

.hero-new-title-accent {
    color: #2563eb;
    display: inline-block;
}

.hero-new-subtitle {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted-4b5563);
    margin-bottom: 1.5rem;
}

.hero-new-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.hero-new-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary-111827);
    font-size: 1rem;
}

.hero-new-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #2563eb;
}

/* Правый блок - форма */
.hero-new-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.hero-new-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 480px;
    border: 1px solid var(--border-e5e7eb);
}

.hero-new-form-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary-111827);
    margin-bottom: 0.75rem;
    text-align: center;
}

.hero-new-form-subtitle {
    font-size: 0.938rem;
    color: var(--text-muted-6b7280);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-new-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-new-form-group {
    display: flex;
    flex-direction: column;
}

.hero-new-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted-374151);
    margin-bottom: 0.5rem;
}

.hero-new-form-input,
.hero-new-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-e5e7eb);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary-111827);
    transition: all 0.3s;
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-new-form-input:focus,
.hero-new-form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hero-new-form-input::placeholder,
.hero-new-form-textarea::placeholder {
    color: var(--text-muted-9ca3af);
}

.hero-new-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.hero-new-form-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-new-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.hero-new-form-button:active {
    transform: translateY(0);
}

.hero-new-form-privacy {
    font-size: 0.813rem;
    color: var(--text-muted-6b7280);
    text-align: center;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.hero-new-form-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

.hero-new-form-privacy a:hover {
    color: #1d4ed8;
}

/* Адаптивность для Hero */
@media (max-width: 1024px) {
    .hero-new-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-new-form-wrapper {
        justify-content: center;
    }

    .hero-new-form-card {
        max-width: 550px;
    }

    .hero-new-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 60px 0;
    }

    .hero-new-container {
        gap: 2.5rem;
    }

    .hero-new-title {
        font-size: 2rem;
    }

    .hero-new-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-new-features {
        gap: 0.75rem;
    }

    .hero-new-feature {
        font-size: 0.938rem;
    }

    .hero-new-form-card {
        padding: 2rem;
    }

    .hero-new-form-title {
        font-size: 1.5rem;
    }

    .hero-new-form-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-new {
        padding: 40px 0;
    }

    .hero-new-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-new-title {
        font-size: 1.75rem;
    }

    .hero-new-subtitle {
        font-size: 0.938rem;
    }

    .hero-new-form-card {
        padding: 1.5rem;
    }

    .hero-new-form-title {
        font-size: 1.25rem;
    }

    .hero-new-form {
        gap: 1rem;
    }

    .hero-new-form-input,
    .hero-new-form-textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.938rem;
    }

    .hero-new-form-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Секция "Что создать для Вас" */
.what-we-create-section {
    padding: 80px 0;
    background: var(--surface-f8f9fa);
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.create-card {
    background: var(--surface-ffffff);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid var(--border-e5e7eb);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.create-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.create-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.create-icon svg {
    width: 40px;
    height: 40px;
}

.create-card:hover .create-icon {
    transform: scale(1.1);
}

.create-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.create-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}

.create-icon.purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.create-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.create-icon.red {
    background-color: #fee2e2;
    color: #dc2626;
}

.create-icon.indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.create-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary-111827);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.create-card:hover .create-title {
    color: #2563eb;
}

.create-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.create-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted-6b7280);
    transition: all 0.3s ease;
}

.create-card:hover .create-arrow {
    background: #2563eb;
    transform: translateX(4px);
}

.create-card:hover .create-arrow svg {
    color: white;
}

@media (max-width: 1024px) {
    .create-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .what-we-create-section {
        padding: 60px 0;
    }

    .create-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .create-card {
        padding: 32px 24px;
    }

    .create-icon {
        width: 64px;
        height: 64px;
    }

    .create-icon svg {
        width: 32px;
        height: 32px;
    }

    .create-title {
        font-size: 1.25rem;
    }
}

/* Секция достижений */
.achievements-section {
    padding: 80px 0;
    background: var(--surface-ffffff);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface-f8f9fa);
    border-radius: 12px;
    border: 1px solid var(--border-e5e7eb);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background: var(--surface-ffffff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e3a8a;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-label {
    font-size: 1.125rem;
    color: var(--text-muted-4b5563);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .achievement-number {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-label {
        font-size: 1rem;
    }
}

/* Секция брендов */
.brands-section {
    padding: 60px 0;
    background: var(--surface-ffffff);
    overflow: hidden;
}

.brands-content {
    text-align: center;
}

.brands-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.brands-scroll {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.brands-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-f3f4f6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-logo svg {
    width: 28px;
    height: 28px;
    color: var(--text-muted-6b7280);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    background: #e5e7eb;
    transform: translateY(-4px);
}

.brand-item:hover .brand-logo svg {
    color: #1e3a8a;
}

.brand-item span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted-6b7280);
    transition: all 0.3s ease;
}

.brand-item:hover span {
    color: #1e3a8a;
}

/* Секця портфолио */
.portfolio-section {
    padding: 80px 0;
    background: var(--surface-f8f9fa);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    background: #dbeafe;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary-111827);
    margin-bottom: 12px;
    line-height: 1.3;
}

.portfolio-description {
    font-size: 1rem;
    color: var(--text-muted-6b7280);
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tag {
    font-size: 0.813rem;
    color: var(--text-muted-4b5563);
    background: var(--surface-f3f4f6);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-e5e7eb);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-tag {
    background: #e5e7eb;
    border-color: var(--border-d1d5db);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        gap: 30px;
    }

    .portfolio-image {
        height: 280px;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio-image {
        height: 240px;
    }

    .portfolio-content {
        padding: 24px;
    }

    .portfolio-title {
        font-size: 1.375rem;
    }

    .portfolio-description {
        font-size: 0.938rem;
    }
}

/* Секция услуг */
.services-section {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary-111827);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted-6b7280);
    max-width: 42rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid var(--border-e5e7eb);
    border-radius: 0.75rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.service-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}

.service-icon.purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.service-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.service-icon.red {
    background-color: #fee2e2;
    color: #dc2626;
}

.service-icon.indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.service-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary-111827);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted-6b7280);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted-6b7280);
}

.service-feature-icon {
    margin-top: 0.25rem;
    font-weight: bold;
}

.service-feature-icon.blue {
    color: #2563eb;
}

.service-feature-icon.green {
    color: #16a34a;
}

.service-feature-icon.purple {
    color: #9333ea;
}

.service-feature-icon.orange {
    color: #ea580c;
}

.service-feature-icon.red {
    color: #dc2626;
}

.service-feature-icon.indigo {
    color: #4f46e5;
}

/* Футер */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-brand-name {
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-description {
    color: var(--text-muted-9ca3af);
}

.footer-section-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: var(--text-muted-9ca3af);
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #3b82f6;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted-9ca3af);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    list-style: none;
}

.footer-contact-item a {
    color: var(--text-muted-9ca3af);
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #3b82f6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.footer-social .whatsapp {
    background-color: #22c55e;
}

.footer-social .whatsapp:hover {
    background-color: #16a34a;
}

.footer-social .telegram {
    background-color: #3b82f6;
}

.footer-social .telegram:hover {
    background-color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted-9ca3af);
}

/* Медиа-запросы */
@media (min-width: 640px) {
    .logo-text {
        display: flex;
    }

    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 750px;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 800px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .mobile-menu-button {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid {
        justify-content: center;
    }
}

@media (min-width: 1280px) {
    .header-contacts {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .yandex-rating-badge--desktop {
        display: block;
    }

    .yandex-rating-badge--mobile {
        display: none;
    }
}

/* Адаптивность верхней панели header */
@media (max-width: 1024px) {
    .header-top {
        display: none;
    }
}

@media (min-width: 1024px) {
    .header-top-content {
        flex-wrap: nowrap;
    }
}

/* Скрытие элементов */
.hidden {
    display: none;
}

/* Секция этапов работ */
.steps-section {
    padding: 80px 0;
    background: var(--surface-ffffff);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    padding: 30px;
    background: var(--surface-ffffff);
    border: 2px solid var(--border-e5e7eb);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #f3f4f6;
    line-height: 1;
}

.step-card:hover .step-number {
    color: #dbeafe;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.step-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}

.step-icon.purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.step-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.step-icon.red {
    background-color: #fee2e2;
    color: #dc2626;
}

.step-icon.indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.step-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary-111827);
    margin-bottom: 12px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-muted-6b7280);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .steps-section {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 24px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }
}

/* Секция отзывов */
.testimonials-section {
    padding: 80px 0;
    background: var(--surface-f8f9fa);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface-ffffff);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: "★★★★★";
    display: block;
    margin-bottom: 12px;
    color: #f5b301;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
    color: #2563eb;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted-4b5563);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-e5e7eb);
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.testimonial-avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    font-size: 0.8rem;
    font-weight: 700;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary-111827);
}

.testimonial-position {
    font-size: 0.875rem;
    color: var(--text-muted-6b7280);
}

.testimonials-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid var(--border-e5e7eb);
    border-radius: 14px;
    background: var(--surface-ffffff);
    color: var(--text-muted-6b7280);
    font-size: 0.9rem;
}

.testimonials-source a {
    color: #2563eb;
    font-weight: 600;
    white-space: nowrap;
}

.testimonials-source a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonials-source {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-text {
        font-size: 0.938rem;
    }
}

/* Секция О компании */
.about-section {
    padding: 80px 0;
    background: var(--surface-ffffff);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-muted-4b5563);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: #16a34a;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 1rem;
    color: var(--text-muted-374151);
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Текстовая секция */
.text-section {
    padding: 80px 0;
    background: var(--surface-f8f9fa);
}

.text-section-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-section h2 {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary-111827);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: left;
}

.text-section p {
    font-size: 1.125rem;
    color: var(--text-muted-4b5563);
    line-height: 1.8;
    text-align: left;
}

/* Секция "Обсудить проект" */
.discuss-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.discuss-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
}

.discuss-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0;
    text-align: left;
}

.discuss-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.discuss-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.discuss-form {
    display: grid;
    gap: 1.25rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.discuss-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.discuss-form-row-three {
    display: grid;
    grid-template-columns: 1fr;
}

.discuss-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.discuss-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted-374151);
}

.discuss-form-group input,
.discuss-form-group textarea,
.discuss-form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-e5e7eb);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.discuss-form-group input:focus,
.discuss-form-group textarea:focus,
.discuss-form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.discuss-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.discuss-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    justify-self: start;
}

.discuss-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.discuss-submit:active {
    transform: translateY(0);
}

.discuss-privacy {
    font-size: 0.875rem;
    color: var(--text-muted-6b7280);
    text-align: left;
    margin-top: 0;
}

.discuss-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .discuss-section {
        padding: 60px 0;
    }

    .discuss-title {
        font-size: 2rem;
    }

    .discuss-subtitle {
        font-size: 1.125rem;
    }

    .discuss-form {
        padding: 2rem;
    }

    .discuss-form-row {
        grid-template-columns: 1fr;
    }

    .discuss-form-row-three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .discuss-form {
        padding: 1.5rem;
    }

    .discuss-title {
        font-size: 1.75rem;
    }

    .discuss-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        gap: 30px;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-image {
        height: 300px;
    }

    .text-section {
        padding: 60px 0;
    }

    .text-section h2 {
        font-size: 2rem;
    }

    .text-section p {
        font-size: 1rem;
    }
}

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid var(--border-e5e7eb);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary-111827);
    margin: 0;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.modal-subtitle {
    padding: 0 1.5rem 1rem 1.5rem;
    color: var(--text-muted-6b7280);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.modal-close {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: var(--surface-f3f4f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted-6b7280);
    padding: 0;
}

.modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
    color: var(--text-primary-111827);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted-6b7280);
}

.modal-description {
    padding: 1rem 1.5rem;
    color: var(--text-muted-6b7280);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.modal-form {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted-374151);
    margin-bottom: 0.5rem;
}

.form-required {
    color: #dc2626;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-e5e7eb);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary-111827);
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted-9ca3af);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-modal-submit {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.btn-modal-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-modal-submit:active {
    transform: translateY(0);
}

.modal-privacy {
    font-size: 0.75rem;
    color: var(--text-muted-6b7280);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.modal-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

.modal-privacy a:hover {
    color: #1d4ed8;
}

.form-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted-6b7280);
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.form-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

.form-privacy a:hover {
    color: #1d4ed8;
}

@media (max-width: 640px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 0.75rem;
    }

    .modal-header {
        padding: 1.25rem 1.25rem 0.75rem 1.25rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modal-description {
        padding: 0.75rem 1.25rem;
        font-size: 0.813rem;
    }

    .modal-form {
        padding: 0.75rem 1.25rem 1.25rem 1.25rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.938rem;
    }
}

/* Страница услуги */
.service-page {
    background: var(--surface-ffffff);
}

/* Hero секция услуги */
.service-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    padding: 60px 0 80px;
    color: white;
}

.service-breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.service-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.service-breadcrumb span {
    opacity: 0.6;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.service-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
}

.service-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
}

.service-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.service-hero-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.service-hero-cta {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Основной контент услуги */
.service-content {
    /* Внутренние страницы начинаются с хлебных крошек: не оставляем пустую полосу под шапкой. */
    padding: 32px 0 80px;
}

.page-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary-111827);
    margin-bottom: 1.5rem;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.service-main-content {
    min-width: 0;
}

.service-text-block {
    margin-bottom: 4rem;
}

.service-text-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary-1e293b);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-text-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary-1e293b);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-text-block h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary-1e293b);
    margin-bottom: 0.75rem;
}

.service-text-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted-475569);
    margin-bottom: 1.25rem;
}

/* Список преимуществ */
.service-advantages-list {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-advantage-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface-f8fafc);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s;
}

.service-advantage-item:hover {
    background: var(--surface-f1f5f9);
    transform: translateX(5px);
}

.service-advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.service-advantage-icon svg {
    width: 30px;
    height: 30px;
}

.service-advantage-content h3 {
    margin-bottom: 0.75rem;
}

.service-advantage-content p {
    margin-bottom: 0;
}

/* Список этапов */
.service-includes-list {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-include-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-e2e8f0);
    border-radius: 12px;
    transition: all 0.3s;
}

.service-include-item:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.service-include-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Целевая аудитория */
.service-target-list {
    grid-template-columns: 1fr;
}

/* Тарифы */
.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-pricing-card {
    padding: 2.5rem 2rem;
    background: white;
    border: 2px solid var(--border-e2e8f0);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
}

.service-pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.service-pricing-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, white 100%);
}

.service-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary-1e293b);
    margin-bottom: 1rem;
}

.service-pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
}

.service-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted-475569);
    border-bottom: 1px solid #f1f5f9;
}

.service-pricing-features li:last-child {
    border-bottom: none;
}

.service-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-pricing-time {
    font-size: 0.9375rem;
    color: var(--text-muted-64748b);
    font-weight: 600;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
}

.service-pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #92400e;
}

/* FAQ */
.service-faq-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-faq-item {
    padding: 2rem;
    background: var(--surface-f8fafc);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.service-faq-item h4 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.service-faq-item p {
    margin-bottom: 0;
}

/* Боковая колонка */
.service-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.service-sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.service-sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary-1e293b);
    margin-bottom: 1rem;
}

.service-sidebar-card p {
    font-size: 0.9375rem;
    color: var(--text-muted-64748b);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Форма в сайдбаре */
.service-sidebar-form {
    display: grid;
    gap: 1rem;
}

.service-sidebar-form input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-e2e8f0);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.service-sidebar-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.service-sidebar-form button {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-sidebar-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.service-sidebar-privacy {
    font-size: 0.75rem;
    color: var(--text-muted-94a3b8);
    text-align: center;
    margin-top: 0.5rem;
}

.service-sidebar-privacy a {
    color: #2563eb;
    text-decoration: underline;
}

/* Ссылки в сайдбаре */
.service-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-links li {
    border-bottom: 1px solid #f1f5f9;
}

.service-sidebar-links li:last-child {
    border-bottom: none;
}

.service-sidebar-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-muted-475569);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9375rem;
}

.service-sidebar-links a:hover {
    color: #2563eb;
    padding-left: 0.5rem;
}

/* Контакты в сайдбаре */
.service-sidebar-contacts {
    display: grid;
    gap: 1rem;
}

.service-sidebar-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-sidebar-contact svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
}

.service-sidebar-contact a {
    color: var(--text-muted-475569);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.service-sidebar-contact a:hover {
    color: #2563eb;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-sidebar {
        position: static;
    }

    .service-sidebar-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 40px 0 60px;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-description {
        font-size: 1.0625rem;
    }

    .service-hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-content {
        padding: 24px 0 60px;
    }

    .service-text-block h2 {
        font-size: 1.75rem;
    }

    .service-advantage-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-include-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-target-list {
        grid-template-columns: 1fr;
    }
}

/* Секция Coming Soon */
.coming-soon-section {
    padding: 120px 0;
    min-height: 70vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-title {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-muted-1a1a1a);
    margin: 30px 0 24px;
}

.coming-soon-text {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted-666666);
    margin-bottom: 20px;
}

.coming-soon-contacts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.coming-soon-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: white;
    border: 2px solid var(--border-e0e0e0);
    border-radius: 12px;
    color: var(--text-muted-1a1a1a);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
}

.coming-soon-contact-link:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.coming-soon-contact-link svg {
    width: 20px;
    height: 20px;
}

.coming-soon-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 12px;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Медиа-запросы для Coming Soon */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 80px 0;
    }

    .coming-soon-title {
        font-size: 32px;
    }

    .coming-soon-text {
        font-size: 16px;
    }

    .coming-soon-contacts {
        flex-direction: column;
        gap: 15px;
    }

    .coming-soon-contact-link {
        width: 100%;
        justify-content: center;
    }

    .coming-soon-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Стили для списков на страницах услуг */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.3;
}

/* Стили для этапов работы */
.service-steps-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.service-step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface-f8f9fa);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-step-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 12px;
    flex-shrink: 0;
}

.service-step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary-1e293b);
    margin-bottom: 0.75rem;
}

.service-step-content p {
    color: var(--text-muted-64748b);
    line-height: 1.6;
    margin: 0;
}

/* Блок с кнопками призыва к действию */
.service-cta-block {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Контактный список в сайдбаре */
.service-contact-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--surface-f8f9fa);
    border-radius: 8px;
    color: var(--text-muted-475569);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9375rem;
}

.service-contact-item:hover {
    background: var(--surface-e2e8f0);
    color: #2563eb;
}

.service-contact-item svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
}

/* Кнопка CTA в сайдбаре */
.service-cta-button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.service-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Навигация по связанным услугам */
.service-related-nav {
    display: grid;
    gap: 0.5rem;
}

.service-related-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted-475569);
    text-decoration: none;
    background: var(--surface-f8f9fa);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.service-related-nav a:hover {
    background: var(--surface-e2e8f0);
    color: #2563eb;
    padding-left: 1.25rem;
}

/* Адаптивность для новых элементов */
@media (max-width: 768px) {
    .service-step-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-step-content h3 {
        font-size: 1.125rem;
    }

    .service-cta-block {
        flex-direction: column;
    }

    .service-cta-block .btn-primary,
    .service-cta-block .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Стили для простой текстовой страницы */
.service-text-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.service-text-page .service-breadcrumb {
    margin-bottom: 2rem;
}

.service-text-page h1 {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-primary-1e293b);
    margin-bottom: 2rem;
}

.service-text-page h2 {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 1.3;
    color: var(--text-primary-1e293b);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.service-text-page p {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted-475569);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .service-text-page {
        padding: 40px 0;
    }

    .service-text-page h1 {
        font-size: 2rem;
    }

    .service-text-page h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .service-text-page p {
        font-size: 1rem;
    }
}

/* Статус отправки форм заявок (hero + модалка) */
.form-status {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.4;
    min-height: 0;
}

.form-status:empty {
    margin: 0;
}

.form-status-success {
    color: #16a34a;
}

.form-status-error {
    color: #dc2626;
}

/* Современный FAQ на главной */
.homepage-faq {
    position: relative;
    padding: 96px 0;
    scroll-margin-top: 132px;
    overflow: clip;
    background:
        radial-gradient(circle at 8% 8%, rgba(37, 99, 235, 0.11), transparent 28%),
        radial-gradient(circle at 92% 92%, rgba(14, 165, 233, 0.09), transparent 30%),
        var(--surface-f8f9fa);
}

.homepage-faq::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.homepage-faq .container {
    position: relative;
    z-index: 1;
}

.homepage-faq__header {
    max-width: 760px;
    margin-bottom: 38px;
}

.homepage-faq__header .section-title,
.homepage-faq__header .section-subtitle {
    text-align: left;
}

.homepage-faq__header .section-title {
    margin-bottom: 14px;
}

.homepage-faq__header .section-subtitle {
    max-width: 680px;
    margin: 0;
}

.homepage-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.homepage-faq__eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.homepage-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    align-items: start;
    gap: 28px;
}

.homepage-faq__list {
    display: grid;
    gap: 12px;
}

.homepage-faq__item {
    background: var(--surface-ffffff);
    border: 1px solid rgba(100, 116, 139, 0.18);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.045);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.homepage-faq__item:hover {
    border-color: rgba(37, 99, 235, 0.32);
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075);
}

.homepage-faq__item[open] {
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.1);
}

.homepage-faq__item summary {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 16px;
    min-height: 84px;
    padding: 18px 20px;
    color: var(--text-primary-111827);
    cursor: pointer;
    list-style: none;
    border-radius: 18px;
}

.homepage-faq__item summary::-webkit-details-marker {
    display: none;
}

.homepage-faq__item summary::marker {
    content: "";
}

.homepage-faq__item summary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 3px;
}

.homepage-faq__number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: color 0.22s ease, background 0.22s ease;
}

.homepage-faq__question {
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.42;
}

.homepage-faq__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.13);
    border-radius: 50%;
}

.homepage-faq__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform 0.24s ease;
}

.homepage-faq__item[open] .homepage-faq__number {
    color: #fff;
    background: #2563eb;
}

.homepage-faq__item[open] .homepage-faq__icon svg {
    transform: rotate(45deg);
}

.homepage-faq__answer {
    margin: 0 20px 0 78px;
    padding: 0 0 24px 0;
    color: var(--text-muted-64748b);
    font-size: 0.98rem;
    line-height: 1.72;
}

.homepage-faq__answer::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 0 18px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(100, 116, 139, 0.08));
}

.homepage-faq__answer p {
    margin: 0;
}

.homepage-faq__cta {
    position: sticky;
    top: 132px;
    padding: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 8%, rgba(125, 211, 252, 0.32), transparent 32%),
        linear-gradient(145deg, #0f172a 0%, #172554 52%, #1d4ed8 140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.homepage-faq__cta-label {
    display: inline-flex;
    padding: 7px 10px;
    margin-bottom: 22px;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.homepage-faq__cta h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.2;
}

.homepage-faq__cta p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.homepage-faq__cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    color: #0f172a;
    background: #fff;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.homepage-faq__cta-button:hover {
    color: #0f172a;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.homepage-faq__cta-button:focus-visible {
    outline: 3px solid rgba(191, 219, 254, 0.75);
    outline-offset: 3px;
}

.homepage-faq__cta-note {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    text-align: center;
}

@media (max-width: 980px) {
    .homepage-faq__layout {
        grid-template-columns: 1fr;
    }

    .homepage-faq__cta {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 24px;
    }

    .homepage-faq__cta-label,
    .homepage-faq__cta p,
    .homepage-faq__cta-note {
        grid-column: 1;
    }

    .homepage-faq__cta h3 {
        grid-column: 1;
    }

    .homepage-faq__cta-button {
        grid-column: 2;
        grid-row: 1 / span 4;
        min-width: 190px;
    }

    .homepage-faq__cta-label,
    .homepage-faq__cta p,
    .homepage-faq__cta h3,
    .homepage-faq__cta-note {
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .homepage-faq {
        padding: 64px 0;
    }

    .homepage-faq__header {
        margin-bottom: 28px;
    }

    .homepage-faq__header .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .homepage-faq__item summary {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        gap: 11px;
        min-height: 74px;
        padding: 16px 14px;
    }

    .homepage-faq__number,
    .homepage-faq__icon {
        width: 34px;
        height: 34px;
    }

    .homepage-faq__question {
        font-size: 0.96rem;
    }

    .homepage-faq__answer {
        margin: 0 16px;
        padding-bottom: 20px;
        font-size: 0.93rem;
    }

    .homepage-faq__cta {
        display: block;
        padding: 24px;
        border-radius: 20px;
    }

    .homepage-faq__cta-label {
        display: inline-flex;
        margin-bottom: 18px;
    }

    .homepage-faq__cta h3 {
        margin-bottom: 12px;
    }

    .homepage-faq__cta p {
        margin-bottom: 22px;
    }

    .homepage-faq__cta-button {
        width: 100%;
    }

    .homepage-faq__cta-note {
        margin-top: 12px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homepage-faq__item,
    .homepage-faq__icon svg,
    .homepage-faq__cta-button {
        transition: none;
    }
}

/* Главная: цены в первых смысловых блоках */
.home-pricing-section {
    position: relative;
    padding: 92px 0;
    overflow: clip;
    background:
        radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.12), transparent 34%),
        #fff;
}

.home-pricing-section .section-header {
    max-width: 800px;
    margin-bottom: 40px;
}

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

.home-pricing-card {
    display: flex;
    min-width: 0;
    min-height: 230px;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.home-pricing-card__type {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: 1.18rem;
    line-height: 1.35;
}

.home-pricing-card__price {
    margin: auto 0 8px;
    color: #1d4ed8;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
}

.home-pricing-card__term {
    margin: 0;
    color: var(--text-muted-64748b);
}

.home-pricing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 22px 24px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
}

.home-pricing-footer p {
    max-width: 780px;
    margin: 0;
    color: #1e3a5f;
    line-height: 1.6;
}

.home-pricing-cta {
    flex: 0 0 auto;
    padding: 13px 20px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: #2563eb;
    border-radius: 10px;
}

.hero-new-form-toggle {
    display: none;
}

@media (max-width: 820px) {
    .home-pricing-grid {
        grid-template-columns: 1fr;
    }

    .home-pricing-card {
        min-height: 0;
    }

    .home-pricing-card__price {
        margin-top: 14px;
    }

    .home-pricing-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .home-pricing-cta {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .home-pricing-section {
        padding: 68px 0;
    }

    .home-pricing-section .section-header {
        margin-bottom: 30px;
    }

    .home-pricing-card {
        padding: 22px;
    }

    .home-pricing-footer {
        padding: 20px;
    }

    .hero-new-form-wrapper.is-collapsible {
        display: block;
        width: 100%;
    }

    .hero-new-form-wrapper.is-collapsible .hero-new-form-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
        color: #1d4ed8;
        font: inherit;
        font-weight: 700;
        background: #fff;
        border: 1px solid rgba(37, 99, 235, 0.28);
        border-radius: 12px;
        cursor: pointer;
    }

    .hero-new-form-wrapper.is-collapsible .hero-new-form-card {
        display: none;
        margin-top: 12px;
    }

    .hero-new-form-wrapper.is-collapsible.is-open .hero-new-form-card {
        display: block;
    }
}

/* Единая визуальная система блоков главной */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.what-we-create-section .section-header,
.brands-section .section-header,
.seo-text-full .section-header,
.portfolio-section .section-header,
.testimonials-section .section-header {
    max-width: 800px;
    margin-bottom: 44px;
}

.what-we-create-section .section-title,
.brands-section .section-title,
.seo-text-full .section-title,
.portfolio-section .section-title,
.testimonials-section .section-title {
    line-height: 1.14;
    text-wrap: balance;
}

.what-we-create-section .section-subtitle,
.brands-section .section-subtitle,
.seo-text-full .section-subtitle,
.portfolio-section .section-subtitle,
.testimonials-section .section-subtitle {
    line-height: 1.65;
    text-wrap: pretty;
}

/* Карточки услуг */
.what-we-create-section {
    position: relative;
    padding: 92px 0;
    overflow: clip;
    background:
        radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 30%),
        var(--surface-f8f9fa);
}

.what-we-create-section .create-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.what-we-create-section .create-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 18px;
    min-height: 172px;
    padding: 26px;
    text-align: left;
    background: var(--surface-ffffff);
    border: 1px solid rgba(100, 116, 139, 0.18);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.08);
}

.what-we-create-section .create-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.38);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.what-we-create-section .create-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 4px;
}

.what-we-create-section .create-icon {
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 16px;
    transition: transform 0.22s ease;
}

.what-we-create-section .create-icon svg {
    width: 29px;
    height: 29px;
}

.what-we-create-section .create-card:hover .create-icon {
    transform: translateY(-2px);
}

.create-copy {
    min-width: 0;
}

.create-label {
    display: block;
    margin-bottom: 5px;
    color: #2563eb;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.what-we-create-section .create-title {
    margin: 0 0 7px;
    font-size: 1.12rem;
    line-height: 1.28;
}

.create-description {
    margin: 0;
    color: var(--text-muted-64748b);
    font-size: 0.87rem;
    line-height: 1.55;
    text-wrap: pretty;
}

.what-we-create-section .create-price {
    margin: 12px 0 0;
    color: #1d4ed8;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    font-variant-numeric: tabular-nums;
}

.what-we-create-section .create-arrow {
    align-self: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: transform 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.what-we-create-section .create-arrow svg {
    width: 18px;
    height: 18px;
    color: #2563eb;
    transition: transform 0.22s ease, color 0.22s ease;
}

.what-we-create-section .create-card:hover .create-arrow {
    background: #2563eb;
    transform: translateX(3px);
}

/* Технологии */
.brands-section {
    padding: 92px 0;
    background: var(--surface-ffffff);
}

.brands-section .brands-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.brands-section .brand-item {
    display: flex;
    min-width: 0;
    min-height: 238px;
    padding: 16px;
    gap: 18px;
    background: var(--surface-f8f9fa);
    border: 1px solid rgba(100, 116, 139, 0.16);
    border-radius: 20px;
    white-space: normal;
}

.brands-section .brand-logo {
    display: grid;
    place-items: center;
    width: 100%;
    height: 130px;
    padding: 18px;
    background: var(--surface-ffffff);
    border: 1px solid rgba(100, 116, 139, 0.12);
    border-radius: 15px;
}

.brands-section .brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 190px;
    object-fit: contain;
}

.brands-section .brand-copy {
    display: grid;
    gap: 4px;
    width: 100%;
    padding: 0 4px 3px;
}

.brands-section .brand-copy strong {
    color: var(--text-primary-111827);
    font-size: 1rem;
    line-height: 1.3;
}

.brands-section .brand-copy span {
    color: var(--text-muted-64748b);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.45;
}

/* Большой контентный аккордеон */
.seo-text-full {
    position: relative;
    padding: 96px 0;
    overflow: clip;
    background:
        radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.08), transparent 28%),
        linear-gradient(180deg, var(--surface-f8f9fa), var(--surface-ffffff));
}

.seo-text-full__header {
    position: relative;
    z-index: 1;
}

.seo-text-full .text-section-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
    max-width: none;
    counter-reset: seo-section;
}

.seo-text-full details.seo-section {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--surface-ffffff);
    border: 1px solid rgba(100, 116, 139, 0.18);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
    counter-increment: seo-section;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.seo-text-full details.seo-section:hover {
    border-color: rgba(37, 99, 235, 0.34);
    transform: translateY(-1px);
    box-shadow: 0 15px 36px rgba(15, 23, 42, 0.075);
}

.seo-text-full details.seo-section[open] {
    grid-column: 1 / -1;
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
}

.seo-text-full details.seo-section summary {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 16px;
    min-height: 108px;
    padding: 20px 22px;
    list-style: none;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.08);
}

.seo-text-full details.seo-section summary::-webkit-details-marker {
    display: none;
}

.seo-text-full details.seo-section summary::marker {
    content: "";
}

.seo-text-full details.seo-section summary::before {
    content: counter(seo-section, decimal-leading-zero);
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 13px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.seo-text-full details.seo-section summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 50%;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.seo-text-full details.seo-section summary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: -3px;
}

.seo-text-full details.seo-section[open] summary {
    background: rgba(37, 99, 235, 0.035);
    border-bottom: 1px solid rgba(100, 116, 139, 0.13);
}

.seo-text-full details.seo-section[open] summary::before {
    color: #fff;
    background: #2563eb;
}

.seo-text-full details.seo-section[open] summary::after {
    color: #fff;
    background: #2563eb;
    transform: rotate(45deg);
}

.seo-text-full details.seo-section summary h2 {
    min-width: 0;
    margin: 0;
    color: var(--text-primary-111827);
    font-size: clamp(1.08rem, 1.55vw, 1.32rem);
    font-weight: 700;
    line-height: 1.38;
    text-wrap: balance;
}

.seo-text-full details.seo-section > :not(summary) {
    margin-right: 30px;
    margin-left: 84px;
}

.seo-text-full details.seo-section > :last-child {
    margin-bottom: 30px;
}

.seo-text-full details.seo-section > p {
    margin-top: 18px;
    margin-bottom: 18px;
    color: var(--text-muted-475569);
    font-size: 0.98rem;
    line-height: 1.76;
    text-wrap: pretty;
}

.seo-text-full details.seo-section summary + p,
.seo-text-full details.seo-section summary + .seo-table-wrap {
    margin-top: 26px;
}

.seo-text-full details.seo-section h3,
.seo-text-full details.seo-section h4 {
    color: var(--text-primary-111827);
    line-height: 1.35;
    text-wrap: balance;
}

.seo-text-full details.seo-section h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.16rem;
}

.seo-text-full details.seo-section h4 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.seo-text-full details.seo-section ul,
.seo-text-full details.seo-section ol {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.seo-text-full details.seo-section ul li,
.seo-text-full details.seo-section ol li {
    position: relative;
    margin: 0;
    padding-left: 30px;
    color: var(--text-muted-475569);
    line-height: 1.65;
}

.seo-text-full details.seo-section ul li::before {
    content: "✓";
    position: absolute;
    top: 0.05em;
    left: 0;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
}

.seo-text-full details.seo-section ol {
    counter-reset: seo-steps;
}

.seo-text-full details.seo-section ol li {
    min-height: 26px;
    padding-left: 38px;
    counter-increment: seo-steps;
}

.seo-text-full details.seo-section ol li::before {
    content: counter(seo-steps);
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #fff;
    background: #2563eb;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.seo-text-full .seo-table-wrap {
    margin-top: 20px;
    margin-bottom: 22px;
    overflow-x: auto;
    border: 1px solid rgba(100, 116, 139, 0.16);
    border-radius: 15px;
}

.seo-text-full table.seo-table {
    width: 100%;
    min-width: 620px;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.seo-text-full table.seo-table th,
.seo-text-full table.seo-table td {
    padding: 13px 15px;
    border: 0;
    border-bottom: 1px solid rgba(100, 116, 139, 0.12);
    color: var(--text-muted-475569);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.seo-text-full table.seo-table th {
    color: #1e3a8a;
    background: rgba(37, 99, 235, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.seo-text-full table.seo-table tr:last-child td {
    border-bottom: 0;
}

.seo-text-full table.seo-table tbody tr:nth-child(even) td {
    background: rgba(148, 163, 184, 0.045);
}

.seo-text-full .seo-review {
    padding: 16px 18px;
    color: var(--text-muted-475569);
    background: rgba(37, 99, 235, 0.055);
    border-left: 3px solid #2563eb;
    border-radius: 0 12px 12px 0;
    font-style: normal;
}

/* Портфолио */
.portfolio-section {
    position: relative;
    padding: 96px 0;
    overflow: clip;
    background:
        radial-gradient(circle at 95% 10%, rgba(37, 99, 235, 0.28), transparent 30%),
        linear-gradient(145deg, #0b1220 0%, #111c35 58%, #172554 120%);
}

.portfolio-section .section-eyebrow {
    color: #93c5fd;
}

.portfolio-section .section-title {
    color: #fff;
}

.portfolio-section .section-subtitle {
    color: rgba(255, 255, 255, 0.68);
}

.portfolio-section .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
}

.portfolio-section .portfolio-card {
    overflow: hidden;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-section .portfolio-card:hover {
    transform: translateY(-3px);
    border-color: rgba(147, 197, 253, 0.45);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.portfolio-section .portfolio-thumb {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 8.7;
    margin: 14px 14px 0;
    padding: 16px;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
}

.portfolio-section .portfolio-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.portfolio-section .portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.015);
}

.portfolio-index {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    backdrop-filter: blur(8px);
}

.portfolio-section .portfolio-body {
    padding: 24px 26px 27px;
}

.portfolio-kicker {
    display: block;
    margin-bottom: 9px;
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.portfolio-section .portfolio-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.3;
    text-wrap: balance;
}

.portfolio-section .portfolio-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.6;
    text-wrap: pretty;
}

/* Отзывы */
.testimonials-section {
    padding: 96px 0;
    background: var(--surface-f8f9fa);
}

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

.testimonials-section .testimonial-card {
    padding: 26px;
    border: 1px solid rgba(100, 116, 139, 0.17);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.testimonials-section .testimonial-text {
    color: var(--text-muted-475569);
    font-style: normal;
    text-wrap: pretty;
}

.testimonials-section .testimonial-quote {
    opacity: 0.07;
}

.testimonials-section .testimonials-source {
    margin-top: 22px;
    border-color: rgba(100, 116, 139, 0.16);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.testimonials-section .testimonials-source a:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 4px;
    border-radius: 4px;
}

@media (max-width: 1080px) {
    .what-we-create-section .create-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brands-section .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .seo-text-full .text-section-content {
        grid-template-columns: 1fr;
    }

    .seo-text-full details.seo-section[open] {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .what-we-create-section,
    .brands-section,
    .seo-text-full,
    .portfolio-section,
    .testimonials-section {
        padding: 68px 0;
    }

    .what-we-create-section .section-header,
    .brands-section .section-header,
    .seo-text-full .section-header,
    .portfolio-section .section-header,
    .testimonials-section .section-header {
        margin-bottom: 30px;
    }

    .what-we-create-section .section-title,
    .brands-section .section-title,
    .seo-text-full .section-title,
    .portfolio-section .section-title,
    .testimonials-section .section-title {
        font-size: 2rem;
    }

    .what-we-create-section .section-subtitle,
    .brands-section .section-subtitle,
    .seo-text-full .section-subtitle,
    .portfolio-section .section-subtitle,
    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }

    .what-we-create-section .create-grid,
    .brands-section .brands-grid,
    .portfolio-section .portfolio-grid,
    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .what-we-create-section .create-card {
        grid-template-columns: 50px minmax(0, 1fr) 34px;
        gap: 14px;
        min-height: 150px;
        padding: 20px;
    }

    .what-we-create-section .create-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .what-we-create-section .create-arrow {
        width: 34px;
        height: 34px;
    }

    .brands-section .brand-item {
        min-height: auto;
    }

    .seo-text-full details.seo-section summary {
        grid-template-columns: 38px minmax(0, 1fr) 34px;
        gap: 11px;
        min-height: 86px;
        padding: 15px 14px;
    }

    .seo-text-full details.seo-section summary::before {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .seo-text-full details.seo-section summary::after {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    .seo-text-full details.seo-section summary h2 {
        font-size: 1rem;
        line-height: 1.38;
    }

    .seo-text-full details.seo-section > :not(summary) {
        margin-right: 17px;
        margin-left: 17px;
    }

    .seo-text-full details.seo-section > :last-child {
        margin-bottom: 22px;
    }

    .seo-text-full details.seo-section > p {
        font-size: 0.93rem;
        line-height: 1.7;
    }

    .seo-text-full .seo-table-wrap {
        border-radius: 12px;
    }

    .portfolio-section .portfolio-thumb {
        margin: 10px 10px 0;
        padding: 10px;
        border-radius: 14px;
    }

    .portfolio-section .portfolio-body {
        padding: 21px 21px 24px;
    }
}

@media (max-width: 440px) {
    .what-we-create-section .create-card {
        grid-template-columns: 46px minmax(0, 1fr) 32px;
        gap: 11px;
        padding: 18px 15px;
    }

    .what-we-create-section .create-icon {
        width: 46px;
        height: 46px;
    }

    .what-we-create-section .create-title {
        font-size: 1rem;
    }

    .create-description {
        font-size: 0.82rem;
    }

    .brands-section .brand-logo {
        height: 112px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .what-we-create-section .create-card,
    .what-we-create-section .create-icon,
    .what-we-create-section .create-arrow,
    .what-we-create-section .create-arrow svg,
    .seo-text-full details.seo-section,
    .seo-text-full details.seo-section summary::after,
    .portfolio-section .portfolio-card,
    .portfolio-section .portfolio-thumb img,
    .testimonials-section .testimonial-card {
        transition: none;
    }
}

/* Динамические статьи перед футером */
.home-articles-section {
    position: relative;
    padding: 96px 0;
    overflow: clip;
    background:
        radial-gradient(circle at 8% 100%, rgba(37, 99, 235, 0.08), transparent 28%),
        var(--surface-ffffff);
}

/* Компактный вспомогательный блок после основного контента */
.tag-cloud-section {
    padding: 18px 0 34px;
}

.tag-cloud-details {
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 16px;
    padding: 13px 18px;
    background: rgba(248, 250, 252, .72);
}

.tag-cloud-details summary {
    cursor: pointer;
    color: #64748b;
    font-size: .92rem;
    font-weight: 650;
    list-style: none;
}

.tag-cloud-details summary::-webkit-details-marker {
    display: none;
}

.tag-cloud-details summary::before {
    content: "+";
    display: inline-grid;
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 8px;
    place-items: center;
    border-radius: 50%;
    background: #e2e8f0;
    color: #334155;
}

.tag-cloud-details[open] summary::before {
    content: "−";
}

.tag-cloud-details summary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .28);
    outline-offset: 5px;
    border-radius: 6px;
}

.tag-cloud-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-cloud-grid a.tag-pill {
    display: inline-block;
    padding: 6px 11px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    background: #fff;
    color: #64748b;
    font-size: .82rem;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.tag-cloud-grid a.tag-pill:hover {
    border-color: rgba(37, 99, 235, .28);
    background: #eff6ff;
    color: #1d4ed8;
}

.tag-cloud-grid a.tag-pill:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .28);
    outline-offset: 2px;
}

.home-articles-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
}

.home-articles-header .section-header {
    max-width: 790px;
    margin: 0;
}

.home-articles-header .section-title {
    line-height: 1.14;
    text-wrap: balance;
}

.home-articles-header .section-subtitle {
    line-height: 1.65;
    text-wrap: pretty;
}

.home-articles-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 16px;
    flex-shrink: 0;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    touch-action: manipulation;
}

.home-articles-all svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}

.home-articles-all:hover {
    color: #fff;
    background: #2563eb;
    transform: translateY(-1px);
}

.home-articles-all:hover svg {
    transform: translateX(2px);
}

.home-articles-all:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 4px;
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 18px;
}

.home-article-card {
    min-width: 0;
}

.home-article-card__link {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    height: 100%;
    padding: 27px;
    color: inherit;
    background: var(--surface-f8f9fa);
    border: 1px solid rgba(100, 116, 139, 0.17);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.08);
}

.home-article-card__link:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.36);
    box-shadow: 0 19px 46px rgba(15, 23, 42, 0.09);
}

.home-article-card__link:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 4px;
}

.home-article-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.home-article-card__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 16px;
}

.home-article-card__icon svg {
    width: 27px;
    height: 27px;
}

.home-article-card__icon--1 {
    color: #2563eb;
    background: #dbeafe;
}

.home-article-card__icon--2 {
    color: #7c3aed;
    background: #ede9fe;
}

.home-article-card__icon--3 {
    color: #0f766e;
    background: #ccfbf1;
}

.home-article-card__topic {
    max-width: 70%;
    padding: 7px 10px;
    overflow-wrap: anywhere;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.075);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: right;
    text-transform: uppercase;
}

.home-article-card__title {
    margin: 0 0 13px;
    color: var(--text-primary-111827);
    font-size: 1.27rem;
    font-weight: 750;
    line-height: 1.36;
    text-wrap: balance;
}

.home-article-card__excerpt {
    display: -webkit-box;
    margin: 0 0 22px;
    overflow: hidden;
    color: var(--text-muted-64748b);
    font-size: 0.92rem;
    line-height: 1.65;
    text-wrap: pretty;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.home-article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 17px;
    margin-top: auto;
    border-top: 1px solid rgba(100, 116, 139, 0.14);
}

.home-article-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    color: var(--text-muted-64748b);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.home-article-card__meta span + span::before {
    content: "·";
    margin-right: 10px;
}

.home-article-card__arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.home-article-card__arrow svg {
    width: 17px;
    height: 17px;
}

.home-article-card__link:hover .home-article-card__arrow {
    color: #fff;
    background: #2563eb;
    transform: translateX(2px);
}

@media (max-width: 720px) {
    .home-articles-section {
        padding: 68px 0;
    }

    .home-articles-header {
        display: block;
        margin-bottom: 30px;
    }

    .home-articles-header .section-title {
        font-size: 2rem;
    }

    .home-articles-header .section-subtitle {
        font-size: 1rem;
    }

    .home-articles-all {
        margin-top: 21px;
    }

    .home-article-card__link {
        min-height: 300px;
        padding: 22px;
    }

    .home-article-card__title {
        font-size: 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-articles-all,
    .home-articles-all svg,
    .home-article-card__link,
    .home-article-card__arrow {
        transition: none;
    }
}

/* End */
/* /local/templates/dev/css/advantages-section.css?17841658873604 */
/* /local/templates/dev/css/theme.css?17841659343937 */
/* /local/templates/dev/components/bitrix/breadcrumb/universal/style.css?1787490770901 */
/* /local/templates/dev/template_styles.css?1787489976107459 */
