﻿:root {
    --green: #2f7d23;
    --green2: #64ad32;
    --blue: #0c4f93;
    --ink: #10233f;
    --muted: #61708b;
    --soft: #f5faf4;
    --line: #dfe9df;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, 'Noto Sans Armenian', sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 4vw;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900
}

.brand img {
    width: 148px;
    max-height: 54px;
    object-fit: contain
}

.brand span {
    white-space: nowrap;
    color: var(--ink)
}

nav {
    display: flex;
    gap: 18px;
    font-weight: 700;
    font-size: 14px
}

nav a {
    padding: 10px 0;
    border-bottom: 2px solid transparent
}

nav a:hover {
    color: var(--green);
    border-color: var(--green)
}

.actions {
    display: flex;
    gap: 8px
}

.actions button,
.btn {
    border: 1px solid #c9d6e5;
    background: #fff;
    color: var(--ink);
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer
}

.btn.primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.btn.blue {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

#menuBtn {
    display: none
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-content: end;
    padding: 112px 4vw 32px;
    overflow: hidden;
    background: #eef6ee
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(.94) brightness(1.18)
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .88) 38%, rgba(255, 255, 255, .58) 66%, rgba(255, 255, 255, .30) 100%);
    z-index: 1
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
    z-index: 1
}

.hero-content,
.metrics {
    position: relative;
    z-index: 2
}

.hero-content {
    max-width: 800px
}

.eyebrow,
.tag {
    display: inline-block;
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero h1 {
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 1.08;
    margin: 10px 0 22px;
    color: #12331f
}

.hero p {
    font-size: 20px;
    color: #243750
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 42px
}

.glass {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 18px 50px rgba(16, 35, 63, .10);
    border-radius: 22px;
    padding: 20px
}

.metrics>div,
.metrics>.metric-link {
    border-right: 1px solid var(--line);
    padding: 8px 20px
}

.metrics>div:last-child,
.metrics>.metric-link:last-child {
    border-right: 0
}

.metric-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: color .2s
}

.metric-link:hover b {
    color: var(--green)
}

.metrics b {
    display: block;
    font-size: 30px
}

.metrics span {
    color: var(--muted);
    font-weight: 700
}

.section {
    padding: 78px 4vw
}

.soft {
    background: var(--soft)
}

.section-head {
    max-width: 980px;
    margin: 0 auto 38px;
    text-align: center
}

.section-head span {
    color: var(--green);
    font-weight: 900
}

.section-head h2,
.split h2 {
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.1;
    margin: 8px 0 12px
}

.section-head p,
.split p {
    color: var(--muted);
    font-size: 18px
}

.cards {
    display: grid;
    gap: 20px
}

.cards.six {
    grid-template-columns: repeat(6, 1fr)
}

.cards article,
.zone-cards article,
.doc-list a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(16, 35, 63, .06)
}

.cards i {
    font-size: 38px
}

.cards h3,
.zone-cards h3 {
    margin: 12px 0 8px
}

.cards p,
.zone-cards p {
    color: var(--muted);
    font-size: 15px
}

#about .section-head h2 {
    color: var(--green)
}

#about .section-head p {
    color: var(--green);
    font-weight: 600;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 28px
}

.platform-card {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 35px rgba(16, 35, 63, .08);
    transition: transform .2s, box-shadow .2s
}

.platform-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block
}

.platform-card span {
    display: block;
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.35;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(16, 35, 63, .14)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center
}

.reverse {
    grid-template-columns: 1fr 1fr
}

.rounded {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(16, 35, 63, .12);
    object-fit: cover;
    filter: saturate(.96) contrast(.96) brightness(1.05)
}

.check {
    padding-left: 20px
}

.check li {
    margin: 10px 0
}

.zone-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.zone-cards article {
    padding: 0;
    overflow: hidden
}

.zone-cards img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    filter: saturate(.94) contrast(.94) brightness(1.09)
}

.zone-cards b {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 7px 13px;
    margin: 18px 22px 0
}

.zone-cards h3,
.zone-cards p {
    padding: 0 22px
}

