/* ==========================================================================
   Акционерам и инвесторам · ПАО «Аэрофлот» — концепт 04
   Светлая карточная сетка на лавандовом холсте. Фиксированный десктоп 1440 px.
   Белые карточки radius 20 на фоне #F1F4FB, вертикальный шаг между секциями 20 px.
   ========================================================================== */

:root {
  --bg:          #F1F4FB;
  --royal:       #3B5BEA;
  --ghost:       #6C88F2;
  --paper:       #FFFFFF;
  --ink:         #171A26;
  --gray:        #6B7280;
  --line:        #E5E9F2;
  --soft:        #EEF2FE;
  --sky:         #C3D0FA;
  --inner:       #F7F9FD;
  --pill-off:    #F3F5FB;
  --on-blue-ln:  #5D78EE;
  --on-blue-br:  #7E93F1;
  --note:        #9AA1AF;
  --nav:         #4B5364;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  width: 100%;
  min-width: 1440px;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

p, h1, h2, h3 { margin: 0; }
img { display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease; }

.page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px 28px;
}

/* --- Карточки и примитивы --- */

.card {
  background: var(--paper);
  border-radius: 20px;
}

.card-blue {
  background: var(--royal);
  border-radius: 20px;
}

/* Текстовые секции: дополнительный внутренний отступ 24 px → контент 1344 */
.section { padding: 62px 24px 26px; }

.icon {
  fill: none;
  stroke: var(--royal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon-15 { width: 15px; height: 15px; }
.icon-16 { width: 16px; height: 16px; }
.icon-17 { width: 17px; height: 17px; }
.icon-18 { width: 18px; height: 18px; }
.icon-20 { width: 20px; height: 20px; }
.icon-21 { width: 21px; height: 21px; }

.icon-square {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--soft);
  border-radius: 13px;
}

.icon-square-44 { width: 44px; height: 44px; }

.h1 {
  font-family: Manrope, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.18;
  color: var(--ink);
}

.h2 {
  font-family: Manrope, sans-serif;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.25;
  color: var(--ink);
}

.h2-blue {
  font-family: Manrope, sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.1px;
  line-height: 1.25;
  color: var(--paper);
}

.text-l { font-size: 15.5px; line-height: 1.65; color: var(--gray); }
.text-m { font-size: 14.5px; line-height: 1.65; color: var(--gray); }

.link {
  font-family: Manrope, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--royal);
}
.link:hover { color: var(--ink); }

.link-sm { font-size: 13.5px; }

/* На мелких кеглях Manrope отрицательный трекинг съедает пробел целиком
   («Годовойотчет»). Возвращаем ему ширину, не трогая трекинг из спецификации. */
.logotype,
.card-title,
.fin-title,
.accent-line,
.tile-value,
.cta-title,
.doc-name,
.sh-title,
.side-title,
.cal-title,
.contact-line { word-spacing: 1px; }

/* ========== 01 · Шапка ========== */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
}

.logo-block { display: flex; align-items: center; gap: 10px; }

.wing { width: 28px; height: 18px; fill: var(--royal); }

.logotype {
  font-family: Manrope, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
  color: var(--ink);
}

.menu { display: flex; align-items: center; gap: 34px; }
.menu a { font-size: 14px; line-height: 1.4; color: var(--nav); }
.menu a:hover { color: var(--royal); }

.btn-header {
  padding: 13px 22px;
  background: var(--royal);
  border-radius: 10px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
}
.btn-header:hover { background: #2F4CD8; }

/* ========== 02 · Герой ========== */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 52px;
  text-align: center;
}

.hero-line-1 { display: flex; justify-content: center; gap: 16px; }
.hero-line-2 { display: block; }
.h1 .accent { color: var(--royal); }

.hero-lead {
  max-width: 660px;
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray);
}

.btn-row { display: flex; gap: 12px; margin-top: 34px; }

.btn-primary {
  padding: 17px 30px;
  background: var(--royal);
  border-radius: 11px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
}
.btn-primary:hover { background: #2F4CD8; }

.btn-secondary {
  padding: 17px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.btn-secondary:hover { border-color: var(--royal); color: var(--royal); }

/* ========== 03 · Полоса статистики ========== */

.stats { display: flex; padding: 44px 40px; }

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 16px;
}

.stat + .stat { border-left: 1px solid var(--on-blue-ln); }

.stat-value {
  font-family: Manrope, sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.10;
  color: var(--paper);
}

.stat-note { font-size: 12.5px; line-height: 1.5; color: var(--sky); text-align: center; }

/* ========== 04 · Три карточки быстрых ссылок ========== */

.quick-row { display: flex; gap: 20px; }

.quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
  padding: 30px 32px 32px;
  transition: transform .2s ease;
}
.quick:hover { transform: translateY(-2px); }

