/* ===== Fonts ===== */
@font-face {
    font-family: 'Noto Sans Armenian';
    src: url('../fonts/NotoSansArmenian-Regular.ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans Armenian';
    src: url('../fonts/NotoSansArmenian-Medium.ttf');
    font-weight: 500 600;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans Armenian';
    src: url('../fonts/NotoSansArmenian-Bold.ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf');
    font-weight: 400;
    font-display: swap;
}

/* ===== Design tokens (from Figma variables) ===== */
:root {
    --blue-800: #355c8c;
    --blue-1000: #203754;
    /* PrimaryBlue Main */
    --blue-700: #5a7aa2;
    --blue-200: #dde5ee;
    --blue-100: #f0f4f9;
    --green-800: #56b7b2;
    --start-green: #167f16;
    --link: #004d99;
    --alert-accent: #004fa3;
    --accent-yellow: #fcfcd3;

    --black-800: #1a1a1a;
    --black-700: #454545;
    --black-600: #747474;
    --black-400: #bfbfbf;
    --black-300: #dcdcdc;
    --black-200: #f5f5f5;
    --grey-100: #c1c0c0;
    --white: #ffffff;
    --error-light: #ffe0e0;
    --green-400: #cce9e8;

    --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.05);

    --font-main: 'Noto Sans Armenian', 'Manrope', sans-serif;

    --content-width: 1216px;
    --gutter: 99px;
}

/* ===== Reset / base ===== */
* {
    box-sizing: border-box;
}

:focus-visible {
    outline: 3px solid #005a9c;
    outline-offset: 2px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0 !important;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
    background: var(--white);
}

main {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
}

ul:not(.message-list) {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
}

img,
svg {
    display: block;
}

button {
    padding: 0;
    border: 0;
    background-color: transparent;
    font-family: inherit;
    cursor: pointer;
}

.gap-3{
    gap: 16px !important;
}

.pb-0{
    padding-bottom: 0 !important;
}

.mt-0{
    margin-top: 0 !important;
}

/* 
    ///////////////////////////////
        PRELOADER
    \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99;
}
#loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
}
#loading .circle {
    width: 24px;
    height: 24px;
    background-image: url('../img/circle.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate 2s linear infinite;
}
#loading span{
    color: var(--text-primary-label);
    text-align: center;
    font-family: var(--Fonts-Family-Armenian);
    font-size: var(--Fonts-Size-Body-Small);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Fonts-Line-height-Body-Small);
}

/* ===== Layout helpers ===== */
.wrap {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 48px 0;
}

.section__title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: var(--black-800);
    margin-bottom: 32px;
}

.divider {
    width: 100%;
    max-width: calc(var(--content-width) - 48px);
    height: 1px;
    margin: 0 auto;
    border: 0;
    background: var(--black-400);
}

/* ===== Buttons ===== */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 2px solid var(--blue-700);
    border-radius: 4px;
    background: var(--blue-200);
    color: var(--black-800);
    font-size: 14px;
    line-height: 24px;
    height: 40px;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--black-400);
    border-radius: 4px;
    background: var(--white);
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.btn-start img {
    width: 18px;
    height: 18px;
}

/* ===== Header ===== */
.site-header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    padding: 17px 0;
    background: var(--blue-800);
    border-bottom: 8px solid var(--accent-yellow);
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo__mark {
    width: 107px;
    height: 56px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo__mark img {
    height: 56px;
    width: auto;
    max-width: none;
}

.logo__divider {
    width: 1px;
    height: 56px;
    background: var(--white);
}

.logo__text {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    white-space: nowrap;
}

/* Secondary menu */
.subnav {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 56px;
    border-bottom: 1px solid var(--black-600);
}

.subnav__inner {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    justify-content: space-between;
}

.subnav__menu {
    display: flex;
    gap: 24px;
    align-items: flex-end;
}

.subnav__item {
    position: relative;
    display: flex;
    align-items: flex-end;
}

/* Active / current-page menu item */
.subnav__item.is-active > a {
    font-weight: 600;
}

.subnav__item.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--blue-800);
}

