@font-face {
    font-family: 'Nexa';
    src: url('/assets/fonts/Nexa-ExtraLight.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('/assets/fonts/Nexa-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #111;
    color: #fff;
}

/* ── CONTAINER ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}

/* ── NAVBAR ── */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
}

/* hamburger — ascuns pe desktop */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
    position: relative;
}

.navbar__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* animatie X la deschidere */
.navbar__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* collapse — vizibil tot timpul pe desktop */
.navbar__collapse {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbar__menu {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 36px;
}

.navbar__logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.navbar__menu {
    list-style: none;
    display: flex;
    gap: 36px;
}

.navbar__link {
    text-decoration: none;
    color: #fff;
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 57px;
    letter-spacing: 0;
    transition: color 0.2s;
}

.navbar__link--active {
    color: #e02020;
}

.navbar__link:hover {
    border-bottom: 2px solid #fff;
}

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

.navbar__lang-item img {
    width: 36px;
    height: auto;
    display: block;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.navbar__lang-item--active img,
.navbar__lang-item:hover img {
    opacity: 1;
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.77);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero .container {
    padding-bottom: 80px;
}

.hero__title {
    color: white;
    font-family: 'Nexa', sans-serif;
    font-size: 88px;
    font-weight: 100;
    line-height: 79px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero__title strong {
    font-family: 'Nexa', sans-serif;
    font-size: 88px;
    font-weight: 900;
    line-height: 79px;
    letter-spacing: 0;
}

.hero__hashtag {
    color: #e02020;
    font-weight: 100;
}

.hero__subtitle {
    font-family: 'Nexa', sans-serif;
    font-size: 21px;
    font-weight: 100;
    line-height: 79px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
}

.hero__subtitle strong {
    font-weight: 900;
}

/* ── DESPRE ── */
.despre {
    background: #d01a1a;
    padding: 90px 0;
}

.despre__inner {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 60px;
    align-items: center;
}

.despre__title {
    font-family: 'Nexa', sans-serif;
    font-size: 44px;
    font-weight: 100;
    line-height: 44px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}

.despre__lead {
    font-family: 'Nexa', sans-serif;
    font-size: 23px;
    font-weight: 900;
    line-height: 29px;
    letter-spacing: 0;
    color: #fff;
}

.despre__divider {
    width: 18px;
    height: 260px;
    background: #fff;
    justify-self: center;
}

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

.despre__text {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
}

/* ── SERVICII ── */
.servicii {
    background: #fff;
    padding: 80px 0 90px;
}

.servicii__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0 clamp(16px, 3.5vw, 48px);
    align-items: start;
}

.servicii__separator {
    width: 1px;
    background: #d0d0d0;
    align-self: stretch;
}

.servicii__item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.servicii__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servicii__title {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(22px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    color: #111;
    text-transform: uppercase;
}

.servicii__line {
    display: block;
    width: 80px;
    height: 4px;
    background: #d01a1a;
}

.servicii__text {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 100;
    line-height: 1.6;
    color: #111;
}

.servicii__link {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 100;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.servicii__link:hover,
.servicii__link--active {
    color: #d01a1a;
}

/* ── BENEFICII ── */
.beneficii {
    background: #fff;
    padding: 80px 0 90px;
}

.beneficii__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 60px;
    align-items: start;
}

.beneficii__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.beneficii__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.beneficii__title {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 100;
    line-height: 1.25;
    letter-spacing: 0;
    color: #1a1a1a;
}

.beneficii__title strong {
    font-weight: 900;
}

.beneficii__text {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 100;
    line-height: 1.7;
    color: #333;
}

/* ── CIFRE ── */
.cifre {
    background: #fff;
    padding: 80px 0;
}

.cifre__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 0 80px;
    max-width: 860px;
    margin: 0 auto;
}

.cifre__separator {
    width: 1px;
    height: 120px;
    background: #c0392b;
    justify-self: center;
}

.cifre__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cifre__numar {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 900;
    line-height: 1;
    color: #c0392b;
    letter-spacing: 0;
}

.cifre__label {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 100;
    color: #c0392b;
    letter-spacing: 0;
}

/* ── PROIECTE ── */
.proiecte {
    background: #fff;
    padding: 80px 0 90px;
}

.proiecte__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(24px, 3.5vw, 52px);
    font-weight: 100;
    line-height: 1.15;
    letter-spacing: 0;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 56px;
}

.proiecte__titlu strong {
    font-weight: 900;
}

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

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

.proiecte__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 2px;
}

