body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    color: #1d3f5c;

    font-weight: 400;
}

@font-face {
    font-family: 'Comfortaa';
    font-weight: 700;
    src: url(../assets/fonts/Comfortaa/Comfortaa-Bold.eot),
    url(../assets/fonts/Comfortaa/Comfortaa-Bold.ttf),
    url(../assets/fonts/Comfortaa/Comfortaa-Bold.woff2),
    url(../assets/fonts/Comfortaa/Comfortaa-Bold.woff);
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    font-weight: 500;
    src: url(../assets/fonts/Comfortaa/Comfortaa-Medium.eot),
    url(../assets/fonts/Comfortaa/Comfortaa-Medium.ttf),
    url(../assets/fonts/Comfortaa/Comfortaa-Medium.woff),
    url(../assets/fonts/Comfortaa/Comfortaa-Medium.woff2);
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    font-weight: 400;
    src: url(../assets/fonts/Jost/Jost-Regular.eot),
    url(../assets/fonts/Jost/Jost-Regular.ttf),
    url(../assets/fonts/Jost/Jost-Regular.woff),
    url(../assets/fonts/Jost/Jost-Regular.woff2);
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    font-weight: 300;
    src: url(../assets/fonts/Jost/Jost-Light.eot),
    url(../assets/fonts/Jost/Jost-Light.ttf),
    url(../assets/fonts/Jost/Jost-Light.woff),
    url(../assets/fonts/Jost/Jost-Light.woff2);
    font-style: normal;
}

*::before,
::after {
    box-sizing: border-box;
}

h1,
h2,
h3 {
    margin: 0;
}

h1 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 48px;
}

h2 {
    font-weight: 400;
    font-size: 36px;
}

p {
    font-size: 30px;
}

a {
    font-size: 25px;
}

img {
    width: 100%;
}

.main1 {
    overflow: hidden;
}

.header {
    display: flex;
    padding: 0 15px;
}

.content {
    display: flex;
}

.photo {
    display: none;
}

.picture {
    margin: 12px 30px 15px;
    width: 800px;
}

.picture img {
    width: 100%;
}

.aside-content {
    text-align: left;
}

.main-content {
    margin: 10px 40px;
}

.disclaimer {
    margin-left: 5px;
}

.disclaimer h2 {
    padding: 5px 8px;
    border: 1px solid #4c6572;
    border-radius: 25px;
}

.video-con {
    display: flex;
    justify-content: center;
}

:root{
    --bg: #ffffff;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 1px 2px rgba(0,0,0,.06), 0 1px 8px rgba(0,0,0,.04);
    --up: #16a34a;
    --down: #dc2626;
}

:root{
    color-scheme: light; /* форсируем light вне зависимости от системы */
}

.metrics { background: var(--bg); }
.metrics-head{
    display:flex; align-items:baseline; justify-content:space-between; margin-bottom:12px;
}
.metrics-head h2{ margin:0; font-size:1rem; font-weight:600; color:var(--text); }
.metrics-date{ color:var(--muted); font-size:.9rem; }

.metrics-grid{
    display:grid; gap:12px;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    margin:0; padding:0; /* под dl */
}

.metric-card{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius:16px;
    padding:16px;
    box-shadow: var(--shadow);
}

.metric-title{
    margin:0 0 8px 0;
    font-size:.72rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--muted);
}

.metric-value{
    display:flex; gap:8px; align-items:baseline;
    margin:0;
    font-size: clamp(24px, 4vw, 34px);
    font-weight:700; color:var(--text);
}

.metric-hint{
    margin:8px 0 0 0;
    font-size:.78rem; color:var(--muted);
}

.metric-delta{
    font-size: .95rem; font-weight:600;
    padding:2px 6px; border-radius:999px;
    border:1px solid var(--border);
}
.metric-delta.up{ color:var(--up); }
.metric-delta.down{ color:var(--down); }


/* ---- Investor Q&A (clean) ---- */
.qa {
    --qa-bg: #f7f7fb;
    --qa-card-bg: #ffffff;
    --qa-text: #1f2937;
    --qa-muted: #6b7280;
    --qa-border: #e5e7eb;
    --qa-accent: #2563eb;
    --qa-accent-bg: #eff6ff;

    background: var(--qa-bg);
    color: var(--qa-text);
    padding-left: clamp(12px, 3vw, 24px);
    padding-right: clamp(12px, 3vw, 24px);
    padding-top: 32px;
    padding-bottom: 32px;

    font-size: 16px;     /* базовый размер */
    line-height: 1.6;
}