.subnav__menu a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
    white-space: nowrap;
}

.subnav__menu img {
    width: 24px;
    height: 24px;
}

.subnav__menu img.chevron {
    transition: transform 0.18s ease;
}

/* Mega-menu dropdown */
.mega {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(8px);
    z-index: 100;
    width: max-content;
    max-width: var(--content-width);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--black-600);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-mega:hover > .mega,
.has-mega:focus-within > .mega,
.has-mega.is-open > .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);   
}

.has-mega:hover .chevron,
.has-mega:focus-within .chevron,
.has-mega.is-open .chevron {
    transform: rotate(180deg);
}

/* Force-close after selecting a link, even while still hovering */
.has-mega.is-suppressed > .mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.has-mega.is-suppressed .chevron {
    transform: none;
}

.mega__col {
    flex: 0 0 258px;
    width: 258px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 16px;
}

.mega__col h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--black-800);
}

.mega__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega__links a {
    display: block;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    color: var(--black-800);
    white-space: normal;
}

.mega__links a:hover {
    color: var(--link);
    /* font-weight: 600; */
}

.subnav__lang {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.subnav__lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 24px;
    color: var(--black-800);
    white-space: nowrap;
    cursor: pointer;
    width: 115px;
    justify-content: space-between;
}

.subnav__lang-toggle img {
    width: 24px;
    height: 24px;
}

.subnav__lang-toggle .globe {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.subnav__lang-toggle .chevron {
    transition: transform 0.18s ease;
}

/* Language dropdown */
.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    background: var(--white);
    border: 1px solid var(--black-600);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.subnav__lang:hover .lang-menu,
.subnav__lang:focus-within .lang-menu,
.subnav__lang.is-open .lang-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.subnav__lang:hover .chevron,
.subnav__lang:focus-within .chevron,
.subnav__lang.is-open .chevron {
    transform: rotate(180deg);
}

/* Force-close after selecting a language, even while still hovering */
.subnav__lang.is-suppressed .lang-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.subnav__lang.is-suppressed .chevron {
    transform: none;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 24px;
    color: var(--black-800);
    white-space: nowrap;
}

.lang-menu a img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lang-menu a:hover {
    background: var(--blue-100);
    color: var(--link);
}

.lang-menu a.is-active {
    color: var(--link);
    font-weight: 600;
}

/* ===== Hero ===== */
.hero {
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--blue-1000);
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 132px;
    padding-bottom: 132px;
}

.hero__title {
    max-width: 720px;
    color: var(--white);
    font-size: 40px;
    line-height: 64px;
    font-weight: 700;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 768px;
    max-width: 100%;
}

.hero__lead {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    max-width: 767px;
}

/* Alert / informative message */
.alert {
    display: flex;
    align-items: stretch;
    max-width: 100%;
    width: 689px;
    background: var(--white);
    border-left: 8px solid var(--alert-accent);
    overflow: hidden;
}

.alert__icon {
    display: flex;
    align-items: center;
    height: 72px;
    padding: 8px 0 8px 16px;
    flex-shrink: 0;
}

.alert__icon img {
    height: 14px;
    width: auto;
}

.alert__body {
    display: flex;
    align-items: center;
    padding: 24px 24px 24px 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black-800);
}

/* Informative notice (Alert Standard) */
.notice {
    display: flex;
    align-items: stretch;
    width: 633px;
    max-width: 100%;
    border-left: 8px solid var(--black-400);
    overflow: hidden;
    padding-left: 8px;
}