.proiecte__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proiecte__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.proiecte__nume {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 100;
    line-height: 1.2;
    letter-spacing: 0;
    color: #1a1a1a;
}

.proiecte__desc {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 100;
    line-height: 1.65;
    color: #333;
}

.proiecte__stadiu {
    margin-top: auto;
    padding: 10px 16px;
    background: #eeeeee;
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 100;
    color: #1a1a1a;
}

.proiecte__stadiu strong {
    font-weight: 900;
}

.proiecte__nume-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.proiecte__nume-link:hover {
    color: #d01a1a;
}

.proiecte__footer {
    margin-top: 56px;
    text-align: center;
}

.proiecte__toate {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 100;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.proiecte__toate:hover {
    color: #d01a1a;
}

/* ── PAGES ── */
body.page {
    background: #fff;
}

.other-page-hero{
    background: #111;
    padding: 50px 0 60px;
}

h1{
    color: black;
    font-family: Nexa;
    font-weight: 100;
    font-style: Extra Light;
    font-size: 50px;
    line-height: 76px;
    letter-spacing: 0%;
    vertical-align: middle;

}

.page-hero {
    background: #111;
    padding: 160px 0 60px;
}

.page-hero__title {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
}

.page-content {
    padding: 10px 0 10px;
}

.page-dummy {
    font-family: 'Nexa', sans-serif;
    font-size: 18px;
    font-weight: 100;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
}

.page-text {
    font-family: 'Nexa', sans-serif;
    margin-bottom: 32px;
}

.page-text--strong {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 900;
    line-height: 1.4;
    color: #1a1a1a;
}

.page-text--light {
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 100;
    line-height: 1.8;
    color: #444;
}

/* ── CONȚINUT HTML (din editorul WYSIWYG) ── */
.richtext p {
    margin: 0 0 16px;
}
.richtext p:last-child {
    margin-bottom: 0;
}
.richtext h2 {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    margin: 28px 0 12px;
    color: #1a1a1a;
}
.richtext h3 {
    font-size: clamp(17px, 2vw, 23px);
    font-weight: 700;
    line-height: 1.3;
    margin: 22px 0 10px;
    color: #1a1a1a;
}
.richtext ul,
.richtext ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.richtext ul { list-style: disc; }
.richtext ol { list-style: decimal; }
.richtext li { margin-bottom: 6px; }
/* Quill 2 reprezintă bullet/ordered prin data-list */
.richtext li[data-list="bullet"] { list-style-type: disc; }
.richtext li[data-list="ordered"] { list-style-type: decimal; }
.richtext a {
    color: #c0392b;
    text-decoration: underline;
}
.richtext strong { font-weight: 700; }
.richtext em { font-style: italic; }
.richtext img {
    max-width: 100%;
    height: auto;
}
.richtext blockquote {
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 3px solid #c0392b;
    color: #555;
}
/* Aliniere din Quill */
.richtext .ql-align-center { text-align: center; }
.richtext .ql-align-right { text-align: right; }
.richtext .ql-align-justify { text-align: justify; }

/* ── PROIECT PAGE ── */
.proiect-page {
    background: #fff;
    padding: 10px 0 100px;
}

.proiect-page__header {
    margin-bottom: 24px;
}

.proiect-page__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 100;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: 0;
}

.proiect-page__oras {
    font-family: 'Nexa', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-top: 6px;
    margin-top: 4px;
}

.proiect-page__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.proiect-page__main-wrap {
    position: relative;
    width: 100%;
    background: #e8e8e8;
}

.proiect-page__main-img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

.proiect-page__stadiu {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #d01a1a;
    color: #fff;
    font-family: 'Nexa', sans-serif;
    font-size: 13px;
    font-weight: 100;
    padding: 10px 20px;
}

.proiect-page__stadiu strong {
    font-weight: 900;
}