.zone-cards p {
    padding-bottom: 22px
}

.zone-card-link {
    display: block;
    color: inherit;
    text-decoration: none
}

.zone-card-link article {
    height: 100%;
    transition: border-color .2s, box-shadow .2s
}

.zone-card-link:hover article {
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(16, 35, 63, .10)
}

.zone-card-link:hover h3 {
    color: var(--green)
}

.detail-zone-number {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 7px 16px;
    font-weight: 800;
    font-size: 18px;
    margin: 8px 0 0
}

.master-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr;
    gap: 28px;
    align-items: stretch
}

.master-grid>img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(16, 35, 63, .12);
    filter: saturate(.94) contrast(.95) brightness(1.08)
}

.zone-list {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px
}

.zone-list li {
    margin: 12px 0;
    font-weight: 700
}

.chips,
.invest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px
}

.chips span,
.chips a,
.invest-grid span,
.invest-grid a {
    background: #eaf5e5;
    color: #245b18;
    border: 1px solid #cfe8c6;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800
}

.chips a,
.invest-grid a {
    text-decoration: none;
    display: inline-block
}

.chips a:hover,
.invest-grid a:hover {
    background: #d4edc9;
    border-color: #b8dbab;
    color: #1a4a12
}

.esg-feature-image {
    width: 100%;
    margin: 0 auto 32px;
    display: block;
    box-shadow: 0 18px 50px rgba(16, 35, 63, .12);
    filter: saturate(.96) contrast(.96) brightness(1.05)
}

.esg-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.esg-stat-cards article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 12px 35px rgba(16, 35, 63, .06);
    text-align: center;
    height: 100%
}

.esg-stat-card-link {
    display: block;
    color: inherit;
    text-decoration: none
}

.esg-stat-card-link article {
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.esg-stat-card-link:hover article {
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(16, 35, 63, .10);
    transform: translateY(-3px)
}

.esg-stat-cards strong {
    display: block;
    font-size: 42px;
    line-height: 1.1;
    color: var(--green)
}

.esg-stat-cards span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4
}

.detail-stat-label {
    color: var(--muted);
    font-weight: 700;
    font-size: 18px;
    margin: 8px 0 0
}

.docs {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 34px;
    align-items: start
}

.docs-side-image {
    width: 100%;
    margin-top: 20px;
    object-fit: cover;
    max-height: 420px;
    box-shadow: 0 18px 50px rgba(16, 35, 63, .12);
    filter: saturate(.96) contrast(.96) brightness(1.05)
}

.doc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.doc-list a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800
}

.doc-list small {
    color: var(--green)
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(16, 35, 63, .08);
    filter: saturate(.94) contrast(.94) brightness(1.08)
}

.contact {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #f8fbff, #eef7ea)
}

.contact-info {
    align-self: start
}

.contact-info h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.15
}

.contact-subtitle {
    color: var(--muted);
    margin: 0 0 18px;
    font-weight: 700
}

.contact-details {
    margin: 0 0 28px;
    line-height: 1.8
}

.contact-logo-text {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto
}

.contact-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px
}

.contact-emblem img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain
}

form {
    display: grid;
    gap: 12px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    font: inherit
}

textarea {
    min-height: 130px
}

footer {
    padding: 36px 4vw;
    text-align: center;
    background: #eef5f9;
    color: var(--muted)
}

footer img {
    width: 140px
}

@media(max-width:1050px) {
    nav {
        display: none;
        position: absolute;
        top: 76px;
        right: 4vw;
        left: 4vw;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column
    }

    nav.open {
        display: flex
    }

    #menuBtn {
        display: block
    }

    .cards.six,
    .platform-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .zone-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .esg-stat-cards,
    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .split,
    .master-grid,
    .docs,
    .contact {
        grid-template-columns: 1fr
    }

    .metrics {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {
    .brand span {
        display: none
    }

    .metrics,
    .cards.six,
    .platform-cards,
    .zone-cards,
    .esg-stat-cards,
    .gallery,
    .doc-list {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 760px;
        padding-top: 90px
    }

    .hero::before {
        background: rgba(255, 255, 255, .88)
    }

    .hero-buttons {
        flex-direction: column
    }

    .btn {
        text-align: center
    }

    .metrics>div,
    .metrics>.metric-link {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }
}

.alert-success {
    background: #eaf5e5;
    border: 1px solid #cfe8c6;
    color: #245b18;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-weight: 700
}

.doc-list-item--disabled {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    opacity: .65;
    cursor: default
}

.doc-list a:hover {
    color: var(--green)
}

.invest-page .invest-back,
.detail-page .detail-back {
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--green)
}