.notice__body {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 16px 8px;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

.notice__title {
    font-weight: 600;
}

.notice__text {
    font-weight: 400;
}

.notice__text a {
    color: var(--link);
    text-decoration: underline;
}

.notice--info {
    border-left-color: var(--blue-800);
}

/* Simple info content block (title + notice + text) */
.info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.info-block__text {
    max-width: 768px;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.info-block .notice {
    margin-top: 0;
}

/* ===== Contact page ===== */
.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.contact__body {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.contact__section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact__title {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: var(--black-800);
}

.contact-list {
    display: flex;
    flex-direction: column;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    max-width: 768px;
    flex-wrap: wrap;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.contact-row__label {
    font-weight: 600;
    white-space: nowrap;
}

.contact-row__value {
    font-weight: 400;
}

.contact-row__values {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 0;
    color: var(--link);
    text-decoration: underline;
    font-size: 16px;
    line-height: 24px;
}

.contact-link:hover {
    color: var(--link);
}

/* Expanded accordion: person + contacts */
.contact-people {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-person {
    display: flex;
    flex-direction: column;
}

.contact-person__name {
    font-weight: 600;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

/* ===== Document list (numbered + bulleted links) ===== */
.doclist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 768px;
}

.doclist__row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.doclist__row--sub {
    padding-left: 56px;
}

.doclist__row--sub2 {
    padding-left: 112px;
}

.doclist__num {
    flex-shrink: 0;
    width: 24px;
    padding-top: 8px;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.doclist__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 16px;
    border-radius: 50%;
    background: #ff6a38;
}

.doclist__dot--dark {
    background: var(--black-800);
}

.doclist__link {
    flex: 1 0 0;
    min-width: 0;
    padding: 8px 0;
    color: var(--link);
    text-decoration: underline;
    font-size: 16px;
    line-height: 24px;
}

.doclist__link:hover {
    color: var(--link);
}

.doclist__text {
    flex: 1 0 0;
    min-width: 0;
    padding: 8px 0;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

/* ===== Cards grid (2 columns) ===== */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.cards-grid > * {
    flex: 0 0 calc(50% - 16px);
    min-width: 480px;
    align-items: flex-start;
}

/* Services – Shop Window Main Card */
.swcard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
}

.swcard__line {
    width: 100%;
    height: 4px;
    background: var(--blue-800);
}

.swcard__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: left center;
}

.swcard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    gap: 8px;
    flex: 1 0 0;
    color: var(--link);
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.swcard__header img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.swcard__desc {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

/* ===== News ===== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    margin-bottom: 48px;
}

.newscard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--black-300);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.newscard__date {
    color: var(--black-600);
    font-size: 16px;
    line-height: 24px;
}

.newscard__title {
    color: var(--black-800);
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.newscard__text {
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

/* ===== Useful info – Shop Window Sideview Card ===== */
.linkcard {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.linkcard__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.linkcard__line {
    width: 100%;
    height: 2px;
    background: var(--green-800);
}

.linkcard__title {
    color: var(--black-800);
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.linkcard__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.linkcard__links a {
    color: var(--link);
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    color: var(--link);
    font-size: 14px;
    line-height: 24px;
    text-decoration: underline;
}

.link-btn img {
    width: 24px;
    height: 24px;
}

/* ===== Announcements – Card Large ===== */
.announce-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    margin-bottom: 48px;
}

.bigcard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 868px;
    max-width: 100%;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--black-300);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.bigcard__date {
    color: var(--black-600);
    font-size: 16px;
    line-height: 24px;
}

.bigcard__title {
    color: var(--black-800);
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    margin-top: -8px;
}

.bigcard__title a {
    color: inherit;
    text-decoration: none;
}

.bigcard__title a:hover {
    text-decoration: underline;
}

.bigcard__badge {
    align-self: flex-start;
    padding: 0 4px;
    background: var(--error-light);
    color: var(--black-800);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    margin-bottom: 48px;
}

/* Job vacancy — detail page */
.vacancy-detail {
    padding: 32px 0 64px;
}

.vacancy-detail__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 768px;
    margin-bottom: 32px;
}

.vacancy-detail__title {
    color: var(--black-800);
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.vacancy-detail__date {
    color: var(--black-700);
    font-size: 20px;
    line-height: 32px;
}

.vacancy-detail__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.vacancy-detail__main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 768px;
}

.vacancy-detail__group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vacancy-detail__lead {
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

ul.vacancy-detail__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding-left: 24px;
    list-style: none;
}

ul.vacancy-detail__list li {
    position: relative;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

ul.vacancy-detail__list li::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6A38;
}

.vacancy-detail__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vacancy-detail__form-title {
    color: var(--black-700);
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.vacancy-detail__aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 367px;
    max-width: 100%;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--green-400);
    border-radius: 4px;
}

.info-card__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.info-card__body {
    display: flex;
    flex-direction: column;
}

.info-card__label {
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.info-card__value {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-block__title {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.contact-block p {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

.contact-block a {
    display: block;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
}

.doc {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 367px;
    max-width: 100%;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--black-300);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.doc__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.doc__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 0 0;
    min-width: 0;
}

.doc__name {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.doc__size {
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.doc__download {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Document list (membership) */
.doc-list.membership-docs {
    gap: 16px;
}

.doc-list__title {
    color: var(--black-700);
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

/* ===== Back link ===== */
.back-bar {
    width: 100%;
    margin-top: 24px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 0;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.back-link img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== Content / article page ===== */
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 32px 0 64px;
}

.page__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.page__title {
    max-width: 768px;
    color: var(--black-800);
    font-size: 40px;
    line-height: 64px;
    font-weight: 700;
}

.page__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 768px;
}

.article-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-block__title {
    color: var(--black-800);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.article-block__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.article-block__body .bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding-left: 24px;
    list-style: disc;
    color: #454545;
    font-family: "Noto Sans Armenian";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

.article-block__body .bullets li {
    padding-left: 4px;
}

.article-block__body .bullets li::marker {
    color: #ff6a38;
}

/* ===== Document list (Card Document) ===== */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 768px;
}

.doccard {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 568px;
    max-width: 100%;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--black-300);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.doccard__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.doccard__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 0 0;
    min-width: 0;
}

.doccard__title {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: underline;
}

.doccard__action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.doccard__download {
    gap: 8px;
    width: 131px;
    font-weight: 400;
}

.doccard__download img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.doccard__size {
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 2px solid var(--blue-700);
    border-radius: 4px;
    background: var(--blue-200);
    color: var(--black-800);
    font-size: 14px;
    line-height: 24px;
}

.page-btn.is-active {
    background: var(--blue-800);
    border-color: #8099b8;
    color: var(--white);
}

.pagination__ellipsis {
    color: #2d2c2c;
    font-size: 16px;
    line-height: 24px;
}

.pagination__next,
.pagination__prev {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
}

.pagination__next img,
.pagination__prev img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== Registry / table page ===== */
.reg-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 32px 0 64px;
    gap: 32px;
    min-height: 752px;
    align-self: stretch;
}

.reg-page .page__title {
    max-width: 768px;
}

.reg-page .notice {
    margin-top: 32px;
}

.reg-page__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Filter bar */
.filter-bar {
    width: 100%;
    background: var(--black-200);
    padding: 24px 0;
}

.filter-bar__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-bar__left {
    display: flex;
    gap: 16px;
    flex: 1 0 0;
    min-width: 0;
    flex-wrap: wrap;
}

.filter-bar__group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Search bar (name + area + submit) */
.search-bar {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.search-bar__field {
    width: 480px !important;
    max-width: 100%;
}

.search-bar__btn {
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 8px 16px;
    border: 2px solid #8099b8;
    border-radius: 4px;
    background: var(--blue-800);
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

.btn-third {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 8px 16px;
    border: 2px solid var(--black-400);
    border-radius: 4px;
    background: var(--white);
    color: var(--black-800);
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

.btn-primary img,
.btn-third img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Count / supporting text */
.reg-count {
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

/* Table */
.reg-table-wrap {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 16px;
}

.reg-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    border: 1px solid var(--black-600);
    table-layout: fixed;
}

.reg-table th,
.reg-table td {
    padding: 16px;
    border-bottom: 1px solid var(--black-400);
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
    overflow: hidden;
}

.reg-table thead th {
    background: var(--black-200);
    font-weight: 600;
}

.reg-table tbody td {
    font-weight: 400;
}

.reg-table tbody tr:nth-child(even) {
    background: var(--black-200);
}

.reg-table tbody tr:last-child td {
    border-bottom: 0;
}

/* Status badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black-800);
    white-space: nowrap;
}

.badge--success {
    background: #eeffe2;
}

.badge--error {
    background: #ffe0e0;
}

.badge--warning {
    background: #ffeecc;
}

.badge--grey {
    background: var(--grey-100);
}

/* Expandable name cell */
.reg-table__name-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reg-table__name.is-expanded .reg-table__name-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.reg-table__more {
    display: inline-flex;
    margin-top: 8px;
}

.reg-table__more img {
    width: 24px;
    height: 24px;
    transition: transform 0.18s ease;
    transform: rotate(180deg);
}

.reg-table__name.is-expanded .reg-table__more img {
    transform: rotate(0);
}

/* Forward arrow cell */
.reg-table__go a {
    display: inline-flex;
}

.reg-table__go img {
    width: 18px;
    height: 18px;
}

/* ===== Filter off-canvas drawer ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.4);
}

body.drawer-open {
    overflow: hidden;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 201;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 390px;
    max-width: 100%;
    height: 100%;
    padding: 24px;
    background: var(--white);
    border-left: 1px solid var(--black-400);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer__header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.drawer__title {
    flex: 1 0 0;
    min-width: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--black-800);
}

.drawer__close {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 3px;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.drawer__close span {
    text-decoration: underline;
}

.drawer__close img {
    width: 24px;
    height: 24px;
}

.drawer__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1 0 0;
}

.field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.field__label {
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black-800);
}

.field__label--regular {
    font-weight: 400;
    color: var(--black-700);
}

.field__input {
    width: 100%;
    height: 40px;
    padding: 8px;
    border: 1px solid #0e0d0d;
    border-radius: 4px;
    background: var(--white);
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
}

.field__select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    background-image: url('../img/chevron-down.png');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 24px 24px;
    cursor: pointer;
}

/* Date input (Day / Month / Year) */
.date-input {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.date-input__part {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 51px;
}

.date-input__part .field__label {
    padding-bottom: 0;
}

.date-input__part--year {
    width: 85px;
}

.date-input__slash {
    height: 40px;
    display: flex;
    align-items: center;
    color: #0e0d0d;
}

.date-input__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    margin-left: 8px;
}

.drawer__buttons {
    display: flex;
    gap: 16px;
    padding-top: 16px;
}

/* ===== Tinted section (Who can apply) ===== */
.section--tint {
    background: var(--blue-100);
}

.qualify-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.qualify-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    min-width: 320px;
    min-height: 120px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--black-400);
    border-radius: 2px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black-800);
}

.qualify-card__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.qualify-card span {
    flex: 1 0 0;
    min-width: 0;
}

/* ===== Accordion (Activity foundations) ===== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 834px;
}

.accordion--experts {
    max-width: 868px;
    padding-bottom: 16px;
}

.accordion__panel p {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

.accordion__item {
    width: 100%;
}

.accordion__header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 56px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--black-300);
    border-radius: 3px;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-800);
    text-align: left;
}

.accordion--experts .accordion__header{
    min-height: 80px;
}

.accordion__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.accordion__icon--minus {
    display: none;
}

.accordion__item.is-open .accordion__header {
    background: #ddf1f0;
    border-color: var(--black-400);
    border-radius: 3px 3px 0 0;
}

.accordion__item.is-open .accordion__icon--plus {
    display: none;
}

.accordion__item.is-open .accordion__icon--minus {
    display: block;
}

.accordion__panel {
    display: none;
    padding: 16px 16px 16px 56px;
    border: 1px solid var(--black-400);
    border-top: 0;
    border-radius: 0 0 3px 3px;
}

.accordion__item.is-open .accordion__panel {
    display: block;
}

.accordion__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding-left: 20px;
    list-style: decimal;
    color: var(--black-700);
    font-size: 16px;
    line-height: 24px;
}

.accordion__list li {
    padding-left: 4px;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
    width: 100%;
    padding-top: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 0 2px;
}

.breadcrumb a {
    display: -webkit-box;
    max-width: 240px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: var(--font-family-Main, "Noto Sans Armenian");
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black-800);
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto
}

.breadcrumb__sep {
    width: 6px;
    height: 10px;
    flex-shrink: 0;
}

.breadcrumb__current {
    display: -webkit-box;
    max-width: 240px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Noto Sans Armenian";
    font-size: 16px;
    line-height: 24px;
    color: var(--link);
    box-shadow: 0 3px 0 0 var(--link);
}

/* ===== Registry detail page ===== */
.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 32px 0 64px;
    gap: 32px;
}

.detail__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.detail__title {
    max-width: 768px;
    font-size: 40px;
    line-height: 64px;
    font-weight: 700;
    color: var(--black-800);
}

.detail__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}

/* Structured key/value list */
.detail-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 600px;
    max-width: 100%;
}

.detail-block__title {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: var(--black-800);
}

.dlist {
    width: 100%;
    border-top: 1px solid var(--black-400);
    margin: 0;
}

.dlist__row {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    border-bottom: 1px solid var(--black-400);
}

.dlist dt {
    padding: 16px 32px 16px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black-800);
    word-break: break-word;
}

.dlist dd {
    margin: 0;
    padding: 16px 32px 16px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black-800);
    word-break: break-word;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border: 1px solid var(--black-300);
    border-radius: 4px;
    background: var(--white);
    color: var(--black-800);
    font-size: 14px;
    line-height: 24px;
}

.btn-back img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .dlist__row {
        grid-template-columns: 1fr;
    }

    .dlist dd {
        padding-top: 0;
    }
}

/* ===== Footer ===== */
.site-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
    background: var(--black-200);
    border-top: 1px solid var(--grey-100);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__nav {
    display: flex;
    gap: 32px;
    width: 100%;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1 0 0;
    min-width: 0;
}

.footer__heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__heading h4 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: var(--black-800);
}