.proiect-page__thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.proiect-page__thumb {
    width: calc(25% - 9px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    background: #e8e8e8;
}

.proiect-page__thumb:hover,
.proiect-page__thumb--active {
    opacity: 1;
}

.proiect-page__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .proiect-page__thumb {
        width: calc(50% - 6px);
    }
}

/* ── PROIECT DETALIU ── */
.proiect-detaliu {
    background: #fff;
    padding: 60px 0 100px;
}

.proiect-detaliu__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.proiect-detaliu__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e8e8e8;
    overflow: hidden;
}

.proiect-detaliu__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.proiect-detaliu__oras {
    font-family: 'Nexa', sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #888;
}

.proiect-detaliu__stadiu {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #1a1a1a;
}

.proiect-detaliu__stadiu strong {
    font-weight: 900;
}

.proiect-detaliu__rezumat {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 900;
    line-height: 1.4;
    color: #1a1a1a;
}

.proiect-detaliu__descriere {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 100;
    line-height: 1.8;
    color: #444;
}

.proiect-detaliu__back {
    font-family: 'Nexa', sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #d01a1a;
    text-decoration: none;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.proiect-detaliu__back:hover {
    opacity: 0.7;
}

@media (max-width: 1040px) {
    .proiect-detaliu__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── CARIERA ── */
.cariera-page {
    background: #fff;
    padding: 10px 0 100px;
}

.cariera-page__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.cariera-page__intro-titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 100;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.cariera-page__intro-desc {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 100;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.cariera-page__intro-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e8e8e8;
    overflow: hidden;
}

.cariera-page__intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cariera-page__lista {
    display: flex;
    flex-direction: column;
}

.cariera-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}

.cariera-item__left {
    min-width: 260px;
}

.cariera-item__nume {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0;
}

.cariera-item__oras {
    font-family: 'Nexa', sans-serif;
    font-size: 11px;
    font-weight: 100;
    letter-spacing: 0.08em;
    color: #888;
    margin-top: 4px;
}

.cariera-item__linie {
    flex: 1;
    height: 1px;
    background: #d0d0d0;
}

.cariera-item__link {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #d01a1a;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cariera-item__link:hover {
    opacity: 0.7;
}

.pozitie-page {
    background: #fff;
    padding: 10px 0 100px;
}

.aplica-form {
    margin: 48px 0 40px;
}

.aplica-form__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 100;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.aplica-form__box {
    background: #f4f4f4;
    padding: 40px;
}

.aplica-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.aplica-form__stanga,
.aplica-form__dreapta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0; /* permite micșorarea sub lățimea conținutului (anti-overflow) */
}

.aplica-form__dreapta {
    justify-content: space-between;
}

.aplica-form__field {
    display: flex;
    flex-direction: column;
}

.aplica-form__field--grow {
    flex: 1;
}

.aplica-form__input {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #333;
    background: #fff;
    border: none;
    padding: 18px 20px;
    outline: none;
    width: 100%;
}

.aplica-form__textarea {
    resize: none;
    height: 150px;
}

.aplica-form__cv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.aplica-form__cv-label {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #444;
}

.aplica-form__cv-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #fff;
    background: #d01a1a;
    padding: 12px 24px;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 0;
    max-width: 100%;
}

/* numele fișierului ales se trunchiază cu „…" în loc să lățească butonul */
.aplica-form__cv-btn #cvFileName {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.aplica-form__cv-btn:hover {
    background: #a81212;
}

.aplica-form__gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.aplica-form__checkbox {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #d01a1a;
}

.aplica-form__gdpr-text {
    font-family: 'Nexa', sans-serif;
    font-size: 12px;
    font-weight: 100;
    color: #666;
    line-height: 1.5;
}

.aplica-form__gdpr-text a {
    color: #666;
    text-decoration: underline;
}

.aplica-form__submit-wrap {
    grid-column: 1 / -1;
}

.aplica-form__submit {
    width: 100%;
    height: 68px;
    background: #d01a1a;
    border: none;
    color: #fff;
    font-family: 'Nexa', sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
}

.aplica-form__submit:hover {
    background: #a81212;
}

@media (max-width: 1040px) {
    .aplica-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1040px) { 
    .cariera-page__intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cariera-item__left {
        min-width: 0;
    }
}