.card-title {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.4px;
  line-height: 1.30;
  color: var(--ink);
}

.card-text { font-size: 13.5px; line-height: 1.65; color: var(--gray); }

/* ========== 05 / 07 · Раскладка «заголовок слева / карточка справа» ========== */

.split-450 { display: flex; align-items: flex-start; gap: 70px; }

.split-left {
  display: flex;
  flex-direction: column;
  width: 450px;
  flex: none;
  padding-top: 10px;
}

.split-450 .split-left .h2 + .text-m { margin-top: 20px; }
.link-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* Карточка финансовых результатов */

.fin-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1 1 0;
  min-width: 0;
  padding: 26px;
}

.pill-row { display: flex; gap: 8px; }

.pill {
  padding: 10px 16px;
  background: var(--pill-off);
  border-radius: 9px;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray);
}

.pill-active { background: var(--royal); color: var(--paper); }

.fin-inner {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 24px;
  background: var(--inner);
  border-radius: 15px;
}

.fin-photo {
  width: 180px;
  height: 132px;
  flex: none;
  object-fit: cover;
  border-radius: 11px;
}

.fin-info { display: flex; flex-direction: column; gap: 14px; }

.kicker { font-size: 12px; line-height: 1.5; color: var(--gray); }

.fin-title {
  font-family: Manrope, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.30;
  color: var(--ink);
}

.spec { display: flex; flex-direction: column; gap: 9px; padding-top: 2px; }
.spec-row { display: flex; align-items: center; gap: 9px; }
.spec-key { width: 104px; flex: none; font-size: 13px; color: var(--gray); }
.spec-value { font-size: 13px; color: var(--ink); }

.accent-line {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.40;
  color: var(--royal);
}

.btn-block {
  display: block;
  padding: 15px 0;
  background: var(--royal);
  border-radius: 11px;
  font-family: Manrope, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
  text-align: center;
}
.btn-block:hover { background: #2F4CD8; }

.fin-note { font-size: 12px; line-height: 1.5; color: var(--note); text-align: center; }

/* ========== 06 · Группа «Аэрофлот» ========== */

.group { display: flex; align-items: center; gap: 48px; padding: 40px; }

.group-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 0 8px 8px;
}

.tile-row { display: flex; gap: 14px; padding-top: 6px; }

.tile {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 20px;
  background: var(--inner);
  border-radius: 14px;
}

.tile-key { font-size: 12.5px; line-height: 1.5; color: var(--gray); }

.tile-value {
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.4px;
  line-height: 1.30;
  color: var(--ink);
}

.group-photo {
  width: 600px;
  height: 376px;
  flex: none;
  object-fit: cover;
  border-radius: 16px;
}

/* ========== 07 · Отчеты и презентации ========== */

.split-450 .split-left .cta-card { margin-top: 22px; }

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--paper);
  border-radius: 16px;
}

.cta-title {
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.30;
  color: var(--ink);
}

.cta-text { font-size: 13px; line-height: 1.65; color: var(--gray); }

.btn-small {
  padding: 13px 22px;
  background: var(--royal);
  border-radius: 10px;
  font-family: Manrope, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
}
.btn-small:hover { background: #2F4CD8; }

.doc-stack { display: flex; flex-direction: column; gap: 12px; flex: 1 1 0; min-width: 0; }

.doc-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 14px;
  transition: transform .2s ease;
}
.doc-row:hover { transform: translateY(-2px); }

.doc-name {
  flex: 1;
  font-family: Manrope, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.2px;
  line-height: 1.35;
  color: var(--ink);
}

.doc-year { width: 76px; flex: none; font-size: 13px; color: var(--gray); }
.doc-format { width: 130px; flex: none; font-size: 12.5px; color: var(--gray); }

.doc-action {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
  font-family: Manrope, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--royal);
}
.doc-action:hover { color: var(--ink); }
.doc-action:hover .icon { stroke: var(--ink); }

