

/* Start:/local/templates/sendev_promo/assets/css/main.css?177450633427608*/
/* =========================================================
   SenDev Support UI — main.css
   White background, dark navigation, light/dark themes, Montserrat
   ========================================================= */

/* ========== Theme tokens (CSS variables) ========== */
:root{
    /* Typography */
    --font: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;

    /* Light theme (default) */
    --bg: #ffffff;
    --bg2: #f6f8fb;
    --surface: rgba(10,14,26,.04);
    --surface2: rgba(10,14,26,.06);
    --border: rgba(10,14,26,.12);

    --text: rgba(10,14,26,.92);
    --muted: rgba(10,14,26,.70);
    --muted2: rgba(10,14,26,.55);

    --nav-bg: #0b0d12;
    --nav-text: rgba(255,255,255,.92);
    --nav-muted: rgba(255,255,255,.72);
    --nav-border: rgba(255,255,255,.14);

    --accent: #005cff;
    --accent2: #7c3aed;
    --ok: #16a34a;
    --warn: #f59e0b;
    --danger: #ef4444;

    --shadow: 0 12px 44px rgba(10,14,26,.12);
    --shadow2: 0 8px 24px rgba(10,14,26,.10);

    --radius: 14px;
    --radius2: 22px;

    --container: 1160px;

    /* header heights */
    --header-top-height: 92px;
    --header-menu-height: 58px;
    --header-offset: calc(var(--header-top-height) + var(--header-menu-height));

    /* Focus ring */
    --focus: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
}

/* Dark theme overrides */
html[data-theme="dark"]{
    --bg: #0b0d12;
    --bg2: #0f1420;
    --surface: rgba(255,255,255,.05);
    --surface2: rgba(255,255,255,.08);
    --border: rgba(255,255,255,.14);

    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.72);
    --muted2: rgba(255,255,255,.56);

    --nav-bg: #07080c;
    --nav-text: rgba(255,255,255,.94);
    --nav-muted: rgba(255,255,255,.72);
    --nav-border: rgba(255,255,255,.14);

    --shadow: 0 16px 54px rgba(0,0,0,.40);
    --shadow2: 0 10px 30px rgba(0,0,0,.32);
}

/* ========== Base reset / all tags ========== */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body{ height: 100%; }

html{
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-offset) + 16px);
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    color-scheme: light;
}
html[data-theme="dark"]{ color-scheme: dark; }

body{
    margin: 0;
    /*padding-top: var(--header-offset);*/
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    background:
            radial-gradient(900px 520px at 8% -10%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%),
            radial-gradient(900px 520px at 92% -10%, color-mix(in oklab, var(--accent2) 12%, transparent), transparent 62%),
            var(--bg);
    color: var(--text);
    background-repeat: no-repeat;
}

main, header, footer, nav, section, article, aside { display: block; }

img, svg, video, canvas{ max-width: 100%; height: auto; display: block; }
figure{ margin: 0; }
hr{
    border: 0;
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

a{
    color: inherit;
    text-decoration: none;
    text-underline-offset: 3px;
}
a:hover{ text-decoration: underline; }

p{ margin: 0 0 12px; color: var(--text); }
small{ color: var(--muted2); }
b, strong{ font-weight: 700; }
em{ font-style: italic; }

h1,h2,h3,h4,h5,h6{
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1{ font-size: clamp(26px, 3vw, 40px); }
h2{ font-size: clamp(20px, 2.1vw, 28px); }
h3{ font-size: 20px; }
h4{ font-size: 18px; }
h5{ font-size: 16px; }
h6{ font-size: 14px; color: var(--muted); }

ul, ol{
    margin: 0 0 14px;
    padding-left: 20px;
    color: var(--text);
}
li{ margin: 6px 0; }

blockquote{
    margin: 16px 0;
    padding: 12px 14px;
    border-left: 3px solid color-mix(in oklab, var(--accent) 60%, var(--border));
    background: color-mix(in oklab, var(--bg2) 84%, transparent);
    border-radius: 12px;
    color: var(--muted);
}

code, kbd, samp{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .95em;
}
code{
    padding: .15em .42em;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 85%, transparent);
    border-radius: 10px;
}
pre{
    margin: 14px 0;
    padding: 14px;
    overflow: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 82%, transparent);
    box-shadow: var(--shadow2);
}
pre code{
    border: 0;
    background: transparent;
    padding: 0;
}