/* ── CONTACT ── */
.contact-page {
    background: #fff;
    padding: 10px 0 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-info__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-info__text {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #333;
    line-height: 1.8;
}

.contact-info__logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info__logo {
    height: 120px;
    width: auto;
}

.contact-form__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 100;
    color: #1a1a1a;
    letter-spacing: 0;
    margin-bottom: 0;
}

.contact-form-section {
    background: #f0f0f0;
    padding: 48px 0 60px;
    width: 100%;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form__stanga,
.contact-form__dreapta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__input {
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #333;
    background: #fff;
    border: none;
    padding: 18px 20px;
    outline: none;
    width: 100%;
}

.contact-form__textarea {
    resize: none;
    flex: 1;
    min-height: 180px;
}

.contact-form__gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form__submit-wrap {
    grid-column: 1 / -1;
}

.contact-form__submit {
    width: 100%;
    height: 64px;
    background: #d01a1a;
    border: none;
    color: #fff;
    font-family: 'Nexa', sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form__submit:hover {
    background: #a81212;
}

@media (max-width: 1040px) {
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

/* ── PRESA LISTA ── */
.presa-lista {
    background: #fff;
    padding: 10px 0 100px;
}

.presa-lista__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 100;
    color: #1a1a1a;
    margin-bottom: 48px;
    letter-spacing: 0;
}

.presa-lista__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.articol-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.articol-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e8e8e8;
    overflow: hidden;
    flex-shrink: 0;
}

.articol-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.articol-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.articol-card__titlu {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 100;
    line-height: 1.3;
    color: #1a1a1a;
}

.articol-card__titlu-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.articol-card__titlu-link:hover {
    color: #d01a1a;
}

.articol-card__data {
    font-family: 'Nexa', sans-serif;
    font-size: 13px;
    font-weight: 100;
    color: #888;
}

.articol-card__rezumat {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 100;
    line-height: 1.7;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articol-card__btn {
    font-family: 'Nexa', sans-serif;
    font-size: 18px;
    font-weight: 100;
    line-height: 30px;
    letter-spacing: 0;
    color: #fff;
    background: #d01a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 186px;
    height: 48px;
    transition: background 0.2s;
}

.articol-card__btn:hover {
    background: #a81212;
}

/* ── ARTICOL PAGE ── */
.articol-page {
    background: #fff;
    padding: 10px 0 100px;
}

.articol-page__img-wrap {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background: #e8e8e8;
    margin-bottom: 48px;
}

.articol-page__img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.articol-page__text {
    margin-bottom: 32px;
}

@media (max-width: 1040px) {
    .articol-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── PORTOFOLIU LISTA ── */
.portofoliu-lista {
    background: #fff;
    padding: 10px 0 90px;
}

.portofoliu-lista__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}

.portcard {
    display: flex;
    flex-direction: column;
}

.portcard__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e8e8e8;
    overflow: hidden;
    margin-bottom: 16px;
}

.portcard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portcard__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.portcard__nume {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 100;
    line-height: 1.2;
    color: #1a1a1a;
}

.portcard__oras {
    font-family: 'Nexa', sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #888;
}

.portcard__rezumat {
    font-family: 'Nexa', sans-serif;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 100;
    line-height: 1.65;
    color: #444;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.portcard__stadiu {
    font-family: 'Nexa', sans-serif;
    font-size: 12px;
    font-weight: 100;
    color: #1a1a1a;
}

.portcard__stadiu strong {
    font-weight: 900;
}

.portcard__btn {
    font-family: 'Nexa', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    background: #d01a1a;
    padding: 8px 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.portcard__btn:hover {
    background: #a81212;
}

@media (max-width: 1040px) {
    .portofoliu-lista__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portofoliu-lista__grid {
        grid-template-columns: 1fr;
    }
}

/* ── FOOTER FINANTATORI ── */
.footer-finantatori {
    background: #fff;
    padding: 32px 0;
    
}

.footer-finantatori__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-finantatori__logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* ── FOOTER PARTENERI ── */
.footer-parteneri {
    background: #efefef;
    padding: 40px 0;
}

.footer-parteneri__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-parteneri__logo {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* ── FOOTER PRINCIPAL ── */
.footer {
    background: #0a0a0a;
    padding: 70px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo {
    height: 120px;
    width: auto;
}

.footer__heading {
    font-family: 'Nexa', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 24px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-family: 'Nexa', sans-serif;
    font-size: 13px;
    font-weight: 100;
    color: #aaa;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #fff;
}

.footer__contact-item {
    font-family: 'Nexa', sans-serif;
    font-size: 13px;
    font-weight: 100;
    color: #aaa;
    line-height: 1.8;
}

.footer__contact-item strong {
    font-weight: 900;
    color: #fff;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer__social-link {
    color: #fff;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__copy {
    border-top: 1px solid #222;
    padding: 20px 0;
}

.footer__copy p {
    font-family: 'Nexa', sans-serif;
    font-size: 12px;
    font-weight: 100;
    color: #555;
    text-align: center;
    letter-spacing: 0.03em;
}

.footer__copy-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__copy-inner p {
    margin: 0;
}

.footer__legal a {
    color: #888;
    text-decoration: none;
}

.footer__legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__legal span {
    color: #444;
    margin: 0 6px;
}

@media (max-width: 600px) {
    .footer__copy-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
    .navbar .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__collapse {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 100px 0 40px;
        z-index: 150;
        overflow-y: auto;
    }

    .navbar__collapse.is-open {
        display: flex;
    }

    .navbar__menu {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
    }

    .navbar__menu li {
        width: 100%;
    }

    .navbar__link {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
        border-bottom: none;
        line-height: normal;
    }

    .navbar__link--active,
    .navbar__link:hover {
        border-bottom: none;
        background: rgba(255, 255, 255, 0.08);
    }

    .navbar__lang {
        padding: 16px 24px 0;
        gap: 12px;
    }

    .hero .container {
        padding-bottom: 48px;
    }

    .hero__title,
    .hero__title strong {
        color: white;
        font-size: clamp(32px, 9vw, 60px);
        line-height: clamp(30px, 8.5vw, 56px);
    }

    .hero__subtitle {
        font-size: clamp(12px, 3vw, 18px);
        line-height: normal;
    }

    .despre__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .despre__divider {
        width: 60px;
        height: 2px;
    }

    .servicii__grid {
        grid-template-columns: 1fr;
        gap: 48px 0;
    }

    .servicii__separator {
        width: 100%;
        height: 1px;
    }

    .beneficii__grid {
        grid-template-columns: 1fr;
        gap: 48px 0;
    }

    .proiecte__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer__links {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__logo {
        margin: 0 auto;
    }

    .footer-finantatori__grid,
    .footer-parteneri__grid {
        gap: 32px;
    }

    .footer-finantatori__logo {
        height: 40px;
    }

    .footer-parteneri__logo {
        height: 52px;
    }
}

/* ── FIX RESPONSIVE MOBIL (footer banner + cifre) ── */
@media (max-width: 600px) {
    /* Bannerul finanțatori să se încadreze în lățimea ecranului */
    .footer-finantatori {
        padding: 24px 0;
    }

    .footer-finantatori__logo {
        height: auto;
        width: auto;
        max-width: 100%;
    }

    /* Secțiunea CIFRE: stivuire pe verticală + font mai mic */
    .cifre {
        padding: 48px 0;
    }

    .cifre__grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
        max-width: 100%;
    }

    .cifre__separator {
        width: 60px;
        height: 1px;
        justify-self: center;
    }

    .cifre__item {
        align-items: center;
        text-align: center;
    }

    .cifre__numar {
        font-size: clamp(40px, 13vw, 64px);
    }

    .cifre__label {
        font-size: clamp(14px, 4vw, 20px);
    }

    /* HERO: înălțime fără bara browserului + text mai sus pe mobil */
    .hero {
        min-height: 520px;
        height: 100vh;        /* fallback */
        height: 100svh;       /* exclude bara de jos pe iOS/Android */
    }

    .hero .container {
        padding-bottom: 96px;
    }

    /* Formular aplicare CV: rânduri separate + nume fișier trunchiat */
    .aplica-form__cv-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .aplica-form__cv-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    #cvFileName {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }
}

/* ── ALERTE FORMULAR ── */
.form-alert {
    padding: 14px 20px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-family: 'Nexa', sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.form-alert--success {
    background: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #b7dfc3;
}

.form-alert--error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6c0;
}
