[hidden]{display:none!important}
.kau-modal[hidden]{display:none!important}

@font-face {
  font-family: "TT Hoves";
  src: url("../fonts/TTHoves-Regular.woff2") format("woff2"),
       url("../fonts/TTHoves-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Hoves";
  src: url("../fonts/TTHoves-Medium.woff2") format("woff2"),
       url("../fonts/TTHoves-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Hoves";
  src: url("../fonts/TTHoves-Bold.woff2") format("woff2"),
       url("../fonts/TTHoves-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --kau-container: min(1440px, 92vw);
}

:root{
  --kau-text:#0f172a;
  --kau-white:#fff;
  --kau-blue:#1f6fff;
  --kau-radius: 18px;
}
*{box-sizing:border-box}
body{margin:0;font-family: "TT Hoves", Arial, sans-serif; color:var(--kau-text)}
a{color:inherit;text-decoration:none}
html.kau-lock, body.kau-lock{overflow:hidden}

/* HEADER */
.kau-header{
  position:fixed; left:0; top:0; width:100%;
  z-index:50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: transparent;
	background:#aaa;
}
.kau-header.is-scrolled{
  background: #003369;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.kau-header__inner{
  width: var(--kau-container);
  margin: 0 auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;

  padding:14px 0; /* ВАЖНО: без боковых паддингов */
}
.kau-iconbtn{
  appearance:none; border:0; background:transparent; cursor:pointer;
  color:var(--kau-white); font-size:18px;
  width:42px; height:42px; display:grid; place-items:center;
  border-radius:999px;
}
.kau-iconbtn:hover{background: rgba(255,255,255,.12)}
.kau-header__brand{display:flex; align-items:center}
.kau-header__brand .custom-logo,
.kau-logo-img{
  max-height:52px;
  width:auto;
}

/* Burger icon */
.kau-burger{width:18px;height:2px;background:var(--kau-white);position:relative;display:block}
.kau-burger:before,.kau-burger:after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--kau-white)}
.kau-burger:before{top:-6px}
.kau-burger:after{top:6px}

/* BACKDROP */
.kau-backdrop{position:fixed; inset:0; background: rgba(2,6,23,.45); z-index:60}

/* OFFCANVAS */
.kau-offcanvas{
  position:fixed; top:0; left:0; height:100vh; width:min(360px,86vw);
  background:#0b1220; color:#fff; z-index:70;
  transform: translateX(-102%);
  transition: transform .25s ease;
  padding:18px;
}
.kau-offcanvas.is-open{transform: translateX(0)}
.kau-offcanvas__top{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px}
.kau-menu--mobile{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.kau-menu--mobile a{display:block; padding:12px; border-radius:12px; background: rgba(255,255,255,.06)}

/* SEARCH */
.kau-search{
  position:fixed; inset:0; z-index:80;
  background: rgba(2,6,23,.75);
  display:grid; place-items:center;
}
.kau-search__inner{width:min(960px,92vw)}
.kau-search__form{
  display:grid; grid-template-columns: 1fr auto auto; gap:10px;
  background: rgba(255,255,255,.08);
  padding:14px; border-radius:999px;
  backdrop-filter: blur(10px);
}
.kau-search__input{border:0; outline:none; background:transparent; color:#fff; font-size:18px; padding:10px 14px}
.kau-search__btn{border:0; cursor:pointer; padding:10px 18px; border-radius:999px; background: var(--kau-blue); color:#fff; font-weight:700}
.kau-search__close{border:0; cursor:pointer; padding:10px 16px; border-radius:999px; background: rgba(255,255,255,.12); color:#fff; font-weight:700}

.kau-ic{display:block}

.kau-header__right { display:flex; }

/* HERO */
.kau-hero{
  position:relative; min-height:78vh;
  padding-top:76px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.kau-hero__bg{position:absolute; inset:0; background-size:cover; background-position:center; filter:saturate(1.05)}
.kau-hero__bg:after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg,
      rgba(5, 22, 45, .82) 0%,
      rgba(5, 22, 45, .62) 40%,
      rgba(5, 22, 45, .10) 100%
    );
}
.kau-hero__content{position:relative; width:min(1440px,92vw); margin:0 auto; padding:52px 0 56px; color:#fff}
.kau-hero__title{margin:0 0 24px; font-size:70px; font-weight:700; line-height:1.02; width:50%;}
.kau-hero__subtitle{margin:0 0 34px; font-size:22px; opacity:.9}

.kau-btn{border:0; cursor:pointer; display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:14px; font-weight:800}
.kau-btn--pill{
  border-radius:999px;
  background:#fff;
  color:#0b1220;
  padding:10px 14px;
  gap:12px;
}

.kau-btn__icon{
  width:32px;
  height:32px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: var(--kau-blue);
  color:#fff; /* SVG будет белым */
}

.kau-btn__text { font-weight: 500; font-size:16px; }

/* MODAL */
.kau-modal{position:fixed; inset:0; z-index:90; display:grid; place-items:center; background: rgba(2,6,23,.65)}
.kau-modal__dialog{width:min(560px,92vw); background:#fff; border-radius:var(--kau-radius); box-shadow:0 20px 70px rgba(0,0,0,.25); padding:16px}
.kau-modal__top{display:flex; align-items:center; justify-content:space-between; margin-bottom:12px}
.kau-modal__title{font-weight:900; font-size:18px}
.kau-modal .kau-iconbtn{color:#0b1220}
.kau-modal .kau-iconbtn:hover{background: rgba(15,23,42,.06)}
.kau-form__grid{display:grid; gap:10px; margin-bottom:12px}
.kau-input,.kau-textarea{width:100%; padding:12px 14px; border-radius:14px; border:1px solid rgba(15,23,42,.12); outline:none}
.kau-btn--primary{width:100%; background: var(--kau-blue); color:#fff; border-radius:14px; padding:14px 18px}
.kau-note{margin:10px 0 0; font-size:12px; color: rgba(15,23,42,.65)}

/* FOOTER */
.kau-footer{padding:24px 0; background:#1E3563; color:#fff}
.kau-footer__inner{width:min(1440px,92vw); margin:0 auto; opacity:.85; font-size:14px}



.kau-header__left{display:flex; align-items:center; gap:14px}
.kau-access{
  display:flex; align-items:center; gap:8px;
  color:#fff; opacity:.95;
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
}
.kau-access:hover{background: rgba(255,255,255,.12)}

.kau-lang{
  display:flex; align-items:center; gap:6px;
  border:0; cursor:pointer;
  background: transparent;
  color:#fff;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}
.kau-lang:hover{background: rgba(255,255,255,.12)}



.kau-langwrap{position:relative; display:flex; align-items:center}

.kau-lang{
  display:flex; align-items:center; gap:6px;
  border:0; cursor:pointer;
  background: transparent;
  color:#fff;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}
.kau-lang:hover{background: rgba(255,255,255,.12)}
.kau-lang__code{text-transform:uppercase; letter-spacing:.02em}

.kau-langdd{
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 84px;
  background: rgba(11,18,32,.92);
  color:#fff;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.kau-langitem{
  display:flex;
  padding:10px 12px;
  border-radius: 12px;
  color:#fff;
  text-transform:uppercase;
  font-weight:700;
}
.kau-langitem:hover{background: rgba(255,255,255,.10)}
.kau-langitem.is-active{background: rgba(255,255,255,.14)}


/* NEWS */
.kau-wrap{width:var(--kau-container); margin:0 auto}
.kau-news{padding:54px 0 20px; background:#fff}
.kau-news__top{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px}
.kau-h2{margin:0; font-size:50px; letter-spacing:.02em; font-weight:700}
.kau-link{color:var(--kau-blue); font-weight:700}

.kau-news__grid{display:grid; grid-template-columns: 1.1fr .95fr; gap:22px}
@media (max-width: 980px){ .kau-news__grid{grid-template-columns:1fr; } }

.kau-newsbig{
  border-radius:24px;
  overflow:hidden;
  position:relative;
  box-shadow: 0 18px 55px rgba(15,23,42,.10);
  background:#0b1220;
	min-height:450px;
}
.kau-newsbig__media{display:block; position:relative; height: 360px}
.kau-newsbig__media img{width:100%; height:100%; object-fit:cover; display:block; filter: saturate(1.05)}
.kau-newsbig__media:after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.05) 0%, rgba(2,6,23,.70) 72%, rgba(2,6,23,.85) 100%);
}
.kau-date{
  position:absolute; top:16px; left:16px;
  background: rgba(255,255,255,.22);
  color:#fff; font-weight:500; font-size:16px;
  padding:14px 20px; border-radius:999px;
  backdrop-filter: blur(8px);
  z-index:2;
}
.kau-newsbig__content{
  position:absolute; left:40px; right:40px; bottom:40px;
  color:#fff; z-index:2;
	
}
.kau-newsbig__title{margin:0 0 8px; font-size:22px; font-weight:900; line-height:1.1; margin-bottom:20px;}
.kau-newsbig__excerpt{margin:0 0 10px; opacity:.92; font-size:14px; line-height:1.35; margin-bottom:20px;}

.kau-more{color:var(--kau-blue); font-weight:500; font-size:16px;}
.kau-newsbig .kau-more{color:#0059FF}

.kau-newslist{display:grid; gap:16px}
.kau-newscard{
  display:grid; grid-template-columns: 170px 1fr;
  gap:14px; 
}
.kau-newscard__img{
  border-radius:18px; overflow:hidden; display:block;
}
.kau-newscard__img img{width:100%; height:100%; object-fit:cover; display:block}

.kau-newscard__title{margin:0 0 6px; font-size:18px; font-weight:500; line-height:1.2}
.kau-newscard__excerpt{margin:0 0 10px; font-size:14px; color: rgba(15,23,42,.70); line-height:1.3}
.kau-newscard__meta{display:flex; align-items:center; justify-content:flex-start; gap:10px}
.kau-newscard__date{font-size:12px; color: rgba(15,23,42,.55); font-weight:700}

.kau-empty{
  padding:18px;
  border-radius:16px;
  background: rgba(15,23,42,.04);
}


/* PROGRAMS */
.kau-prog{padding:90px 0 90px; background:#fff}
.kau-prog__top{display:flex; gap:16px; align-items:flex-start; justify-content:space-between; margin-bottom:18px; flex-direction: column}

.kau-tabs{display:flex; gap:10px; background: rgba(15,23,42,.04); padding:6px; border-radius:999px}
.kau-tab{
  border:0; cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  font-weight:500;
  background: transparent;
	font-size:20px;
}
.kau-tab.is-active{background: var(--kau-blue); color:#fff}

.kau-prog__group{margin-top:18px}
.kau-prog__group-title{font-weight:500; margin:24px 0 15px; color: rgba(15,23,42,.85); font-size:20px;}

.kau-prog__grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 1200px){ .kau-prog__grid{grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 700px){ .kau-prog__grid{grid-template-columns: repeat(1, 1fr);} .kau-h2{font-size:30px; max-width:50%;} .kau-hero__title{font-size:45px;} .vision{display:none;}}

.kau-card{
  border-radius:22px;
  overflow:hidden;
  border:2px solid rgba(15,23,42,.10);
  background:#fff;
  transition: .18s ease;
}
.kau-card:hover{transform: translateY(-2px); border-color: rgba(31,111,255,.35)}

.kau-card__img{position:relative; height:120px; background:#f4f6fb}
.kau-card__img img{width:100%; height:100%; object-fit:cover; display:block}

.kau-chip{
  position:absolute; top:10px; left:10px;
  background: var(--kau-blue);
  color:#fff;
  font-weight:500;
  font-size:14px;
  padding:8px 14px;
  border-radius:999px;
}
.kau-arrow{
  position:absolute; top:10px; right:10px;
  width:28px; height:28px;
  border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.90);
  color:#111827;
  font-weight:900;
}
.kau-card__body{padding:12px 12px 14px}
.kau-card__title{font-weight:500; font-size:18px; line-height:1.2; margin-bottom:8px}
.kau-card__meta{font-size:14px; color: #858480; font-weight:400}

/* CARD (program) — как на макете */
.kau-card{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  border:2px solid rgba(15,23,42,.10);
  transition:.18s ease;
	min-width:260px;
}

/* картинка занимает примерно верхнюю половину */
.kau-card__img{
  position:relative;
  height:140px;
  background:#f4f6fb;
}
.kau-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* плавный белый градиент снизу картинки */
.kau-card__fade{
  position:absolute;
  left:0; right:0; bottom:0;
  height:64px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.92) 78%, rgba(255,255,255,1) 100%);
  pointer-events:none;
  z-index:2;
}

/* белый блок текста “наезжает” на картинку */
.kau-card__body{
  position:relative;
  z-index:3;
  margin-top:-22px;          /* вот этот “наезд” */
  margin-left:5px;
  margin-right:5px;
	margin-bottom:5px;
  padding:19px 18px;
  border-radius:26px;        /* ВСЕ углы со скруглением */
  background:#fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
	min-height:120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.kau-card__title{
  font-weight:500;
  font-size:18px;
  line-height:1.2;
  margin-bottom:8px;
}
.kau-card__meta{
  font-size:14px;
  color: rgba(15,23,42,.55);
  font-weight:400;
}

/* code chip + стрелка */


.kau-arrow{
  position:absolute; top:10px; right:10px;
  width:28px; height:28px;
  border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.92);
  color:#111827;
  font-weight:900;
  z-index:4;
}

/* СИНИЙ overlay при hover — на картинку */
.kau-card__ov{
  position:absolute;
  inset:0;
  background: rgba(31,111,255,.28);
  opacity:0;
  transition:.18s ease;
  z-index:3;
  pointer-events:none;
}

/* СИНИЙ overlay при hover — на белый блок */
.kau-card__ov2{
  position:absolute;
  left:8px; right:8px;
  bottom:8px;
  height:calc(100% - 126px);   /* примерно зона текста */
  border-radius:18px;
  background: rgba(31,111,255,.14);
  opacity:0;
  transition:.18s ease;
  pointer-events:none;
  z-index:4; /* поверх белого блока, но текст остаётся читаемым */
  mix-blend-mode: multiply;
}

/* hover эффекты */
.kau-card:hover{
  transform: translateY(-2px);
  border-color: rgba(31,111,255,.35);
}
.kau-card:hover .kau-card__ov{ opacity:1; }
.kau-card:hover .kau-card__ov2{ opacity:1; }
.kau-card:hover .kau-card__body{
  border-color: rgba(31,111,255,.35);
}


/* LEAD */
.kau-lead{padding:56px 0 70px; background:#fff}
.kau-lead__grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap:22px;

}
@media (max-width: 980px){
  .kau-lead__grid{grid-template-columns:1fr}
}

.kau-lead__h{
  margin:0 0 10px;
  font-weight:700;
  font-size:50px;
  line-height:1.02;
  letter-spacing:.02em;
}
@media (max-width: 520px){ .kau-lead__h{font-size:34px;} }

.kau-lead__p{
  margin:0;
  max-width:420px;
  color: rgba(15,23,42,.70);
  font-size:14px;
  line-height:1.5;
}

.kau-lead__card{
  background: var(--kau-blue);
  border-radius:26px;
  padding:26px;
}

.kau-leadform__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 520px){
  .kau-leadform__grid{grid-template-columns:1fr}
}

.kau-inp{
  width:100%;
  border:0;
  border-radius:999px;
  padding:14px 16px;
  outline:none;
  background: rgba(255,255,255,.95);
  color:#9A9A9A;
  font-weight:500;
}
.kau-inp::placeholder{color: rgba(15,23,42,.45); font-weight:500}

.kau-ta{
  grid-column: 1 / -1;
  border-radius:20px;
  min-height:110px;
  resize:vertical;
  padding-top:14px;
}

.kau-leadform__bottom{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.kau-leadform__status{
  color: rgba(255,255,255,.92);
  font-weight:700;
  font-size:13px;
  min-height:18px;
}

.kau-send{
  display:flex;
  align-items:center;
  gap:12px;
  border:0;
  cursor:pointer;
  background:#fff;
  color:#0b1220;
  font-weight:500;
  padding:15px 20px;
  border-radius:999px;
	font-size:18px;
}
.kau-send__ic{
  width:32px; height:32px;
  border-radius:999px;
  display:grid; place-items:center;
  background: var(--kau-blue);
  color:#fff;
  font-weight:900;
}


/* FOOTER */
.kau-footer{padding:90px 0 30px;background:#1E3563;}
.kau-footer__grid{
  display:grid;
  grid-template-columns:1.2fr 2fr 1.6fr 1.2fr;
  gap:30px;
}
@media(max-width:980px){
  .kau-footer__grid{grid-template-columns:1fr}
}

.kau-footer h4{
  margin:0 0 12px;
  font-size:16px;
  font-weight:500;
  color:#fff;
  text-transform:uppercase;
}

.kau-footer__logo img{max-width:140px}

.kau-footermenu{list-style:none;padding:0;margin:0;}
.kau-footermenu li{margin:0 0 8px}
.kau-footermenu a{color:#8E9AB1;font-weight:400;text-decoration:none}
.kau-footermenu a:hover{color:var(--kau-blue)}

.kau-footer__contacts a{display:block;margin-top:10px;color:#8E9AB1;}
.kau-footer__contacts a:hover{color:var(--kau-blue)}

.kau-socials{display:flex;gap:10px}
.kau-socials a{
  width:36px;height:36px;
  border-radius:999px;
  background:var(--kau-blue);
  display:grid;place-items:center;
  color:#fff;
  font-weight:900;
}

.kau-footer__bottom{
  margin-top:40px;
  font-size:12px;
  color:#64748b;
}

.kau-footer__nav {
	display: flex;
	gap:50px;
	 text-transform: uppercase;
}

.kau-footer__contacts {
	color:#8E9AB1;
	font-size:16px;
	font-weight:500;
}

/* FULLSCREEN TOP MENU */
#kauOffcanvas.kau-menu-overlay{
  position:fixed;
  inset:0;
  background:#0b0b0b;
  color:#fff;
  z-index:9999;

  transform:translateY(-100%);
  transition:transform .5s cubic-bezier(.77,0,.18,1);
}

#kauOffcanvas.kau-menu-overlay.is-open{
  transform:translateY(0);
}

.kau-menu-inner{
  height:100%;
  padding:40px 60px;
  display:flex;
  flex-direction:column;
}

.kau-menu-close{
  position:absolute;
  top:30px;
  left:30px;
  background:none;
  border:0;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

.kau-menu-nav{margin-top:110px}

.kau-menu-list{list-style:none;padding:0;margin:0}
.kau-menu-list li{margin:0 0 26px}
.kau-menu-list a{
  font-size:38px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}
.kau-menu-list a:hover{color:#1F6FFF}

.kau-menu-bottom{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.kau-menu-langs{
  display:flex;
  gap:18px;
  align-items:center;
}
.kau-langcode{
  color:#9aa3ad;
  font-weight:800;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.kau-langcode.is-active{
  color:#1F6FFF; /* активный как у MNU */
}
.kau-langcode:hover{
  color:#fff;
}


/* Mega menu (как на скрине) */
.kau-mega{
  position:fixed; inset:0;
  background:#233a60; /* сине-ночной */
  color:#fff;
  z-index:9999;
  transform:translateY(-100%);
  transition:transform .45s cubic-bezier(.77,0,.18,1);
}
.kau-mega.is-open{transform:translateY(0)}
.kau-mega__inner{height:100%; position:relative; padding:28px 36px}

.kau-mega__close{
  position:absolute; left:28px; top:20px;
  border:0; background:none; color:#fff;
  font-size:34px; cursor:pointer; opacity:.9;
}

.kau-mega__top{height:56px}
.kau-mega__topright{
  position:absolute; right:32px; top:18px;
  display:flex; align-items:center; gap:16px;
}
.kau-mega__lang{display:flex; align-items:center; gap:8px; opacity:.95}
.kau-mega__langcode{font-weight:700; letter-spacing:.04em}
.kau-mega__chev{opacity:.8}

.kau-mega__grid{
  height:calc(100% - 56px);
  display:grid;
  grid-template-columns: 360px 1fr 520px;
  gap:0;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
}

/* vertical separators like figma */
.kau-mega__left, .kau-mega__mid{
  border-right:0px solid rgba(255,255,255,.08);
}

.kau-mega__left{padding:42px 26px}
.kau-mega__mid{padding:42px 36px}
.kau-mega__right{display:flex; align-items:center; justify-content:center}

.kau-mega-main{list-style:none; margin:0; padding:0}
.kau-mega-mainitem{margin:0 0 26px}
.kau-mega-mainlink{
  font-size:22px; font-weight:700;
  color:#fff; text-decoration:none;
  display:flex; align-items:center; gap:14px;
  opacity:.95;
}
.kau-mega-mainlink.is-active{
  color:#6ea0ff;
  position:relative;
}
.kau-mega-mainlink.is-active::before{
  content:"";
  width:4px; height:24px;
  background:#6ea0ff;
  border-radius:999px;
  display:inline-block;
}

/* middle list */
.kau-mega__midtitle{font-size:18px; font-weight:700; opacity:.65; margin-bottom:18px}
.kau-mega__midlist a{
  display:block;
  color:#cfe0ff;
  text-decoration:none;
  font-size:18px;
  margin:0 0 16px;
  opacity:.7;
}
.kau-mega__midlist a:hover{opacity:1}

/* right card */
.kau-mega-card{
  width:360px;
  height:520px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:22px;
}
.kau-mega-card__logo img{min-width:170px; height:auto}
.kau-mega-card__cap{font-size:12px; letter-spacing:.12em; opacity:.8}

.kau-mega-card__socials{display:flex; gap:12px}
.kau-mega-soc{
  width:34px; height:34px;
  border-radius:999px;
  background:#2c60ff;
  display:grid; place-items:center;
  text-decoration:none;
}
.kau-mega-soc__dot{
  width:8px; height:8px;
  background:#fff; border-radius:999px; opacity:.95;
}


/* В ЛЕВОЙ колонке скрываем вложенные UL, чтобы не было буллетов */
.kau-mega__left ul.kau-mega-sub,
.kau-mega__left ul.sub-menu {
  display: none !important;
}

.kau-mega-empty{
  opacity:.45;
  font-size:16px;
}

.kau-mega__midtitle{
  opacity:.45;
  font-weight:600;
}

.kau-mega-midlink{
  display:block;
  text-decoration:none;
  color:rgba(255,255,255,.45);
  font-size:18px;
  margin:0 0 14px;
  transition:color .2s ease, opacity .2s ease;
}

.kau-mega-midlink:hover{
  color:#6ea0ff;
  opacity:1;
}

/* PAGE: Mission & Vision */
.kau-pagehero{
  position:relative;
  min-height:430px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:140px 0 78px;
}

.kau-pagehero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16,34,64,.45) 0%, rgba(16,34,64,.7) 100%);
}

.kau-pagehero__content{
  position:relative;
  z-index:2;
}

.kau-pagehero__badge{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:#2f5cff;
  color:#fff;
  font-size:14px;
  font-weight:700;
  margin-bottom:16px;
}

.kau-pagehero__title{
  margin:0;
  color:#fff;
  font-size:50px;
  line-height:0.95;
  font-weight:700;
  max-width:700px;
	font-family: "TT Hoves";
}

.kau-mission-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-28px;
}

.kau-mission-section__shell{
  width:100%;

  background:#fff;
  border-radius:36px 36px 0 0;
  padding:44px 0 60px;
  overflow:hidden;
}

.kau-mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:10px;
  position:relative;
  z-index:3;
}

.kau-info-card{
  background:#F6F8FF;
  border-radius:30px;
  padding:30px 32px;

}

.kau-info-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:40px;
}

.kau-info-card__head h2{
  margin:0;
  font-size:30px;
  line-height:1;
  font-weight:700;
  color:#121826;
}

.kau-info-card__icon{
  color:#6f89d9;
  display:inline-flex;
}

.kau-info-card__body p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.65;
  color:#3a4458;
}

.kau-info-card__body p:last-child{
  margin-bottom:0;
}

.kau-values{
  margin-top:48px;
}

.kau-values__title{
  margin:0 0 8px;
  font-size:45px;
  line-height:1;
  font-weight:600;
  color:#1A150A;
	font-family: "Verdana";
}

.kau-values__subtitle{
  margin:0 0 28px;
  color:#495164;
  font-size:16px;
}

.kau-values__grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:16px;
}

.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#20283a;
}

@media (max-width: 1200px){
  .kau-values__grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 900px){
  .kau-pagehero{
    min-height:340px;
    padding:120px 0 36px;
  }

  .kau-pagehero__title{
    font-size:42px;
  }

  .kau-mission-grid{
    grid-template-columns:1fr;
  }

  .kau-values__grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .kau-pagehero__title{
    font-size:34px;
  }

  .kau-values__title{
    font-size:34px;
  }

  .kau-values__grid{
    grid-template-columns:1fr;
  }

  .kau-info-card,
  .kau-value-card{
    padding:20px;
  }
	
	.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
		width:100% !important;
	}
}


.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link{
  text-decoration:none;
  color:inherit;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#4b5568;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
}

.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#4b5568;
}

.kau-values-slider__nav{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:#2f5cff;
  color:#fff;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.45;
  cursor:default;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
}

.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#4b5568;
}

.kau-values-slider__nav{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:#2f5cff;
  color:#fff;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.45;
  cursor:default;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
  display:flex;
}

.kau-value-card{
  width:100%;
  height:100%;
  min-height:190px;
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card__icon svg{
  width:24px;
  height:24px;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.5;
  color:#4b5568;
}

/* Центрированная навигация */
.kau-values-slider__controls{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  color:#4c6fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  padding:0;
  font-size:28px;
  line-height:1;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.35;
  cursor:default;
}

.kau-values-slider__pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-width:90px;
}

.kau-values-bullet{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  background:#d8ddea;
  padding:0;
  cursor:pointer;
}

.kau-values-bullet.is-active{
  background:#4c6fff;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
  display:flex;
}

.kau-value-card{
  width:100%;
  height:100%;
  min-height:190px;
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.5;
  color:#4b5568;
}

.kau-values-slider__controls{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  color:#4c6fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  padding:0;
  font-size:28px;
  line-height:1;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.35;
  cursor:default;
}

.kau-values-slider__pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-width:90px;
}

.kau-values-bullet{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  background:#d8ddea;
  padding:0;
  cursor:pointer;
}

.kau-values-bullet.is-active{
  background:#4c6fff;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	width:30%;
}


.kau-info-card__icon{
  color:#6f89d9;
  display:inline-flex;
  flex:0 0 auto;
  margin-left:16px;
}

.kau-info-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-info-card__icon img{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
}


/* HISTORY PAGE */
.kau-history-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-history-section__shell{
  width:100%;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:34px 0 72px;
  overflow:hidden;
}

.kau-history-intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
	background: #F6F8FF;
	border-radius: 30px;
}

.kau-history-intro-card{
  background:#F6F8FF;
  border-radius:30px;
  padding:30px 34px;
}

.kau-history-intro-card p{
  margin:0 0 16px;
  font-size:18px;
  line-height:1.65;
  color:#1A150A;
  font-family:"TT Hoves", sans-serif;
  font-weight:400;
}

.kau-history-intro-card p:last-child{
  margin-bottom:0;
}

.kau-history-years{
  margin:14px 0 72px;
  overflow:hidden;
  background:#F6F8FF;
  border-radius:30px;
}

.kau-history-years .swiper-wrapper{
  align-items:center;
  padding:24px 30px;
}

.kau-history-year-pill{
  width:auto !important;
  border:0;
  background:#fff;
  color:#3259FB;
  border-radius:999px;
  padding:18px 26px;
  font-weight:500;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  transition:.6s ease;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
  font-family:"TT Hoves", sans-serif;
}

.kau-history-year-pill:hover {
	background:#2753ff;
  color:#fff;
  box-shadow:0 0 1px 5px rgba(39,83,255,.22);
}

.kau-history-year-pill.is-past,
.kau-history-year-pill.is-active{
  background:#2753ff;
  color:#fff;
  box-shadow:0 0 1px 5px rgba(39,83,255,.22);
}



.kau-history-title{
  margin:0 0 74px;
  text-align:center;
  font-size:50px;
  line-height:1;
  font-weight:700;
  color:#1A150A;
	font-family:"TT Hoves", sans-serif;
}

/* TIMELINE */
.kau-history-timeline{
  position:relative;
  margin-top:10px;
}

/* светлый трек */
.kau-history-timeline::before{
  content:"";
  position:absolute;
  left:71px;
  top:0;
  bottom:0;
  width:4px;
  background:#DCE5FF;
  border-radius:999px;
  z-index:0;
}

/* синий прогресс */
.kau-history-timeline__progress{
  position:absolute;
  left:71px;
  top:0;
  width:4px;
  height:0;
  background:#2753ff;
  border-radius:999px;
  z-index:1;
  transition:height .7s ease;
}

.kau-history-row{
  position:relative;
  display:grid;
  grid-template-columns:142px 1fr;
  gap:28px;
  padding-bottom:30px;
}

.kau-history-row:last-child{
  padding-bottom:0;
}

.kau-history-row__year{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.kau-history-row__year span{
  min-width:72px;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  color:#2753ff;
  font-size:18px;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #2753ff;
  box-shadow:0 2px 10px rgba(15,23,42,.06);
  font-family:"TT Hoves", Arial, sans-serif;
  transition:background .6s ease, color .6s ease, border-color .6s ease, box-shadow .6s ease;
}

/* пройденные и активный */
.kau-history-row.is-past .kau-history-row__year span,
.kau-history-row.is-active .kau-history-row__year span{
  background:#2753ff;
  color:#fff;
  border-color:#2753ff;
  box-shadow:0 0 1px 5px rgba(39,83,255,.16);
}

.kau-history-row__body{
  padding-bottom:22px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.kau-history-row:last-child .kau-history-row__body{
  border-bottom:0;
  padding-bottom:0;
}

.kau-history-row__title{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#121826;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-history-row__text p{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.65;
  color:#1A150A;
  font-family:"TT Hoves", sans-serif;
	font-weight:400;
}

.kau-history-row__text p:last-child{
  margin-bottom:0;
}

.kau-history-row__gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
  max-width:760px;
}

.kau-history-row__img img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  border-radius:18px;
}

@media (max-width: 980px){
  .kau-history-intro-grid{
    grid-template-columns:1fr;
  }

  .kau-history-title{
    font-size:36px;
  }

  .kau-history-row{
    grid-template-columns:120px 1fr;
    gap:22px;
  }

  .kau-history-timeline::before,
  .kau-history-timeline__progress{
    left:59px;
  }

  .kau-history-row__gallery{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .kau-history-section{
    margin-top:-18px;
  }

  .kau-history-section__shell{
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-history-intro-card{
    border-radius:22px;
    padding:20px;
  }

  .kau-history-intro-card p{
    font-size:15px;
  }

  .kau-history-years{
    border-radius:22px;
  }

  .kau-history-years .swiper-wrapper{
    padding:16px 18px;
  }

  .kau-history-year-pill{
    padding:14px 18px;
    font-size:14px;
  }

  .kau-history-title{
    font-size:32px;
    margin-bottom:26px;
  }

  .kau-history-timeline::before,
  .kau-history-timeline__progress{
    left:27px;
  }

  .kau-history-row{
    grid-template-columns:56px 1fr;
    gap:14px;
    padding-bottom:22px;
  }

  .kau-history-row__year span{
    min-width:54px;
    height:34px;
    font-size:12px;
    padding:0 10px;
    border-width:2px;
  }

  .kau-history-row__gallery{
    grid-template-columns:1fr;
  }

  .kau-history-row__img img{
    height:180px;
  }
}



/* Версия для слабовидящих */

/* =========================================
   Версия для слабовидящих / автоматический dark mode
========================================= */

html.kau-a11y,
html.kau-a11y body,
body.kau-a11y{
  background:#0b1220;
  color:#f3f7ff;
  line-height:1.7;
}

/* Плавность */
html.kau-a11y body,
html.kau-a11y .kau-header,
html.kau-a11y .kau-news,
html.kau-a11y .kau-prog,
html.kau-a11y .kau-lead,
html.kau-a11y .kau-footer,
html.kau-a11y .kau-card,
html.kau-a11y .kau-value-card,
html.kau-a11y .kau-info-card,
html.kau-a11y .kau-history-intro-card,
html.kau-a11y .kau-history-years,
html.kau-a11y .kau-history-section__shell,
html.kau-a11y .kau-mission-section__shell,
html.kau-a11y .kau-modal__dialog,
html.kau-a11y .kau-search__form,
html.kau-a11y .kau-langdd,
html.kau-a11y .kau-input,
html.kau-a11y .kau-textarea,
html.kau-a11y .kau-inp,
html.kau-a11y .kau-ta,
html.kau-a11y .kau-search__input{
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

/* Ссылки */
html.kau-a11y a{
  color:#8db7ff;
}
html.kau-a11y a:hover{
  color:#b7d1ff;
}

/* Основные секции */
html.kau-a11y .kau-news,
html.kau-a11y .kau-prog,
html.kau-a11y .kau-lead,
html.kau-a11y .kau-history-section,
html.kau-a11y .kau-mission-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

/* Контейнеры */
html.kau-a11y .kau-history-section__shell,
html.kau-a11y .kau-mission-section__shell,
html.kau-a11y .kau-modal__dialog{
  background:#10192b !important;
  color:#f3f7ff !important;
}

/* Карточки и светлые блоки */
html.kau-a11y .kau-history-intro-card,
html.kau-a11y .kau-info-card,
html.kau-a11y .kau-value-card,
html.kau-a11y .kau-card,
html.kau-a11y .kau-history-years,
html.kau-a11y .kau-history-intro-grid,
html.kau-a11y .kau-lead__card,
html.kau-a11y .kau-empty,
html.kau-a11y .kau-card__body{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

/* Картинка карточки */
html.kau-a11y .kau-card__img{
  background:#0f1728 !important;
}
html.kau-a11y .kau-card__fade{
  background:linear-gradient(180deg, rgba(16,25,43,0) 0%, rgba(16,25,43,.92) 78%, rgba(16,25,43,1) 100%) !important;
}

/* Заголовки */
html.kau-a11y .kau-h2,
html.kau-a11y .kau-lead__h,
html.kau-a11y .kau-values__title,
html.kau-a11y .kau-pagehero__title,
html.kau-a11y .kau-history-title,
html.kau-a11y .kau-info-card__head h2,
html.kau-a11y .kau-card__title,
html.kau-a11y .kau-newsbig__title,
html.kau-a11y .kau-newscard__title,
html.kau-a11y .kau-history-row__title,
html.kau-a11y .kau-value-card h3,
html.kau-a11y .kau-prog__group-title{
  color:#ffffff !important;
}

/* Вторичный текст */
html.kau-a11y .kau-info-card__body p,
html.kau-a11y .kau-history-intro-card p,
html.kau-a11y .kau-history-row__text p,
html.kau-a11y .kau-value-card__desc,
html.kau-a11y .kau-newscard__excerpt,
html.kau-a11y .kau-card__meta,
html.kau-a11y .kau-lead__p,
html.kau-a11y .kau-values__subtitle,
html.kau-a11y .kau-note,
html.kau-a11y .kau-footer__contacts,
html.kau-a11y .kau-footermenu a,
html.kau-a11y .kau-footer__bottom,
html.kau-a11y .kau-newscard__date,
html.kau-a11y .kau-mega__midtitle{
  color:#c8d7f0 !important;
}

/* Увеличим читаемость длинных текстов */
html.kau-a11y .kau-history-row__text p,
html.kau-a11y .kau-history-intro-card p,
html.kau-a11y .kau-info-card__body p{
  font-size:20px !important;
  line-height:1.75 !important;
}

/* Шапка */
html.kau-a11y .kau-header{
  background:rgba(7,12,22,.92) !important;
  backdrop-filter:blur(10px);
}
html.kau-a11y .kau-header.is-scrolled{
  background:rgba(7,12,22,.96) !important;
  box-shadow:0 8px 30px rgba(0,0,0,.35);
}

/* Кнопка переключения */
html.kau-a11y .kau-access{
  background:#1d2a44 !important;
  color:#fff !important;
  border:1px solid rgba(141,183,255,.28);
}
html.kau-a11y .kau-access:hover{
  background:#243454 !important;
}

/* Языки и иконки */
html.kau-a11y .kau-lang,
html.kau-a11y .kau-iconbtn,
html.kau-a11y .kau-search__close,
html.kau-a11y .kau-langitem{
  color:#fff !important;
}
html.kau-a11y .kau-langdd,
html.kau-a11y .kau-search__form{
  background:#10192b !important;
  border:1px solid rgba(141,183,255,.18);
}

/* Поля форм */
html.kau-a11y .kau-input,
html.kau-a11y .kau-textarea,
html.kau-a11y .kau-inp,
html.kau-a11y .kau-ta,
html.kau-a11y .kau-search__input{
  background:#0b1220 !important;
  color:#fff !important;
  border:1px solid rgba(141,183,255,.22) !important;
}
html.kau-a11y .kau-input::placeholder,
html.kau-a11y .kau-textarea::placeholder,
html.kau-a11y .kau-inp::placeholder,
html.kau-a11y .kau-ta::placeholder,
html.kau-a11y .kau-search__input::placeholder{
  color:#9fb4d8 !important;
}

/* Кнопки */
html.kau-a11y .kau-btn--pill,
html.kau-a11y .kau-send,
html.kau-a11y .kau-search__btn,
html.kau-a11y .kau-btn--primary{
  background:#2d6cff !important;
  color:#fff !important;
}
html.kau-a11y .kau-btn__icon,
html.kau-a11y .kau-send__ic,
html.kau-a11y .kau-arrow{
  background:#fff !important;
  color:#2d6cff !important;
}

/* Табуляция */
html.kau-a11y .kau-tabs{
  background:#162238 !important;
}
html.kau-a11y .kau-tab{
  color:#dbe8ff !important;
}
html.kau-a11y .kau-tab.is-active{
  background:#2d6cff !important;
  color:#fff !important;
}

/* Новости */
html.kau-a11y .kau-newsbig{
  background:#10192b !important;
}
html.kau-a11y .kau-newsbig__content,
html.kau-a11y .kau-date{
  color:#fff !important;
}
html.kau-a11y .kau-newscard{
  background:transparent !important;
}
html.kau-a11y .kau-more,
html.kau-a11y .kau-link{
  color:#8db7ff !important;
}

/* История */
html.kau-a11y .kau-history-title{
  color:#fff !important;
}
html.kau-a11y .kau-history-timeline::before{
  background:#24344f !important;
}
html.kau-a11y .kau-history-timeline__progress{
  background:#4c87ff !important;
}
html.kau-a11y .kau-history-row__body{
  border-bottom:1px solid rgba(255,255,255,.08) !important;
}
html.kau-a11y .kau-history-year-pill{
  background:#162238 !important;
  color:#aecdff !important;
  box-shadow:none !important;
}
html.kau-a11y .kau-history-year-pill:hover,
html.kau-a11y .kau-history-year-pill.is-past,
html.kau-a11y .kau-history-year-pill.is-active{
  background:#2d6cff !important;
  color:#fff !important;
  box-shadow:0 0 0 4px rgba(76,135,255,.18) !important;
}
html.kau-a11y .kau-history-row__year span{
  background:#162238 !important;
  color:#aecdff !important;
  border-color:#4c87ff !important;
}
html.kau-a11y .kau-history-row.is-past .kau-history-row__year span,
html.kau-a11y .kau-history-row.is-active .kau-history-row__year span{
  background:#2d6cff !important;
  color:#fff !important;
}

/* Мега меню */
html.kau-a11y .kau-mega{
  background:#08101d !important;
}
html.kau-a11y .kau-mega-card{
  background:#10192b !important;
  border-color:rgba(141,183,255,.18) !important;
}
html.kau-a11y .kau-mega__midlist a,
html.kau-a11y .kau-mega-midlink{
  color:#c8d7f0 !important;
}
html.kau-a11y .kau-mega-mainlink.is-active,
html.kau-a11y .kau-mega-midlink:hover{
  color:#8db7ff !important;
}

/* Футер */
html.kau-a11y .kau-footer{
  background:#08101d !important;
  color:#f3f7ff !important;
}
html.kau-a11y .kau-socials a,
html.kau-a11y .kau-mega-soc{
  background:#2d6cff !important;
}

/* Фокус клавиатурой */
html.kau-a11y a:focus-visible,
html.kau-a11y button:focus-visible,
html.kau-a11y input:focus-visible,
html.kau-a11y textarea:focus-visible{
  outline:2px solid #8db7ff;
  outline-offset:3px;
}



/* =========================
   HERO SLIDER
========================= */

.kau-hero-slider{
  position:relative;
  padding:0 0 34px;
  background:#fff;
  z-index:2;
}

.kau-hero-swiper{
  overflow:hidden;
}

.kau-hero-card{
  background:var(--kau-hero-bg, #f3f4f6);
  border-radius:0 0 28px 28px;
  overflow:hidden;
  position:relative;
}

.kau-hero-card__inner{
  min-height:620px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(380px, 540px);
  gap:24px;
  align-items:end;
  padding:54px 34px 0px;
}

.kau-hero-card__content{
  align-self:center;
  max-width:760px;
  padding-right:10px;
}

.kau-hero-card__title{
  margin:0 0 22px;
  color:#004b97;
  font-size:clamp(38px, 5vw, 74px);
  line-height:0.95;
  font-weight:800;
  letter-spacing:-0.02em;
  text-transform:uppercase;
}

.kau-hero-card__text{
  margin:0 0 26px;
  max-width:760px;
  color:#305c8b;
  font-size:20px;
  line-height:1.65;
}

.kau-hero-card__text p{
  margin:0 0 14px;
}

.kau-hero-card__text p:last-child{
  margin-bottom:0;
}

.kau-hero-card__actions{
  margin-bottom:34px;
}

.kau-hero-card .kau-btn{
  background:#fff;
  border-color:#f7931d;
  color:#1A150A;
}

.kau-hero-card .kau-btn:hover{
  background:#ea860d;
  border-color:#ea860d;
	color:#fff;
}

.kau-hero-card__stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  max-width:900px;
}

.kau-hero-stat{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:14px;
  align-items:start;
}

.kau-hero-stat__icon{
  color:#7c858f;
  line-height:1;
  margin-top:4px;
}

.kau-hero-stat__value{
  font-size:26px;
  line-height:1;
  font-weight:800;
  color:#004b97;
  margin-bottom:8px;
}

.kau-hero-stat__label{
  font-size:16px;
  line-height:1.35;
  color:#305c8b;
}

.kau-hero-card__media{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  height:100%;
}

.kau-hero-card__media img{
  display:block;
  width:auto;
  max-width:100%;
  max-height:600px;
  object-fit:contain;
}

.kau-hero-slider__pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:18px;
}

.kau-hero-slider__pagination .swiper-pagination-bullet{
  width:13px;
  height:13px;
  margin:0 !important;
  background:#cfd4da;
  opacity:1;
  transition:all .25s ease;
}

.kau-hero-slider__pagination .swiper-pagination-bullet-active{
  background:#f7931d;
  transform:scale(1.08);
}

@media (max-width: 1200px){
  .kau-hero-card__inner{
    min-height:560px;
    grid-template-columns:minmax(0, 1fr) minmax(300px, 430px);
  }

  .kau-hero-card__text{
    font-size:18px;
  }
}

@media (max-width: 991px){
  .kau-hero-card__inner{
    min-height:auto;
    grid-template-columns:1fr;
    gap:12px;
    padding:34px 22px 18px;
  }

  .kau-hero-card__content{
    max-width:none;
    padding-right:0;
  }

  .kau-hero-card__title{
    font-size:clamp(30px, 7.8vw, 52px);
    margin-bottom:16px;
  }

  .kau-hero-card__text{
    font-size:16px;
    margin-bottom:18px;
  }

  .kau-hero-card__actions{
    margin-bottom:22px;
  }

  .kau-hero-card__stats{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-hero-card__media{
    justify-content:center;
  }

  .kau-hero-card__media img{
    max-height:420px;
  }
}

@media (max-width: 575px){
  .kau-hero-slider{
    padding-bottom:24px;
  }

  .kau-hero-card{
    border-radius:0 0 20px 20px;
  }

  .kau-hero-card__inner{
    padding:26px 16px 16px;
  }

  .kau-hero-card__title{
    font-size:clamp(26px, 9vw, 42px);
  }

  .kau-hero-stat{
    grid-template-columns:34px 1fr;
    gap:12px;
  }

  .kau-hero-stat__value{
    font-size:22px;
  }

  .kau-hero-stat__label{
    font-size:15px;
  }

  .kau-hero-slider__pagination .swiper-pagination-bullet{
    width:11px;
    height:11px;
  }
}