.footer__heading hr {
    width: 100%;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--black-300);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}

.footer__links a {
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

.footer__contact-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer__contact-item a {
    text-decoration: underline;
    color: var(--black-800);
}

.footer__break {
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background: var(--grey-100);
}

.footer__meta {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    width: 100%;
}

.footer__meta-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 0 0;
    min-width: 0;
}

.footer__meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

.footer__meta-row img {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

.footer__meta-row a,
.footer__meta-links a,
.footer__copy {
    text-decoration: underline;
    color: var(--black-800);
    font-size: 16px;
    line-height: 24px;
}

.footer__meta-links {
    display: flex;
    gap: 16px;
    color: var(--black-700);
}

.footer__meta-links a {
    color: var(--black-700);
}

.footer__logo {
    width: 123px;
    height: 64px;
    flex-shrink: 0;
}

.footer__logo img {
    width: 100%;
    height: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .cards-grid > * {
        min-width: 100%;
    }

    .news-grid {
        flex-wrap: wrap;
    }

    .newscard {
        width: 100%;
    }

    .footer__nav {
        flex-wrap: wrap;
    }

    .footer__col {
        min-width: 240px;
    }
}

@media (max-width: 640px) {
    .header-top {
        height: auto;
    }

    .logo__text {
        white-space: normal;
        font-size: 14px;
    }

    .subnav {
        height: auto;
        overflow-x: auto;
    }

    .hero__inner {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 40px;
    }

    .section__title {
        font-size: 24px;
    }

    .page__title {
        font-size: 28px;
        line-height: 40px;
    }

    .article-block__title {
        font-size: 20px;
    }
}