table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 14px 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
}
th, td{
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
th{
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    font-weight: 700;
}
tr:last-child td{ border-bottom: 0; }

details{
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 12px;
    background: color-mix(in oklab, var(--bg2) 84%, transparent);
}
summary{
    cursor: pointer;
    font-weight: 700;
}

/* Forms */
button, input, select, textarea{
    font: inherit;
    color: inherit;
}
input, textarea, select{
    border-radius: 14px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 88%, transparent);
    padding: 12px 12px;
    outline: none;
    transition: box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
textarea{ min-height: 120px; resize: vertical; }
input::placeholder, textarea::placeholder{ color: var(--muted2); }

input:focus, textarea:focus, select:focus{
    border-color: color-mix(in oklab, var(--accent) 55%, var(--border));
    box-shadow: var(--focus);
}

button{ border: 0; background: none; }
:focus-visible{ outline: none; box-shadow: var(--focus); border-radius: 12px; }

::selection{
    background: color-mix(in oklab, var(--accent) 30%, transparent);
}

/* Utility */
.container{
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.visually-hidden{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip link */
.skip-link{
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 120;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--nav-bg);
    color: var(--nav-text);
    transform: translateY(-140%);
    transition: transform .16s ease;
    border: 1px solid var(--nav-border);
}
.skip-link:focus{ transform: translateY(0); }

/* ========== Layout ========== */
.main{
    padding: 22px 0 56px;
    padding-top: var(--header-offset);
}

/* ========== Header split: top dark + menu light ========== */
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.header__top{
    background: color-mix(in oklab, var(--nav-bg) 92%, transparent);
    border-bottom: 1px solid var(--nav-border);
    backdrop-filter: blur(14px);
}

.header__row{
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: var(--header-top-height);
    padding: 12px 0;
}

.brand{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--nav-text);
    white-space: nowrap;
}
.brand:hover{ text-decoration: none; }

.top-logo{
    height: 56px;
    width: auto;
    flex: 0 0 auto;
}

.brand__badge{
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--nav-border);
    background: rgba(255,255,255,.06);
    color: var(--nav-muted);
    font-size: 12px;
    font-weight: 600;
}

/* Optional small search in header */
.header__search{
    margin-left: 10px;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 520px;
    position: relative;
}
.header__search input,
.top-search{
    width: 100%;
}
.header__search input{
    background: rgba(255,255,255,.08);
    border-color: var(--nav-border);
    color: var(--nav-text);
    padding-left: 40px;
}
.header__search input::placeholder{ color: rgba(255,255,255,.55); }
.header__search .header__search-ico{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .85;
    color: var(--nav-muted);
    pointer-events: none;
}