.qa-header { margin: 0 0 16px; }

.qa-title {
    margin: 0 0 8px;
    font-size: 24px;     /* компактнее заголовок */
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Навигация сверху, контент ниже — одна колонка */
.qa-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

/* Навигация */
.qa-nav {
    background: var(--qa-card-bg);
    border: 1px solid var(--qa-border);
    border-radius: 12px;
    padding: 16px 14px;
    box-shadow: 0 1px 3px rgba(16,24,40,.08);
}
.qa-nav ol {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}
.qa-nav a {
    text-decoration: none;
    color: var(--qa-text);
}
.qa-nav a:hover {
    color: var(--qa-accent);
    text-decoration: underline;
}

/* Контент */
.qa-content {
    display: grid;
    gap: 16px;
    padding-inline: 8px;     /* небольшой внутренний отступ */
}

/* Карточки */
.qa-card {
    background: var(--qa-card-bg);
    border: 1px solid var(--qa-border);
    border-radius: 12px;
    padding: 18px 20px;
    margin-inline: 8px;      /* лёгкий отступ слева/справа */
    box-shadow: 0 1px 3px rgba(16,24,40,.08);
}
.qa-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}
.qa-card h4 { font-size: 16px; }

/* Списки и типографика */
.qa p,
.qa li { font-size: 1rem; }
.qa ul, .qa ol, .qa li { font-size: inherit; }
.qa-card ul { margin: 10px 0 0 20px; }
.qa-card li + li { margin-top: 6px; }
.qa-card p { margin: 6px 0 0; }
.qa-card .note,
.qa-card .method-note { margin-top: 8px; color: var(--qa-muted); }

/* Ссылки внутри карточек */
.qa-card .links { margin-top: 8px; padding-left: 20px; }
.qa-card .links a {
    color: var(--qa-accent);
    text-decoration: none;
}
.qa-card .links a:hover { text-decoration: underline; }

/* Акцент маркеров доказательств */
.qa-card .evidence li::marker { color: var(--qa-accent); }

/* Подсветка якоря */
.qa-card:target {
    border-color: var(--qa-accent);
    box-shadow: 0 0 0 4px var(--qa-accent-bg), 0 1px 3px rgba(16,24,40,.08);
}

/* ==== QA: единая ручка типографики (увеличивает всё внутри) ==== */
.qa {
    /* Поверни ручку: 1.00 (по умолчанию), 1.15, 1.25 и т.д. */
    --qa-scale: 1.20;

    /* Базовый размер шрифта для всего блока (плавный, с ограничениями) */
    --qa-base: clamp(18px, calc(1rem * var(--qa-scale) + 0.2vw), 22px);
    font-size: var(--qa-base);
    line-height: 1.65;
}

/* Базовый текст (перекрываем глобальные правила страницы) */
.qa p,
.qa li,
.qa a {
    font-size: 1em;            /* = базовой величине блока */
}

