

/* Start:/local/components/custom/hero.block/templates/.default/style.css?178294078316168*/
/* =============================================================
   Hero Block Component — style.css
   Вписан в дизайн-систему ITServiceSPB (CSS vars из style.css)
   Блок: .hb — продающий hero с формой и счётчиками
============================================================= */

/* ─── Собственный контейнер компонента ───────────────────────
   Порог 1702px = 1672px (макет) + 2 × 15px (padding)
   На экранах ≥ 1702px контент занимает ровно 1672px и не
   упирается в края; на меньших — плывёт резинкой с 15px паддингом.
─────────────────────────────────────────────────────────────── */
.hb__container {
    width:         100%;
    max-width:     1672px;          /* ширина по макету          */
    margin-inline: auto;            /* горизонтальное центрирование */
    padding-left:  15px;            /* защитный зазор от края    */
    padding-right: 15px;
    box-sizing:    border-box;
}

/* ─── Секция: общая обёртка ───────────────────────────────── */
.hb {
    position: relative;
    overflow: hidden;
}

/* ─── ВЕРХНЯЯ ЧАСТЬ: градиентный фон ─────────────────────── */
.hb__top {
    position:   relative;
    padding:    clamp(60px, 10vw, 110px) 0 clamp(70px, 11vw, 120px);
    background:
        /* яркий угловой градиент */
        linear-gradient(135deg,
            #050919 0%,
            #0d1535 30%,
            #12103d 55%,
            #0e0c2e 75%,
            #030714 100%),
        /* glow-пятна поверх */
        radial-gradient(ellipse 70% 55% at 20% 60%, rgba(79, 110, 247, .30) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 80% 30%, rgba(124, 58, 237, .30) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 50% 90%, rgba(79, 110, 247, .15) 0%, transparent 70%);
    background-blend-mode: normal, screen, screen, screen;
}

/* декоративная нижняя кривая */
.hb__top::after {
    content:  '';
    position: absolute;
    bottom:   -2px;
    left:     0;
    right:    0;
    height:   60px;
    background: var(--color-bg-deep, #080c18);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ─── Орбы (декор) ────────────────────────────────────────── */
.hb__orb {
    position:      absolute;
    border-radius: 50%;
    filter:        blur(80px);
    pointer-events: none;
    z-index:       0;
}
.hb__orb--1 {
    width:  500px; height: 500px;
    top: -120px; left: -150px;
    background: radial-gradient(circle, rgba(79,110,247,.35) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite alternate;
}
.hb__orb--2 {
    width:  400px; height: 400px;
    top: 40px; right: -80px;
    background: radial-gradient(circle, rgba(124,58,237,.30) 0%, transparent 70%);
    animation: orbFloat 11s ease-in-out infinite alternate-reverse;
}
.hb__orb--3 {
    width:  300px; height: 300px;
    bottom: 80px; left: 38%;
    background: radial-gradient(circle, rgba(79,110,247,.20) 0%, transparent 70%);
    animation: orbFloat 9s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(30px) scale(1.06); }
}

/* ─── Внутренняя сетка ───────────────────────────────────── */
.hb__top-inner {
    position:  relative;
    z-index:   1;
    display:   grid;
    grid-template-columns: 1fr minmax(320px, 420px);
    gap:       clamp(32px, 5vw, 72px);
    align-items: start;
}

/* ─── H1 ──────────────────────────────────────────────────── */
.hb__h1 {
    font-family:   var(--font-heading, 'Montserrat', sans-serif);
    font-weight:   800;
    font-size:     clamp(28px, 4.5vw, 54px);
    line-height:   1.15;
    letter-spacing: -.02em;
    color:         #fff;
    margin:        0 0 16px;
    /* текстовый градиент */
    background:    linear-gradient(130deg, #ffffff 0%, #c7d3ff 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── H2 ──────────────────────────────────────────────────── */
.hb__h2 {
    font-family:  var(--font-body, 'Inter', sans-serif);
    font-size:    clamp(15px, 1.5vw, 18px);
    font-weight:  var(--fw-regular, 400);
    color:        rgba(255,255,255,.65);
    margin:       0 0 clamp(28px, 4vw, 48px);
    line-height:  1.6;
}

/* ─── Список преимуществ ─────────────────────────────────── */
.hb__perks {
    list-style: none;
    margin:     0;
    padding:    0;
    display:    flex;
    flex-direction: column;
    gap:        20px;
}

.hb__perk {
    display:    flex;
    align-items: flex-start;
    gap:        14px;
}

.hb__perk-icon {
    flex-shrink: 0;
    margin-top:  2px;
    filter: drop-shadow(0 2px 8px rgba(79,110,247,.5));
}

.hb__perk-body {
    display:        flex;
    flex-direction: column;
    gap:            3px;
}

.hb__perk-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size:   clamp(14px, 1.2vw, 16px);
    font-weight: var(--fw-bold, 700);
    color:       #fff;
    line-height: 1.3;
}

.hb__perk-desc {
    font-size:  clamp(12px, 1vw, 14px);
    color:      rgba(255,255,255,.55);
    line-height: 1.5;
}

/* ─── Карточка формы ─────────────────────────────────────── */
.hb__form-wrap {
    position:      relative;
    background:    rgba(17, 22, 39, .80);
    border:        1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg, 16px);
    padding:       clamp(24px, 3vw, 36px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 40px rgba(0,0,0,.5),
        0 0 0 1px rgba(79,110,247,.08) inset,
        0 2px 0 rgba(255,255,255,.06) inset;
}

/* внутренний glow формы */
.hb__form-glow {
    position:      absolute;
    inset:         0;
    border-radius: inherit;
    background:    radial-gradient(ellipse 80% 60% at 50% -10%,
                      rgba(79,110,247,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hb__form-title {
    font-family:  var(--font-heading, 'Montserrat', sans-serif);
    font-size:    clamp(16px, 1.4vw, 20px);
    font-weight:  var(--fw-bold, 700);
    color:        #fff;
    line-height:  1.35;
    margin:       0 0 16px;
}

/* буллиты на форме */
.hb__form-benefits {
    list-style: none;
    margin:     0 0 22px;
    padding:    0;
    display:    flex;
    flex-direction: column;
    gap:        8px;
}
.hb__form-benefit {
    display:     flex;
    align-items: center;
    gap:         8px;
    font-size:   clamp(12px, 1vw, 14px);
    color:       rgba(255,255,255,.70);
}
.hb__form-check {
    flex-shrink: 0;
}

/* ─── Поля формы ─────────────────────────────────────────── */
.hb__field {
    margin-bottom: 14px;
}

.hb__label {
    display:     block;
    font-size:   13px;
    font-weight: var(--fw-medium, 500);
    color:       rgba(255,255,255,.70);
    margin-bottom: 6px;
}
.hb__req { color: #f87171; }

.hb__input,
.hb__select {
    width:            100%;
    background:       rgba(255,255,255,.06);
    border:           1.5px solid rgba(255,255,255,.12);
    border-radius:    var(--radius-md, 10px);
    padding:          12px 16px;
    font-family:      var(--font-body, 'Inter', sans-serif);
    font-size:        14px;
    color:            #e2e8f0;
    outline:          none;
    transition:       border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
    appearance:       none;
}
.hb__input::placeholder { color: rgba(255,255,255,.28); }

.hb__input:focus,
.hb__select:focus {
    border-color: var(--color-primary, #4f6ef7);
    background:   rgba(79,110,247,.08);
    box-shadow:   0 0 0 3px rgba(79,110,247,.18);
}

.hb__input.is-invalid,
.hb__select.is-invalid {
    border-color: #f87171;
    box-shadow:   0 0 0 3px rgba(248,113,113,.18);
}

.hb__select-wrap {
    position: relative;
}
.hb__select {
    cursor: pointer;
}
.hb__select option {
    background: #0d1535;
    color:      #e2e8f0;
}
.hb__select-arrow {
    position:       absolute;
    right:          14px;
    top:            50%;
    transform:      translateY(-50%);
    pointer-events: none;
}

.hb__error {
    display:    block;
    font-size:  12px;
    color:      #f87171;
    margin-top: 4px;
    min-height: 16px;
}

/* ─── Кнопка ─────────────────────────────────────────────── */
.hb__btn {
    width:         100%;
    position:      relative;
    display:       flex;
    align-items:   center;
    justify-content: center;
    gap:           8px;
    padding:       15px 24px;
    margin-top:    6px;
    background:    linear-gradient(135deg, #4f6ef7 0%, #7c3aed 100%);
    border:        none;
    border-radius: var(--radius-md, 10px);
    font-family:   var(--font-heading, 'Montserrat', sans-serif);
    font-size:     15px;
    font-weight:   var(--fw-bold, 700);
    letter-spacing: .02em;
    color:         #fff;
    cursor:        pointer;
    overflow:      hidden;
    transition:    transform .2s, box-shadow .2s, opacity .2s;
    box-shadow:    0 4px 20px rgba(79,110,247,.45), 0 2px 8px rgba(0,0,0,.3);
}

.hb__btn::before {
    content:   '';
    position:  absolute;
    inset:     0;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
    transition: opacity .2s;
}

.hb__btn:hover {
    transform:  translateY(-2px);
    box-shadow: 0 8px 30px rgba(79,110,247,.60), 0 4px 12px rgba(0,0,0,.4);
}
.hb__btn:active { transform: translateY(0); }
.hb__btn:disabled {
    opacity: .7;
    cursor:  not-allowed;
    transform: none;
}

/* loader внутри кнопки */
.hb__btn-loader {
    display:       none;
    width:         18px; height: 18px;
    border:        2.5px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation:     spin .7s linear infinite;
}
.hb__btn.is-loading .hb__btn-text   { opacity: .4; }
.hb__btn.is-loading .hb__btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Сообщения успех/ошибка ─────────────────────────────── */
.hb__msg {
    display:       flex;
    align-items:   center;
    gap:           8px;
    margin-top:    10px;
    padding:       12px 14px;
    border-radius: var(--radius-md, 10px);
    font-size:     13px;
    font-weight:   var(--fw-medium, 500);
    animation:     fadeIn .3s ease;
}
.hb__msg--success {
    background: rgba(34,197,94,.12);
    border:     1px solid rgba(34,197,94,.3);
    color:      #86efac;
}
.hb__msg--error {
    background: rgba(248,113,113,.12);
    border:     1px solid rgba(248,113,113,.3);
    color:      #fca5a5;
}
[hidden] { display: none !important; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Дисклеймер ─────────────────────────────────────────── */
.hb__disclaimer {
    font-size:  11px;
    color:      rgba(255,255,255,.38);
    line-height: 1.6;
    margin:     12px 0 0;
    text-align: center;
}
.hb__link {
    color:           rgba(79,110,247,.85);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition:      color .2s;
}
.hb__link:hover { color: #7c3aed; }

/* ─── Время ответа с пульсом ─────────────────────────────── */
.hb__response-time {
    display:     flex;
    align-items: center;
    justify-content: center;
    gap:         7px;
    font-size:   12px;
    color:       rgba(255,255,255,.45);
    margin:      10px 0 0;
}
.hb__pulse {
    width:         9px; height: 9px;
    background:    #22c55e;
    border-radius: 50%;
    flex-shrink:   0;
    box-shadow:    0 0 0 0 rgba(34,197,94,.5);
    animation:     pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.5); }
    70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}

/* ─── НИЖНЯЯ ПОЛОСА: счётчики ────────────────────────────── */
.hb__stats {
    background:  var(--color-bg-dark, #0b0f1e);
    padding:     clamp(28px, 4vw, 48px) 0;
    border-top:  1px solid rgba(255,255,255,.06);
}

.hb__stats-list {
    list-style: none;
    margin:     0;
    padding:    0;
    display:    flex;
    flex-wrap:  wrap;
    justify-content: center;
    gap:        clamp(24px, 5vw, 64px);
}

.hb__stat-item {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            4px;
    text-align:     center;
    min-width:      100px;
}

.hb__stat-value {
    font-family:   var(--font-heading, 'Montserrat', sans-serif);
    font-size:     clamp(28px, 4vw, 42px);
    font-weight:   800;
    line-height:   1;
    background:    linear-gradient(135deg, #4f6ef7 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.01em;
}

.hb__stat-label {
    font-size:     11px;
    font-weight:   var(--fw-semibold, 600);
    letter-spacing: .12em;
    color:         rgba(255,255,255,.4);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   АДАПТИВ
═══════════════════════════════════════════════════════════ */

/* Планшет (< 992px) */
@media (max-width: 991.98px) {
    .hb__top-inner {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-inline: auto;
    }
    .hb__h1 { text-align: center; }
    .hb__h2 { text-align: center; }
    .hb__perks { max-width: 480px; margin-inline: auto; }
}

/* Мобильный (< 576px) */
@media (max-width: 575.98px) {
    .hb__top {
        padding: 48px 0 72px;
    }
    .hb__top::after { height: 40px; }
    .hb__orb--1 { width: 280px; height: 280px; }
    .hb__orb--2 { width: 220px; height: 220px; }
    .hb__orb--3 { display: none; }

    .hb__form-wrap {
        padding: 20px 16px;
    }
    .hb__stats-list {
        gap: 20px 32px;
    }
    .hb__stat-item { min-width: 80px; }
}

/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hb__orb, .hb__pulse, .hb__btn-loader { animation: none !important; }
    .hb__btn { transition: opacity .15s; }
}

/* End */


/* Start:/local/components/custom/services.list/templates/main_page/style.css?178294183919096*/
/* ══════════════════════════════════════════════════════════
   КОМПОНЕНТ: Направления разработки
   Шаблон:    main_page
   ══════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────
   CSS-переменные (согласованы с hero)
────────────────────────────────────────── */
:root {
    --srv-accent:      #5B6EF5;
    --srv-accent-2:    #8B5CF6;
    --srv-dark:        #0D0F1A;
    --srv-dark-2:      #131626;
    --srv-dark-card:   rgba(255,255,255,0.04);
    --srv-gray:        #F4F5FA;
    --srv-text:        #2C2D3A;
    --srv-muted:       #6C6F8A;
    --srv-border-d:    rgba(255,255,255,0.08);
    --srv-border-l:    rgba(91,110,245,0.15);
    --srv-radius:      16px;
    --srv-transition:  0.3s ease;
    --srv-onec-color:  #FFB800;
    --srv-seo-color:   #22c55e;
}

/* ────────────────────────────────────────
   STICKY NAV
────────────────────────────────────────── */
.srv-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--srv-border-l);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.srv-nav__inner {
    display: flex;
    align-items: center;
    max-width: 1672px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
}
.srv-nav__inner::-webkit-scrollbar { display: none; }

.srv-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--srv-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    transition: color var(--srv-transition), border-color var(--srv-transition);
    line-height: 1;
}
.srv-nav__link .bi { font-size: 1rem; }
.srv-nav__link:hover { color: var(--srv-accent); }
.srv-nav__link.is-active {
    color: var(--srv-accent);
    border-bottom-color: var(--srv-accent);
}

/* ────────────────────────────────────────
   SECTION BASE
────────────────────────────────────────── */
.srv-section-wrap { display: block; }

.section-block { padding: 100px 0; }

.section-light    { background: #fff; color: var(--srv-text); }
.section-dark     { background: var(--srv-dark); color: #fff; }
.section-gradient {
    background: linear-gradient(135deg, #0D0F1A 0%, #1A1D35 55%, #0D0F1A 100%);
    color: #fff;
}

/* Section-tag */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(91,110,245,0.1);
    color: var(--srv-accent);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.section-dark .section-tag,
.section-gradient .section-tag {
    background: rgba(91,110,245,0.2);
    color: #818cf8;
}

/* Titles & text */
.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
    margin: 0;
}
.section-sub  { font-size: 1.05rem; }
.section-text {
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.85;
}
.section-dark .section-text,
.section-gradient .section-text { opacity: 0.72; }

/* ────────────────────────────────────────
   БЛОК 1 — FLUTTER
────────────────────────────────────────── */

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.feature-list li {
    display: flex; align-items: center;
    gap: 12px; font-weight: 500; font-size: 1rem;
}
.feature-list li .bi { font-size: 1.1rem; color: var(--srv-accent); }

/* Platform grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.platform-card {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; padding: 28px 16px;
    background: var(--srv-gray);
    border-radius: var(--srv-radius);
    font-weight: 700; font-size: 0.95rem;
    transition: transform var(--srv-transition), box-shadow var(--srv-transition);
    cursor: default;
}
.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(91,110,245,0.15);
}
.platform-card .bi { font-size: 2.2rem; color: var(--srv-accent); }

/* Tech badges (flutter row) */
.tech-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(91,110,245,0.1);
    color: var(--srv-accent);
    border: 1px solid rgba(91,110,245,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.text-accent { color: var(--srv-accent) !important; }

/* ────────────────────────────────────────
   БЛОК 2 — БЭКЕНД: TECH CARDS
────────────────────────────────────────── */
.tech-card {
    display: flex; flex-direction: column;
    padding: 30px;
    background: var(--srv-dark-card);
    border: 1px solid var(--srv-border-d);
    border-radius: var(--srv-radius);
    position: relative; overflow: hidden;
    transition: border-color var(--srv-transition), transform var(--srv-transition);
}
.tech-card:hover {
    border-color: rgba(91,110,245,0.4);
    transform: translateY(-5px);
}

.tech-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.php-icon { background: rgba(119,123,180,0.2); color: #777BB4; }
.go-icon  { background: rgba(0,173,216,0.2);   color: #00ADD8; }
.py-icon  { background: rgba(255,212,59,0.2);  color: #FFD43B; }

.tech-card h3 {
    font-size: 1.4rem; font-weight: 800;
    color: #fff; margin-bottom: 4px;
}
.tech-card-sub {
    font-size: 0.82rem; color: var(--srv-accent);
    font-weight: 600; margin-bottom: 14px;
}
.tech-card p {
    color: rgba(255,255,255,0.62);
    font-size: 0.92rem; line-height: 1.75;
}
.tech-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: auto;
}
.tech-tags span {
    padding: 4px 12px;
    background: rgba(91,110,245,0.15);
    color: #818cf8;
    border: 1px solid rgba(91,110,245,0.2);
    border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
}

/* Featured card */
.featured-card {
    border-color: rgba(91,110,245,0.4);
    background: rgba(91,110,245,0.08);
}
.featured-ribbon {
    position: absolute;
    top: 18px; right: -30px;
    background: var(--srv-accent); color: #fff;
    font-size: 0.68rem; font-weight: 700;
    padding: 5px 38px;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ────────────────────────────────────────
   БЛОК 3 — RAG / AI CARDS
────────────────────────────────────────── */
.rag-card {
    display: flex; flex-direction: column;
    padding: 34px 26px;
    background: var(--srv-dark-card);
    border: 1px solid var(--srv-border-d);
    border-radius: var(--srv-radius);
    transition: border-color var(--srv-transition), transform var(--srv-transition);
}
.rag-card:hover {
    border-color: rgba(91,110,245,0.35);
    transform: translateY(-5px);
}
.rag-card-featured {
    border-color: var(--srv-accent) !important;
    background: rgba(91,110,245,0.09) !important;
}

.rag-level {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 20px; width: fit-content;
}
.rag-basic    { background: rgba(34,197,94,0.15);  color: #22c55e; }
.rag-advanced { background: rgba(91,110,245,0.2);  color: #818cf8; }
.rag-expert   { background: rgba(234,179,8,0.15);  color: #eab308; }

.rag-icon {
    font-size: 2.2rem; color: var(--srv-accent);
    margin-bottom: 16px;
}
.rag-card h3 {
    font-size: 1.25rem; font-weight: 800;
    color: #fff; margin-bottom: 12px;
}
.rag-card > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem; line-height: 1.75;
    margin-bottom: 20px;
}
.rag-features {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 10px;
    flex-grow: 1;
}
.rag-features li {
    display: flex; align-items: center;
    gap: 10px; color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
}
.rag-features li .bi { color: #22c55e; font-size: 0.95rem; }

/* Tech badges large (RAG stack) */
.tech-badge-lg {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 0.82rem; font-weight: 600;
    transition: background var(--srv-transition), border-color var(--srv-transition);
    cursor: default;
}
.tech-badge-lg:hover {
    background: rgba(91,110,245,0.2);
    border-color: var(--srv-accent);
    color: #818cf8;
}

/* ────────────────────────────────────────
   БЛОК 4 — ДИЗАЙН
────────────────────────────────────────── */
.design-deliverables {
    display: flex; flex-direction: column; gap: 16px;
}
.deliverable-item {
    display: flex; align-items: flex-start;
    gap: 16px; padding: 20px;
    background: var(--srv-gray);
    border-radius: var(--srv-radius);
    transition: box-shadow var(--srv-transition), transform var(--srv-transition);
}
.deliverable-item:hover {
    box-shadow: 0 8px 24px rgba(91,110,245,0.1);
    transform: translateY(-2px);
}
.deliverable-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(91,110,245,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--srv-accent);
}
.deliverable-item h4 {
    font-size: 1rem; font-weight: 700;
    color: var(--srv-text); margin-bottom: 4px;
}
.deliverable-item p {
    font-size: 0.85rem; color: var(--srv-muted);
    margin: 0; line-height: 1.6;
}

/* Design process */
.design-process {
    display: flex; flex-direction: column;
    align-items: stretch; gap: 0;
    padding: 36px;
    background: var(--srv-gray);
    border-radius: 24px;
}
.process-step {
    display: flex; align-items: center;
    gap: 20px; padding: 16px 20px;
    background: #fff;
    border-radius: var(--srv-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow var(--srv-transition);
}
.process-step:hover { box-shadow: 0 8px 24px rgba(91,110,245,0.12); }
.step-num {
    font-size: 2rem; font-weight: 900;
    color: rgba(91,110,245,0.15);
    line-height: 1; min-width: 50px;
}
.step-content h4 {
    font-size: 1rem; font-weight: 700;
    color: var(--srv-text); margin-bottom: 2px;
}
.step-content p {
    font-size: 0.84rem; color: var(--srv-muted); margin: 0;
}
.process-arrow {
    display: flex; align-items: center; justify-content: center;
    color: var(--srv-accent); opacity: 0.35;
    padding: 10px 0; font-size: 1.3rem;
}

/* ────────────────────────────────────────
   БЛОК 5 — 1С
────────────────────────────────────────── */
.onec-card {
    display: flex; flex-direction: column;
    padding: 30px;
    background: var(--srv-dark-card);
    border: 1px solid var(--srv-border-d);
    border-radius: var(--srv-radius);
    transition: border-color var(--srv-transition), transform var(--srv-transition);
}
.onec-card:hover {
    border-color: rgba(255,184,0,0.35);
    transform: translateY(-5px);
}
.onec-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,184,0,0.14);
    color: var(--srv-onec-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 18px;
}
.onec-card h3 {
    font-size: 1.2rem; font-weight: 800;
    color: #fff; margin-bottom: 8px;
}
.onec-card > p {
    color: rgba(255,255,255,0.62);
    font-size: 0.9rem; line-height: 1.75;
    margin-bottom: 0;
}
.onec-features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 9px;
}
.onec-features li {
    display: flex; align-items: center;
    gap: 10px; color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}
.onec-features li .bi { color: var(--srv-onec-color); font-size: 0.95rem; }

/* Configs grid */
.onec-config-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.onec-config-item {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; gap: 10px;
    padding: 24px 14px;
    background: rgba(255,184,0,0.06);
    border: 1px solid rgba(255,184,0,0.14);
    border-radius: var(--srv-radius);
    transition: all var(--srv-transition);
}
.onec-config-item:hover {
    background: rgba(255,184,0,0.12);
    border-color: rgba(255,184,0,0.38);
    transform: translateY(-3px);
}
.onec-config-item .bi { font-size: 1.9rem; color: var(--srv-onec-color); }
.onec-config-item span {
    font-size: 0.82rem; font-weight: 600;
    color: rgba(255,255,255,0.78); line-height: 1.35;
}

/* ────────────────────────────────────────
   БЛОК 6 — SEO / GEO
────────────────────────────────────────── */
.seo-card {
    display: flex; flex-direction: column;
    padding: 28px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: var(--srv-radius);
    transition: box-shadow var(--srv-transition), transform var(--srv-transition);
}
.seo-card:hover {
    box-shadow: 0 14px 36px rgba(91,110,245,0.1);
    transform: translateY(-5px);
}
.seo-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 16px;
}
.seo-card h3 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--srv-text); margin-bottom: 8px;
}
.seo-card > p {
    font-size: 0.875rem; color: var(--srv-muted);
    line-height: 1.65; margin-bottom: 18px;
}
.seo-card ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 8px; margin-top: auto;
}
.seo-card ul li {
    display: flex; align-items: center;
    gap: 8px; font-size: 0.85rem;
    color: var(--srv-text);
}
.seo-card ul li .bi { color: var(--srv-accent); font-size: 0.9rem; }

/* Stats grid */
.seo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.seo-stat {
    padding: 24px 16px;
    background: var(--srv-gray);
    border-radius: var(--srv-radius);
    text-align: center;
    transition: transform var(--srv-transition);
}
.seo-stat:hover { transform: translateY(-3px); }
.seo-stat-num {
    font-size: 2rem; font-weight: 900;
    color: var(--srv-accent); line-height: 1;
    margin-bottom: 6px;
}
.seo-stat-label {
    font-size: 0.78rem; color: var(--srv-muted);
    font-weight: 500; line-height: 1.45;
}

/* GEO promo block */
.geo-block {
    padding: 36px 40px;
    background: linear-gradient(135deg,
        rgba(91,110,245,0.07) 0%,
        rgba(139,92,246,0.07) 100%);
    border: 1px solid rgba(91,110,245,0.2);
    border-radius: var(--srv-radius);
}
.geo-tag {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(90deg, var(--srv-accent), var(--srv-accent-2));
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.geo-block h3 {
    font-size: 1.4rem; font-weight: 800;
    color: var(--srv-text); margin-bottom: 12px;
}
.geo-block p {
    color: var(--srv-muted); font-size: 0.95rem;
    line-height: 1.75; margin-bottom: 20px;
}
.geo-features { display: flex; flex-wrap: wrap; gap: 10px; }
.geo-feature {
    display: inline-flex; align-items: center;
    gap: 7px; padding: 8px 16px;
    background: rgba(91,110,245,0.08);
    border: 1px solid rgba(91,110,245,0.18);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--srv-accent);
    transition: background var(--srv-transition);
}
.geo-feature:hover { background: rgba(91,110,245,0.15); }

/* ────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1199px) {
    .onec-config-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-stats        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .section-block   { padding: 64px 0; }
    .platform-grid   { gap: 12px; }
    .design-process  { padding: 24px; }
    .geo-block       { padding: 24px; }
}

@media (max-width: 767px) {
    .section-block   { padding: 48px 0; }
    .srv-nav__link   { padding: 12px 13px; font-size: 0.8rem; }
    .platform-card   { padding: 20px 12px; }
    .platform-card .bi { font-size: 1.7rem; }
    .onec-config-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .seo-stats        { grid-template-columns: repeat(2, 1fr); }
    .geo-block        { padding: 20px; }
    .design-process   { padding: 18px; gap: 0; }
    .process-step     { gap: 12px; }
    .step-num         { font-size: 1.5rem; min-width: 36px; }
}

@media (max-width: 480px) {
    .seo-stats        { grid-template-columns: 1fr 1fr; }
    .onec-config-grid { grid-template-columns: 1fr 1fr; }
    .tech-badge-lg    { font-size: 0.75rem; padding: 6px 12px; }
}

/* End */
/* /local/components/custom/hero.block/templates/.default/style.css?178294078316168 */
/* /local/components/custom/services.list/templates/main_page/style.css?178294183919096 */