/* Nav */
.nav{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__actions{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.burger{
    margin-left: auto;
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--nav-border);
    background: rgba(255,255,255,.06);
    color: var(--nav-text);
}
.burger__line{
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    opacity: .9;
}

/* Светлая полоса меню */
.header__menu{
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    border-bottom: 1px solid var(--border);
}
.header__menrow{
    min-height: var(--header-menu-height);
    padding: 8px 0;
    display: flex;
    align-items: center;
}

/* Nav в полосе меню */
.header__menu .nav{
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Bitrix menu template "top" */
.menu-top{
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-top ul,
.menu-top li{
    list-style: none;
    margin: 0;
    padding: 0;
}

/* горизонтальное меню */
.header__menu .menu-top ul{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-top a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
}

/* Светлая схема для ссылок меню */
.header__menu .menu-top a{
    color: var(--muted);
    background: transparent;
}
.header__menu .menu-top a:hover{
    color: var(--text);
    border-color: var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    text-decoration: none;
}
.header__menu .menu-top .is-active a,
.header__menu .menu-top .active a{
    color: var(--text);
    border-color: color-mix(in oklab, var(--accent) 22%, var(--border));
    background: color-mix(in oklab, var(--bg2) 92%, transparent);
}

/* Действия справа в шапке */
.header__actions{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========== Buttons ========== */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover{
    transform: translateY(-1px);
    background: var(--surface2);
    text-decoration: none;
}
.btn:active{ transform: translateY(0); }

.btn--primary{
    border-color: color-mix(in oklab, var(--accent) 40%, var(--border));
    background: linear-gradient(135deg,
    color-mix(in oklab, var(--accent) 22%, transparent),
    color-mix(in oklab, var(--accent2) 18%, transparent)
    );
}
.btn--primary:hover{
    box-shadow: 0 10px 30px color-mix(in oklab, var(--accent) 22%, transparent);
}

.btn--ghost{
    background: rgba(255,255,255,.06);
    border-color: var(--nav-border);
    color: var(--nav-text);
}
.btn--ghost:hover{ background: rgba(255,255,255,.10); }

.btn--danger{
    border-color: color-mix(in oklab, var(--danger) 45%, var(--border));
}

.link{
    color: var(--muted);
    text-decoration: none;
}
.link:hover{ color: var(--text); text-decoration: underline; }

/* ========== Page sections ========== */
.section{ margin-top: 26px; }
.section__head{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.h1{ font-size: clamp(26px, 3vw, 38px); margin: 0; letter-spacing: -0.02em; }
.h2{ font-size: 22px; margin: 0; letter-spacing: -0.02em; }
.p{ margin: 10px 0 0; color: var(--muted); line-height: 1.65; }

/* ========== Cards ========== */
.card{
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    border-radius: var(--radius2);
    box-shadow: var(--shadow2);
}
.card__in{ padding: 18px; }

/* ========== Hero ========== */
.hero{
    margin-top: 6px;
}
.hero__panel{
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: linear-gradient(180deg,
    color-mix(in oklab, var(--bg2) 92%, transparent),
    color-mix(in oklab, var(--bg2) 78%, transparent)
    );
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero__in{
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    padding: 18px;
    min-height: 300px;
    align-items: start;
}
.hero__title{
    font-size: clamp(22px, 2.6vw, 34px);
    margin: 0;
}
.hero__text{
    margin: 10px 0 0;
    color: var(--muted);
}
.hero__cta{
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero__media{
    min-height: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: transparent;
}

/* Optional: keep your slider styles */
.slider{
    position: relative;
    overflow: hidden;
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    box-shadow: var(--shadow);
}
.slider__track{
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}
.slide{
    width: 100%;
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    min-height: 320px;
    padding: 18px;
}
.slide__content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.slide__content .hero__cta{
    margin-top: auto;
}
.slide__title{
    font-size: clamp(22px, 2.4vw, 32px);
    margin: 0;
}
.slide__text{
    margin: 0;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slide__meta{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.badge{
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}
.price{ font-weight: 700; }

.slide__media{
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    align-self: stretch;
}
.slide__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__controls{
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}
.slider__btns{ display: flex; gap: 10px; pointer-events: auto; }
.slider__btn{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    color: var(--text);
    cursor: pointer;
}
.slider__dots{ display: flex; gap: 8px; pointer-events: auto; }
.slider__dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    opacity: .85;
}
.slider__dot.is-active{
    background: var(--accent);
    border-color: color-mix(in oklab, var(--accent) 45%, var(--border));
}

/* ===== Hero polish: slider should NOT stretch the hero ===== */
.hero__media .slider{
    border: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}
.hero__media .slide{
    min-height: 0;
    padding: 16px 16px 62px;
    align-items: start;
}
.hero__media .slide__media{
    height: 220px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__media .slide__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Grids / items ========== */
.grid{ display: grid; gap: 14px; }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.item{
    height: 100%;
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    overflow: hidden;
    box-shadow: var(--shadow2);
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.item:hover{
    transform: translateY(-2px);
    border-color: color-mix(in oklab, var(--accent) 24%, var(--border));
    box-shadow: var(--shadow);
}
.item__img{ aspect-ratio: 16 / 10; background: var(--surface); }
.item__img img{ width: 100%; height: 100%; object-fit: cover; }
.item__body{
    height: 100%;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.item__title{ margin: 0; font-size: 18px; }
.item__desc{
    margin: 0;
    color: var(--muted);
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item__footer{
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.item__price{ font-weight: 700; }

/* ========== Updates list ========== */
.updates{ display: grid; gap: 12px; }
.update{
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
}
.update__top{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.update__title{ margin: 0; font-weight: 800; }
.update__date{ color: var(--muted2); font-size: 14px; }
.update__text{ margin: 8px 0 0; color: var(--muted); }

/* ========== "Prose" content (articles, docs) ========== */
.prose{
    max-width: 860px;
}
.prose > *:first-child{ margin-top: 0; }
.prose a{
    color: color-mix(in oklab, var(--accent) 78%, var(--text));
    text-decoration: underline;
}
.prose a:hover{ text-decoration-thickness: 2px; }
.prose h2{ margin-top: 18px; }
.prose h3{ margin-top: 16px; }
.prose img{
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow2);
}

/* ========== Bitrix common (light touch) ========== */
.bx-breadcrumb{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}
.bx-breadcrumb a{ color: var(--muted); }
.bx-breadcrumb a:hover{ color: var(--text); }

.bx-pagination{
    display: flex;
    justify-content: center;
    margin-top: 18px;
}
.bx-pagination .bx-pag-page{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========== Footer ========== */
.footer{
    margin-top: 22px;
    background: color-mix(in oklab, var(--nav-bg) 92%, transparent);
    border-top: 1px solid var(--nav-border);
    color: var(--nav-text);
}
.footer__row{
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 14px;
    padding: 22px 0;
    align-items: start;
}
.footer__brand{
    font-weight: 900;
    letter-spacing: -0.02em;
}
.footer__meta{
    color: var(--nav-muted);
    margin-top: 6px;
}
.footer__coltitle{
    font-weight: 800;
    margin-bottom: 8px;
}
.footer__links{
    display: grid;
    gap: 8px;
}
.footer__links a{
    color: var(--nav-muted);
    text-decoration: none;
}
.footer__links a:hover{ color: var(--nav-text); text-decoration: underline; }

.footer__right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.footer__copy{
    color: var(--nav-muted);
    font-size: 14px;
}
.footer__pillrow{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer__pill{
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--nav-border);
    background: rgba(255,255,255,.06);
    color: var(--nav-text);
    font-size: 13px;
}

/* ===== Support extras ===== */
.searchbar{
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.searchbar__input{
    flex: 1 1 320px;
    min-width: 220px;
}
.searchbar__btn{ flex: 0 0 auto; }

.chips{
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip{
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    color: var(--muted);
    text-decoration: none;
}
.chip:hover{
    color: var(--text);
    border-color: color-mix(in oklab, var(--accent) 24%, var(--border));
}

.tile{
    display: block;
    height: 100%;
    text-decoration: none;
}
.tile__top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 6px;
}
.tile__ico{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    box-shadow: var(--shadow2);
}
.tile__kicker{
    color: var(--muted2);
    font-size: 13px;
    font-weight: 600;
}

.hero__mock{
    padding: 16px;
    height: 100%;
    background: linear-gradient(180deg,
    color-mix(in oklab, var(--bg2) 90%, transparent),
    color-mix(in oklab, var(--bg2) 76%, transparent)
    );
}
.hero__mock-title{
    font-weight: 800;
    margin-bottom: 10px;
}
.hero__mock-row{
    display:flex;
    align-items:center;
    gap:10px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
    margin-bottom: 10px;
}
.hero__mock-note{
    color: var(--muted);
    margin-top: 8px;
    font-size: 14px;
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
}
.dot--ok{ background: color-mix(in oklab, var(--ok) 70%, transparent); }
.dot--warn{ background: color-mix(in oklab, var(--warn) 70%, transparent); }

.meta{
    color: var(--muted2);
    font-size: 14px;
}

.faq{
    display:grid;
    gap: 12px;
}
.faq__item{
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 12px;
    background: color-mix(in oklab, var(--bg2) 86%, transparent);
}
.faq__item summary{
    font-weight: 800;
}

/* Better spacing for prose inside cards */
.article-head{ margin-bottom: 12px; }

/* ===== Prose variants ===== */
.prose--wide{ max-width: none; }

/* ===== Prevent "card inside card" look (for include areas) ===== */
.card__in > .card{
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.card__in > .card > .card__in{
    padding: 0;
}

/* ========== Responsive ========== */
@media (max-width: 1100px){
    .hero__media .slide{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px){
    .grid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .slide{ grid-template-columns: 1fr; min-height: 0; }
    .slide__media{ min-height: 220px; }
    .hero__in{ grid-template-columns: 1fr; min-height: 0; }
    .hero__media .slide__media{
        height: 200px;
        min-height: 200px;
    }
    .footer__row{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
    :root{
        --header-top-height: 80px;
        --header-menu-height: 46px;
    }

    .top-logo{
        height: 46px;
    }

    .brand{
        font-size: 22px;
    }

    .brand__badge{
        display: none;
    }

    .burger{
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header__search{ display: none; }
    .header__actions{ display: none; }

    .header__row{
        min-height: var(--header-top-height);
    }

    .header__menrow{
        min-height: var(--header-menu-height);
        padding: 6px 0;
    }

    .nav{
        position: fixed;
        inset: 112px 12px auto 12px;
        background: color-mix(in oklab, var(--nav-bg) 92%, transparent);
        border: 1px solid var(--nav-border);
        border-radius: var(--radius2);
        padding: 12px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .nav.is-open{ display: flex; }

    .menu-top{
        flex-direction: column;
        align-items: stretch;
    }
    .menu-top a{ width: 100%; }

    .nav__actions{
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .header__menu .nav{
        position: fixed;
        inset: 112px 12px auto 12px;
        background: color-mix(in oklab, var(--nav-bg) 92%, transparent);
        border: 1px solid var(--nav-border);
        border-radius: var(--radius2);
        padding: 12px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .header__menu .nav.is-open{ display: flex; }

    .header__menu .menu-top ul{
        flex-direction: column;
        align-items: stretch;
    }
    .header__menu .menu-top a{ width: 100%; }

    .grid--3{ grid-template-columns: 1fr; }
    .grid--2{ grid-template-columns: 1fr; }

    .hero__cta{
        flex-direction: column;
    }
    .hero__cta .btn{
        width: 100%;
    }

    .chips{
        gap: 6px;
    }

    .slide__meta{
        gap: 8px;
    }

    .footer__row{ grid-template-columns: 1fr; }

    .searchbar{ flex-direction: column; }
    .searchbar__btn{ width: 100%; }
}
/* End */


/* Start:/local/templates/sendev_promo/styles.css?17748571055309*/
.table {
    width: 100%;
    margin-bottom: 20px;
    border: 5px solid #fff;
    border-top: 5px solid #fff;
    border-bottom: 3px solid #fff;
    border-collapse: collapse;
    outline: 3px solid #ffd300;
    font-size: 15px;
    background: #fff !important;
}

.table th {
    font-weight: bold;
    padding: 7px;
    background: #ffd300;
    border: none;
    text-align: left;
    font-size: 15px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #ffd300;
}

.table td {
    padding: 7px;
    border: none;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    font-size: 15px;
}

.table tbody tr:nth-child(even){
    background: #f8f8f8 !important;
}

.support-page{
    --support-border: #cbd5e1;
    --support-border-strong: #94a3b8;
    --support-bg: #ffffff;
    --support-bg-soft: #f8fafc;
    --support-text: #0f172a;
    --support-muted: #64748b;
}

.support-page,
.support-page *{
    font-family: var(--font), sans-serif;
}

.support-page__body{
    overflow-x: auto;
}

/* Локальная зона legacy-компонента */
.support-legacy{
    color: var(--support-text);
    font-size: 14px;
    line-height: 1.45;
}

.support-legacy a{
    text-underline-offset: 2px;
}

/* Сбрасываем глобальную “карточность” таблиц только внутри support */
.support-legacy table{
    /*width: auto;*/
    max-width: 100%;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    overflow: visible;
    background: transparent;
}

.support-legacy th,
.support-legacy td{
    border-bottom: 0;
    box-shadow: none;
}

/* Поля ввода — возвращаем более системный и аккуратный вид */
.support-legacy input[type="text"],
.support-legacy input[type="password"],
.support-legacy input[type="email"],
.support-legacy input[type="search"],
.support-legacy input[type="number"],
.support-legacy input[type="tel"],
.support-legacy input[type="url"],
.support-legacy textarea,
.support-legacy select{
    width: auto;
    max-width: 100%;
    min-height: 38px;
    padding: 7px 10px;
    border-radius: 6px;
    border: 1px solid var(--support-border);
    background: var(--support-bg);
    color: var(--support-text);
    box-shadow: none;
    outline: none;
}

.support-legacy textarea{
    min-height: 320px;
    line-height: 1.45;
    resize: vertical;
}

.support-legacy input[type="file"]{
    width: auto;
    max-width: 100%;
    padding: 4px 6px;
    border-radius: 6px;
    border: 1px solid var(--support-border);
    background: var(--support-bg);
    color: var(--support-text);
    box-shadow: none;
}

/* Чекбоксы и радиокнопки не растягиваем */
.support-legacy input[type="checkbox"],
.support-legacy input[type="radio"]{
    width: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    margin: 0 4px 0 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    vertical-align: middle;
}

/* Кнопки старого компонента */
.support-legacy input[type="submit"],
.support-legacy input[type="button"],
.support-legacy input[type="reset"],
.support-legacy button{
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid var(--support-border);
    background: var(--support-bg-soft);
    color: var(--support-text);
    box-shadow: none;
    cursor: pointer;
    transition: background .12s ease, border-color .12s ease, transform .12s ease;
}

.support-legacy input[type="submit"]:hover,
.support-legacy input[type="button"]:hover,
.support-legacy input[type="reset"]:hover,
.support-legacy button:hover{
    background: #f1f5f9;
    border-color: #b8c4d3;
    transform: translateY(-1px);
}

.support-legacy input[type="text"]:focus,
.support-legacy input[type="password"]:focus,
.support-legacy input[type="email"]:focus,
.support-legacy input[type="search"]:focus,
.support-legacy input[type="number"]:focus,
.support-legacy input[type="tel"]:focus,
.support-legacy input[type="url"]:focus,
.support-legacy textarea:focus,
.support-legacy select:focus,
.support-legacy input[type="file"]:focus{
    border-color: var(--support-border-strong);
    box-shadow: none;
}

/* Немного аккуратнее служебные зоны */
.support-legacy form{
    max-width: 100%;
}

.support-legacy img{
    max-width: none;
}

.support-legacy .errortext,
.support-legacy .notetext{
    margin: 10px 0;
}

.support-legacy .ticket-search,
.support-legacy .ticket-edit-form,
.support-legacy .ticket-list,
.support-legacy .ticket-messages{
    max-width: 100%;
}

/* Адаптив */
@media (max-width: 760px){
    .support-legacy{
        font-size: 13px;
    }

    .support-legacy textarea{
        min-height: 220px;
    }

    .support-legacy input[type="submit"],
    .support-legacy input[type="button"],
    .support-legacy input[type="reset"],
    .support-legacy button{
        min-height: 36px;
        padding: 0 12px;
    }
}
/* End */
/* /local/templates/sendev_promo/assets/css/main.css?177450633427608 */
/* /local/templates/sendev_promo/styles.css?17748571055309 */