/* Заголовки растут от базы блока */
.qa-title {                   /* был 24px фикс -> теперь масштабируется */
    font-size: 1.7em;           /* ~30–37px при текущем --qa-scale */
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.qa-card h3 {
    font-size: 1.35em;          /* подзаголовок внутри карточек */
    line-height: 1.35;
}
.qa-card h4 {
    font-size: 1.15em;
}

/* Навигация (TOC) — немного крупнее базы */
.qa-nav a {
    font-size: 1.05em;
}

/* Ссылки внутри карточек: на пол-шага крупнее тела */
.qa-card .links a {
    font-size: 1.05em;
}

/* Вспомогательные заметки — тоже увеличены, но чуть компактнее заголовков */
.qa-card .note,
.qa-card .method-note {
    font-size: 0.98em;
    color: var(--qa-muted);
}

/* Версточные мелочи — чтобы рост шрифта не ломал вертикальный ритм */
.qa-card ul { margin: 10px 0 0 1.25em; }
.qa-card li + li { margin-top: 0.55em; }

/* На узких экранах слегка компенсируем рост, чтобы не «кричало» */
@media (max-width: 480px) {
    .qa { --qa-scale: 1.10; }   /* мягче увеличиваем на телефонах */
}


/* Video */
.container {
    width: 100%;
    max-width: 1215px;
    margin: 0 auto;
}

.container-video {
    padding: 0 15px;
}

.video {
    display: flex;
    align-items: center;
    margin: 25px auto;
}

.video:hover {
    cursor: pointer;
}

.video-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #e8e8e8;
    background-size: cover;
    cursor: pointer;
    width: 100%;
    height: 400px;
    max-width: 880px;
    max-height: 500px;
    border-radius: 45px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.video-holder img {
    position: absolute;
    top: 43%;
    left: 44%;
    width: 110px;
    height: 110px;
    color: #4c6572;
    transition: all 0.3s linear;
    z-index: 1;
}

.video-holder:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

.video-holder.ready {
    display: flex;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    max-width: 880px;
    max-height: 500px;
    border: none;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    max-width: 880px;
    border: none;
    z-index: 1000;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.data {
    display: flex;
    margin: 10px auto;
}

.data p {
    margin: 8px;
    font-size: 37px;
    font-weight: 700;
}

.pdf-content img {
    width: 450px;
    height: 630px;
}

.files-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.files-btn {
    text-decoration: none;
    border: 1px solid #1d3f5c;
    border-radius: 25px;
    padding: 30px 40px;
    color: #1d3f5c;
}

.title-questions {
    font-size: 30px;
    font-weight: 525;
    border: 1px solid #000;
    border-radius: 25px;
    padding: 5px 10px;
    width: 150px;
}

.questions {
    margin: 50px 0 0 10px;
}

.question h2 {
    margin-bottom: 30px;
}

.question {
    margin-bottom: 55px;
}

.question-1 {
    margin-top: 40px;
}

.question:last-child {
    margin-bottom: 0px;
}

.legal-info {
    margin-left: 10px;
}

.links-content {
    margin-left: 10px;
}

.files-content {
    display: flex;
    flex-wrap: wrap;
}

.files-links img {
    width: 200px;
    height: 200px;
}

.files-links {
    margin: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.files-links1 img {
    width: 120px;
    height: 150px;
    margin-top: 23px;
}

.files-links a {
    font-size: 29px;
    text-align: center;
}

.files-links1 a {
    margin-top: 28px;
}

.infographics {
    margin-top: 30px;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.info-content img {
    width: 100%;
    margin: 40px auto;
}

@media (max-width: 1635px) {
    .video-holder img {
        top: 39%;
        left: 42%;
    }
}

@media (max-width: 1475px) {
    .picture {
        width: 700px;
    }
}

@media (max-width: 1461px) {
    .video-holder img {
        top: 38%;
        left: 39%;
    }
}

@media (max-width: 1354px) {
    .video-holder img {
        top: 38%;
        left: 41%;
    }
}

@media (max-width: 1336px) {
    .picture {
        width: 600px;
    }
}

@media (max-width: 1254px) {
    .header {
        flex-wrap: wrap;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 28px;
    }

    a {
        font-size: 30px;
    }

    aside {
        display: flex;
        justify-content: center;
    }

    .photo {
        display: flex;
        width: 100%;
    }

    .picture {
        display: none;
    }

    .files-content {
        justify-content: center;
    }

    .video-holder img {
        top: 38%;
        left: 44%;
    }
}

/* Скрыть элемент на устройствах с шириной экрана меньше 992px */
@media (max-width: 991px) {
    .photo {
        display: none;
    }
}


@media (max-width: 700px) {
    .video-holder img {
        top: 42%;
        left: 41%;
    }
}

@media (max-width: 638px) {


    .data p {
        font-size: 25px;
    }

    h2 {
        font-size: 25px;
    }

    p {
        font-size: 20px;
    }

    a {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .video-holder {
        background: #e8e8e8;
    }

    .video-holder img {
        top: 38%;
        left: 39%;
    }
}

@media (max-width: 499px) {

}

@media (max-width: 454px) {
    .data p {
        font-size: 18px;
    }

    h2 {
        font-size: 16px;
    }

    p {
        font-size: 15px;
    }

    a {
        font-size: 15px;
    }
}

@media (max-width: 449px) {

}
