/* ===========================
   Бело-зеленый гос-стиль (без градиентов)
   =========================== */

:root{
  --bg: #f3f7f4;
  --card: #ffffff;

  --text: #0b1220;
  --muted: #556070;

  --green: #15803d;        /* основной зелёный */
  --green-dark: #0f5a2b;   /* тёмный зелёный */
  --green-soft: rgba(21, 128, 61, 0.10);

  --border: rgba(15, 30, 60, 0.12);

  --shadow-sm: 0 8px 18px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 18px 40px rgba(11, 18, 32, 0.10);

  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Верхняя линия */
.govline{
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
}

.govline__container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.govline__left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.govline__flag{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.14);
}

.govline__title{
  opacity: 0.92;
  font-weight: 700;
}

.govline__right{
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.95;
}

.govline__link{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.govline__link:hover{
  text-decoration: underline;
}

.govline__dot{
  opacity: 0.7;
}

/* Шапка */
.header{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header__container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.identity{
  display: flex;
  align-items: center;
  gap: 12px;
}

.identity__logo{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 16px 26px rgba(21, 128, 61, 0.25);
  display: grid;
  place-items: center;
}

.identity__logoText{
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 15px;
}

.identity__name{
  font-weight: 900;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.1;
}

.identity__desc{
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

/* Меню */
.menu{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu__link{
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.menu__link:hover{
  background: var(--green-soft);
  border-color: rgba(21, 128, 61, 0.18);
  color: var(--green-dark);
}

/* Основное */
.main{
  padding: 16px 16px 36px;
}

/* Cover */
.cover{
  padding: 18px 0 26px;
}

.cover__container{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 960px){
  .cover__container{
    grid-template-columns: 1fr;
  }
}

/* левая часть */
.cover__left{
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 26px;
}

.cover__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(21, 128, 61, 0.18);
  font-weight: 900;
  color: var(--green-dark);
  font-size: 13px;
}

.cover__badgeIcon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(21, 128, 61, 0.18);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.cover__title{
  margin: 14px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--text);
}

.cover__text{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 75ch;
}

/* Большая кнопка */
.downloadBox{
  margin-top: 8px;
}

.downloadBtn{
  display: block;
  text-decoration: none;
  border-radius: 22px;
  padding: 18px 18px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 22px 46px rgba(21, 128, 61, 0.26);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.downloadBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(21, 128, 61, 0.30);
}

.downloadBtn:active{
  transform: translateY(1px);
  box-shadow: 0 16px 38px rgba(21, 128, 61, 0.22);
}

.downloadBtn__big{
  display: block;
  font-size: 21px;
  font-weight: 1000;
  letter-spacing: 0.2px;
}

.downloadBtn__small{
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.95;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 10px;
  border-radius: 999px;
}

.downloadBox__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip{
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

/* Правая панель */
.cover__right{
  display: grid;
}

.panel{
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.panel__title{
  font-weight: 1000;
  color: var(--green-dark);
  letter-spacing: 0.2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.panel__item{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 30, 60, 0.10);
  background: #fbfcff;
  margin-bottom: 10px;
}

.panel__label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.panel__value{
  margin-top: 3px;
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}

.panel__tip{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(21, 128, 61, 0.08);
  border: 1px solid rgba(21, 128, 61, 0.16);
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

/* Секции ниже */
.section{
  padding: 18px 0 30px;
}

.section__container{
  max-width: 1180px;
  margin: 0 auto;
}

.section__title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: 0.2px;
  color: var(--text);
}

.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 960px){
  .grid{
    grid-template-columns: 1fr;
  }
}

.box{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.box__title{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 1000;
  color: var(--green-dark);
}

.box__text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.14);
}

.note__title{
  font-weight: 1000;
  color: var(--green-dark);
  font-size: 13px;
}

.note__value{
  margin-top: 6px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

/* Футер */
.footer{
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer__container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.footer__muted{
  opacity: 0.86;
}

/* Доступность */
a:focus-visible{
  outline: 3px solid rgba(21, 128, 61, 0.35);
  outline-offset: 3px;
  border-radius: 12px;
}