

/* Start:/local/templates/wizzle2025/css/fonts.css?17894066901461*/
/* Golos Text — variable, самохостинг (Google Fonts v7) */

/* cyrillic-ext */
@font-face {
    font-family: 'Golos Text';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/local/templates/wizzle2025/css/../fonts/golos-text-cyrillic-ext.woff2') format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Golos Text';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/local/templates/wizzle2025/css/../fonts/golos-text-cyrillic.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
    font-family: 'Golos Text';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/local/templates/wizzle2025/css/../fonts/golos-text-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Golos Text';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/local/templates/wizzle2025/css/../fonts/golos-text-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* End */


/* Start:/local/templates/wizzle2025/css/styles.css?17894066909254*/
/* Custom styles on top of Tailwind.
   Токены и компоненты редизайна (design_handoff_wizzle_homepage). */

:root {
    --c-paper: #fbfaf7;
    --c-card: #ffffff;
    --c-sand: #f1ede4;
    --c-line: #e8e4dc;
    --c-line-strong: #d8d3c8;
    --c-ink: #141a24;
    --c-ink-soft: #232b38;
    --c-text-list: #3f3a30;
    --c-text-2: #5a5648;
    --c-text-3: #8a8578;
    --c-brand: #f2790f;
    --c-brand-hover: #e05f00;
    --c-brand-active: #d95c00;
    --c-brand-on-dark: #f2924a;
    --c-night: #141a24;
    --c-night-panel: #1e2736;
    --c-night-line: #2c3648;
    --c-night-btn: #3a4356;
    --c-night-text: #c6ccd8;
    --c-night-muted: #8b93a3;
    --c-error: #d0342c;
    --shadow-hover: 0 8px 24px rgba(20, 26, 36, .07);
    --ease: 180ms ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Golos Text', system-ui, -apple-system, sans-serif;
    background: var(--c-paper);
    color: var(--c-ink);
}

/* Bitrix admin panel offset */
#panel {
    position: relative;
    z-index: 9999;
}

/* ---------- Сетка ---------- */

/* Контейнер 1200px; боковые отступы: 20 / 32 / 56px */
.wrap {
    max-width: 1200px;
    margin-inline: auto;
}
.section-x {
    padding-inline: 20px;
}
@media (min-width: 768px) {
    .section-x { padding-inline: 32px; }
}
@media (min-width: 1280px) {
    .section-x { padding-inline: 56px; }
}

/* ---------- Типографика ---------- */

.eyebrow {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.section-title {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-text-3);
}
.h1 {
    font-size: 32px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.02em;
    text-wrap: balance;
}
@media (min-width: 768px)  { .h1 { font-size: 40px; } }
@media (min-width: 1024px) { .h1 { font-size: 44px; } }
@media (min-width: 1280px) { .h1 { font-size: 52px; } }

.lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--c-text-2);
}