/* ========== 08 · Акционерам ========== */

.shareholders { display: flex; flex-direction: column; gap: 34px; }

.sh-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.sh-head-note { width: 520px; flex: none; }

.sh-row { display: flex; gap: 20px; }

.sh-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  height: 246px;
  padding: 28px 26px 26px;
  transition: transform .2s ease;
}
.sh-card:hover { transform: translateY(-2px); }

.sh-top { display: flex; flex-direction: column; gap: 15px; }

.sh-title {
  font-family: Manrope, sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -.35px;
  line-height: 1.30;
  color: var(--ink);
}

.sh-text { font-size: 13px; line-height: 1.65; color: var(--gray); }

/* Карточка дивидендов */

.div-card {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding: 34px 36px;
}

.div-table { flex: 1 1 0; min-width: 0; }

.div-thead {
  display: flex;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--note);
}

.div-col-year { width: 150px; flex: none; }
.div-col-value { width: 280px; flex: none; }

.div-row {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.div-row:last-child { border-bottom: none; }

.div-year { font-size: 13.5px; color: var(--gray); }

.div-value {
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--royal);
}

.div-share { font-size: 13.5px; color: var(--ink); }

.div-side {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  width: 330px;
  flex: none;
  padding: 24px;
  background: var(--inner);
  border-radius: 16px;
}

.side-title {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.30;
  color: var(--ink);
}

.side-text { font-size: 13px; line-height: 1.65; color: var(--gray); }

/* ========== 09 · Раскрытие информации ========== */

.disclosure {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 44px 44px 40px;
}

.disc-row { display: flex; align-items: center; justify-content: space-between; gap: 70px; }

.disc-left { display: flex; flex-direction: column; gap: 14px; flex: 1 1 auto; min-width: 0; }
.disc-text { font-size: 14.5px; line-height: 1.65; color: var(--sky); }

.btn-white {
  flex: none;
  padding: 17px 30px;
  background: var(--paper);
  border-radius: 11px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--royal);
}
.btn-white:hover { background: var(--sky); }

.disc-pills {
  display: flex;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--on-blue-ln);
}

.pill-outline {
  padding: 10px 18px;
  border: 1px solid var(--on-blue-br);
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.2;
  color: var(--paper);
}
.pill-outline:hover { border-color: var(--paper); }

/* ========== 10 · Контакты для инвесторов ========== */

.contacts { display: flex; align-items: flex-start; gap: 56px; padding: 40px; }

.contacts-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 0 0 8px;
}

.contact-row { display: flex; gap: 16px; padding-top: 8px; }

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  padding: 20px 22px;
  background: var(--inner);
  border-radius: 14px;
}

.contact-dept { font-size: 12.5px; line-height: 1.5; color: var(--gray); }

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.2px;
  line-height: 1.3;
  color: var(--ink);
}

a.contact-line:hover { color: var(--royal); }

.cal-card {
  width: 440px;
  flex: none;
  padding: 26px;
  background: var(--inner);
  border-radius: 16px;
}

.cal-head { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; }

.cal-title {
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.30;
  color: var(--ink);
}

.cal-event {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cal-date {
  width: 58px;
  flex: none;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.2;
  color: var(--royal);
}

.cal-text { font-size: 13.5px; line-height: 1.5; color: var(--ink); }

/* ========== 11 · Футер ========== */

.footer { padding: 46px 44px 30px; overflow: hidden; }

.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 80px; }

.footer-head {
  font-family: Manrope, sans-serif;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--paper);
}

.social-row { display: flex; gap: 10px; margin-top: 22px; }

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--paper);
  border-radius: 50%;
}
.social:hover { background: var(--sky); }

.footer-nav { display: flex; gap: 70px; }

.footer-col { display: flex; flex-direction: column; gap: 14px; width: 230px; flex: none; }

.footer-col-head {
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--sky);
}

.footer-col a { font-size: 13.5px; line-height: 1.5; color: var(--paper); }
.footer-col a:hover { color: var(--sky); }

.ghost-wrap { margin-top: 46px; overflow: hidden; text-align: center; }

.ghost {
  font-family: Manrope, sans-serif;
  font-size: 190px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: .84;
  color: var(--ghost);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--on-blue-ln);
  font-size: 12px;
  line-height: 1.5;
  color: var(--sky);
  text-align: center;
}