.invest-page .invest-hero,
.detail-page .detail-hero {
    margin: 24px 0;
    max-height: 480px;
    width: 100%;
    object-fit: cover
}

.invest-page .invest-body,
.detail-page .detail-body {
    max-width: 900px;
    margin: 24px 0
}

.detail-page .detail-icon {
    font-size: 42px;
    margin: 8px 0 0
}

.about-card-link {
    display: block;
    color: inherit;
    text-decoration: none
}

.about-card-link article {
    height: 100%;
    transition: border-color .2s, box-shadow .2s
}

.about-card-link:hover article {
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(16, 35, 63, .10)
}

.about-card-link:hover h3 {
    color: var(--green)
}

.rich-body {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.75
}

.rich-body p {
    margin: 0 0 1em
}

.rich-body h2,
.rich-body h3 {
    color: var(--ink);
    margin: 1.2em 0 .6em
}

.rich-body ul,
.rich-body ol {
    padding-left: 1.4em;
    margin: 0 0 1em
}

.rich-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 16px 0;
    box-shadow: 0 12px 35px rgba(16, 35, 63, .08)
}

.rich-body a {
    color: var(--green);
    font-weight: 700
}

.invest-gallery figure {
    margin: 0
}

.invest-gallery figcaption {
    margin-top: 10px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700
}

.media-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(16, 35, 63, .14);
    background: #10233f
}

.media-hero>img {
    width: 100%;
    min-height: 420px;
    max-height: 560px;
    object-fit: cover;
    display: block;
    filter: saturate(.98) contrast(.98) brightness(1.02)
}

.media-hero-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(200px, 28vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 28px 18px;
    background: linear-gradient(90deg, rgba(12, 35, 70, .88) 0%, rgba(12, 35, 70, .55) 70%, rgba(12, 35, 70, 0) 100%)
}

.media-hero-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    padding: 10px 8px;
    border-radius: 16px;
    transition: background .2s, transform .2s
}

.media-hero-btn:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateX(4px)
}

.media-hero-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(120, 200, 255, .55);
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(80, 180, 255, .25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)
}

.media-hero-label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2
}

.media-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px
}

.media-items-grid--video {
    grid-template-columns: repeat(2, 1fr)
}

.media-item {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(16, 35, 63, .06)
}

.media-item img,
.media-item video {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover
}

.media-item--document {
    padding: 28px 20px;
    text-align: center
}

.media-item figcaption {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-align: center
}

@media(max-width:1050px) {
    .media-items-grid,
    .media-items-grid--video {
        grid-template-columns: repeat(2, 1fr)
    }

    .media-hero-nav {
        width: 160px;
        padding: 20px 12px
    }

    .media-hero-icon {
        width: 58px;
        height: 58px;
        font-size: 24px
    }
}

@media(max-width:640px) {
    .media-hero>img {
        min-height: 520px
    }

    .media-hero-nav {
        width: 100%;
        top: auto;
        flex-direction: row;
        justify-content: space-around;
        padding: 14px 10px;
        background: linear-gradient(0deg, rgba(12, 35, 70, .92) 0%, rgba(12, 35, 70, .4) 100%)
    }

    .media-hero-btn {
        flex: 1;
        padding: 6px 4px
    }

    .media-hero-icon {
        width: 48px;
        height: 48px;
        font-size: 20px
    }

    .media-hero-label {
        font-size: 10px
    }

    .media-items-grid,
    .media-items-grid--video {
        grid-template-columns: 1fr
    }
}