/* ---------- Кнопки ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}
.btn:focus-visible {
    outline: 2px solid var(--c-ink);
    outline-offset: 2px;
}
.btn-lg {
    padding: 15px 28px;
    font-size: 16px;
}
.btn-brand {
    background: var(--c-brand);
    color: #fff;
}
.btn-brand:hover  { background: var(--c-brand-hover); color: #fff; }
.btn-brand:active { background: var(--c-brand-active); }

.btn-dark {
    background: var(--c-ink);
    color: #fff;
}
.btn-dark:hover { background: var(--c-ink-soft); color: #fff; }

.btn-secondary {
    background: transparent;
    border-color: var(--c-line-strong);
    color: var(--c-ink);
}
.btn-secondary:hover { border-color: var(--c-ink); color: var(--c-ink); }

/* контурная кнопка на тёмном фоне */
.btn-outline-night {
    background: transparent;
    border-color: var(--c-night-btn);
    color: #fff;
    padding: 13px 26px;
}
.btn-outline-night:hover { border-color: #fff; color: #fff; }
.btn-outline-night:focus-visible { outline-color: #fff; }

/* белая кнопка на оранжевом CTA */
.btn-on-brand {
    background: #fff;
    color: var(--c-brand-active);
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
}
.btn-on-brand:hover { background: #fff5ec; color: var(--c-brand-active); }
.btn-on-brand:focus-visible { outline-color: #fff; }

.btn[disabled] {
    opacity: .6;
    cursor: default;
    pointer-events: none;
}

/* ---------- Ссылки ---------- */

/* «Подробнее →»: стрелка вынесена в .link-arrow__arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-brand);
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow__arrow {
    display: inline-block;
    transition: transform 150ms ease;
}
.link-arrow:hover .link-arrow__arrow { transform: translateX(3px); }

/* Навигация */
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-ink);
    transition: color 150ms ease-out;
}
.nav-link:hover,
.nav-link.is-active { color: var(--c-brand); }

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--c-ink);
    white-space: nowrap;
}
.logo__dot { color: var(--c-brand); }
.logo-caption {
    font-size: 12px;
    color: var(--c-text-3);
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ---------- Карточки ---------- */

/* карточка-факт в hero */
.fact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 22px 26px;
}
.fact-card__value {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--c-brand);
}
.fact-card__label {
    font-size: 14px;
    line-height: 1.4;
    color: var(--c-text-3);
    margin-top: 4px;
}

/* карточка направления услуг */
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: 14px;
    padding: 36px 36px 32px;
    transition: box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--c-line-strong);
}
@media (max-width: 767px) {
    .service-card { padding: 26px 22px 24px; }
}
.service-card__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 14px;
}
.service-card__title small {
    font-size: inherit;
    font-weight: 500;
    color: var(--c-text-3);
}
.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--c-text-list);
}
.service-card__list li {
    display: flex;
    gap: 10px;
}
.service-card__list li::before {
    content: '\2014';
    color: var(--c-brand);
    flex: none;
}
.service-card .link-arrow {
    margin-top: 24px;
}

/* тёмная секция кейса */
.case-metric__value {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--c-brand-on-dark);
}
.case-metric__label {
    font-size: 13px;
    line-height: 1.4;
    color: var(--c-night-muted);
    margin-top: 2px;
}
.case-shot {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    background: var(--c-night-panel);
    border: 1px solid var(--c-night-line);
    border-radius: 12px;
    overflow: hidden;
    color: #5b6574;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}
@media (min-width: 1024px) {
    .case-shot { height: 340px; }
}
.case-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Теги технологий — намеренно без hover и границы */
.tag {
    display: inline-block;
    background: var(--c-sand);
    color: var(--c-ink);
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 13.5px;
    line-height: 1.3;
    white-space: nowrap;
}

/* CTA-блок */
.cta {
    background: linear-gradient(120deg, var(--c-brand), var(--c-brand-hover));
    border-radius: 16px;
    color: #fff;
}

/* Case card (страницы кейсов) */
.case-card {
    border: 1px solid var(--c-line);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow var(--ease), border-color var(--ease);
}
.case-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--c-line-strong);
}

/* Breadcrumb */
.breadcrumb-list li + li::before {
    content: '/';
    margin: 0 6px;
    color: var(--c-text-3);
}

/* ---------- Мобильное меню ---------- */
#mobile-menu {
    display: none;
}
#mobile-menu.open {
    display: block;
}

/* ---------- Prose для страниц кейсов ---------- */
.prose h2 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--c-ink); }
.prose h3 { font-size: 1.1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--c-text-list); }
.prose p  { margin-bottom: 1rem; color: var(--c-text-list); line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: var(--c-text-list); }
.prose ul li { margin-bottom: 0.35rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* End */
/* /local/templates/wizzle2025/css/fonts.css?17894066901461 */
/* /local/templates/wizzle2025/css/styles.css?17894066909254 */
