@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'e-Ukraine';
    src: url('../fonts/e-Ukraine-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/GolosText-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../fonts/GolosText-DemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {

    --color-sea-green:    #05292F;
    --color-dark-teal:    #17454E;
    --color-blue-slate:   #46646A;
    --color-frozen-water: #C6E3DF;
    --color-platinum:     #EBEDED;
    --color-gold:         #BF9870;
    --color-white:        #FFFFFF;
    --color-black:        #212121;

    --color-bg:      var(--color-sea-green);
    --color-text:    var(--color-platinum);
    --color-accent:  var(--color-gold);
    --color-muted:   var(--color-blue-slate);
    --color-border:  var(--color-dark-teal);

    --font-body:    'Onest', sans-serif;
    --font-heading: 'Golos Text', sans-serif;
    --font-label:   'e-Ukraine', sans-serif;
    --line-height:  1.6;

    --container-width:   1400px;
    --container-padding: 20px;

    --radius:     30px;
    --radius-sm:  10px;
    --transition: 0.3s ease;

    --header-height: 70px;
    --header-bg:     transparent;
    --footer-bg:     var(--color-sea-green);
    --footer-color:  var(--color-platinum);

    --z-dropdown: 100;
    --z-sticky:   200;
    --z-modal:    400;
}

html {
    font-size: 16px;
    scroll-padding-top: var(--header-height);
}

body {
    font-family:      var(--font-body);
    font-weight:      400;
    line-height:      var(--line-height);
    color:            var(--color-text);
    background-color: var(--color-bg);
    display:          flex;
    flex-direction:   column;
    min-height:       100vh;
}

.site      { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; position: relative; }

.container {
    width:     100%;
    max-width: var(--container-width);
    padding:   0 var(--container-padding);
    margin:    0 auto;
}

h1, .h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 68px;
    line-height: 1;
}

h2, .h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 52px;
    line-height: 1;
    color: var(--color-platinum);
}

h3, .h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
}

h4, .h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
}

h5, .h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
}

h6, .h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
}

.label {
    font-family: var(--font-label);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--color-blue-slate);
}

a {
    transition: color var(--transition), opacity var(--transition);
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child  { margin-bottom: 0; }

.entry-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-platinum);
    margin-bottom: 16px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--color-platinum);
    margin: 40px 0 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 16px 0 32px;
    padding-left: 24px;
    color: var(--color-platinum);
}

.entry-content li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.entry-content a {
    color: var(--color-frozen-water);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--color-gold);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.entry-content th,
.entry-content td {
    padding: 12px 16px;
    border: 1px solid var(--color-dark-teal);
    text-align: left;
    color: var(--color-platinum);
}

.entry-content strong { font-weight: 600; }

.page-content {
    display: block;
    padding: 60px 0 100px;
}

.page-content__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-platinum);
    margin-bottom: 40px;
}

.page-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    color: var(--color-platinum);
}

.search-form {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin-bottom: 40px;
}

.search-form .search-field {
    flex: 1;
    height: 55px;
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid rgba(198, 227, 223, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-platinum);
}

.search-form .search-field::placeholder {
    color: rgba(235, 237, 237, 0.6);
}

.search-form .search-field:focus {
    border-color: var(--color-frozen-water);
    outline: none;
}

.search-form .search-submit {
    flex-shrink: 0;
    height: 55px;
    padding: 10px 24px;
    background-color: var(--color-frozen-water);
    color: #002F35;
    border: none;
    border-radius: 68px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition);
}

.search-form .search-submit:hover {
    background-color: var(--color-platinum);
}

@media (max-width: 1024px) {
    .page-content { padding: 40px 0 70px; }
    .page-content__title { font-size: 40px; margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .page-content { padding: 30px 0 50px; }
    .page-content__title { font-size: 28px; margin-bottom: 24px; }
    .entry-content p,
    .entry-content li { font-size: 16px; }
    .search-form { flex-direction: column; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 55px;
    padding: 10px 24px;
    border-radius: 68px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-platinum);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn--secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 5px;
    height: 71px;
    background-color: rgba(255, 255, 255, 0.6);
    filter: blur(6.5px);
    transform: translateY(-50%) rotate(-17deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn--secondary:hover {
    background-color: var(--color-dark-teal);
    color: var(--color-frozen-water);
}

.btn--secondary:hover::after {
    left: calc(100% + 30px);
}

.top-bar {
    position: relative;
    width: 100%;
    background-color: var(--color-sea-green);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar > .container {
    max-width: 1640px;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

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

.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(235, 237, 237, 0.7);
}

.top-bar__link:hover {
    color: var(--color-frozen-water);
}

.top-bar__link .icon {
    flex-shrink: 0;
    color: var(--color-blue-slate);
}

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

.top-bar__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(235, 237, 237, 0.5);
    transition: color var(--transition);
}

.top-bar__social:hover {
    color: var(--color-frozen-water);
}

.lang-inline {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-inline__item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #567980;
    transition: color var(--transition);
}

.lang-inline__item.is-active {
    color: var(--color-platinum);
}

.lang-inline__item:hover {
    color: var(--color-frozen-water);
}

.lang-inline__sep {
    font-size: 16px;
    color: rgba(70, 100, 106, 0.5);
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    background-color: rgba(5, 41, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.site-header > .container {
    max-width: 1640px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo a {
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 195px;
    height: auto;
}

.header__nav .menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav .menu li {
    position: relative;
}

.header__nav .menu li a {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-frozen-water);
    transition: color var(--transition);
    white-space: nowrap;
}

.header__nav .menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-frozen-water);
    transition: width var(--transition);
}

.header__nav .menu > li > a:hover::after,
.header__nav .menu > li.current-menu-item > a::after {
    width: 100%;
}

.header__nav .menu li.menu-item-has-children > a {
    display: flex;
    align-items: center;
}

.header__nav .menu li.menu-item-has-children > a::before {
    content: '';
    order: 3;
    flex-shrink: 0;
    width: 10px;
    height: 6px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8401 1.03084L15.0386 0.171877C14.9318 0.057172 14.8087 0 14.6696 0C14.5309 0 14.4079 0.057172 14.3011 0.171877L8.00008 6.92438L1.69934 0.172058C1.59248 0.0573527 1.4695 0.000180444 1.33058 0.000180444C1.1916 0.000180444 1.06862 0.0573527 0.961812 0.172058L0.160377 1.03108C0.0533466 1.14555 0 1.27734 0 1.42629C0 1.57512 0.0535151 1.70692 0.160377 1.82138L7.63132 9.82824C7.73812 9.94277 7.86116 10 8.00008 10C8.13901 10 8.26182 9.94277 8.36857 9.82824L15.8401 1.82138C15.9469 1.70686 16 1.57506 16 1.42629C16 1.27734 15.9469 1.14555 15.8401 1.03084Z' fill='%23C6E3DF'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform var(--transition);
}

.header__nav .menu li.menu-item-has-children:hover > a::before,
.header__nav .menu li.menu-item-has-children:focus-within > a::before {
    transform: rotate(180deg);
}

.header__nav .menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: max-content;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.header__nav .menu li.menu-item-has-children:hover > .sub-menu,
.header__nav .menu li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.header__nav .menu .sub-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 24px;
    background-color: rgba(0, 25, 30, 0.8);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(7, 46, 52, 0.03);
    border-radius: 50px;
    color: var(--color-platinum);
    font-size: 18px;
    text-align: center;
}

.header__nav .menu .sub-menu li a:hover {
    color: var(--color-gold);
}

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

.header__cta {
    height: auto;
    padding: 10px 16px;
    background: linear-gradient(90deg, #9FD0C9, #C6E3DF);
    color: var(--color-sea-green);
    border: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.header__cta span,
.header__cta .icon {
    position: relative;
    z-index: 1;
}

.header__cta:hover {
    background: linear-gradient(90deg, #C6E3DF, #EBEDED);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(198, 227, 223, 0.12);
}

.header__lang-mobile {
    display: none;
}

.breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 10px 0;
    background: transparent;
}

.breadcrumbs > .container {
    max-width: 1640px;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 3px;
}

.breadcrumbs__link,
.breadcrumbs__current {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.4;
    white-space: nowrap;
}

.breadcrumbs__link {
    color: rgba(198, 227, 223, 0.6);
    transition: color var(--transition);
}

.breadcrumbs__link:hover {
    color: var(--color-frozen-water);
}

.breadcrumbs__current {
    color: var(--color-frozen-water);
}

.breadcrumbs__sep {
    flex-shrink: 0;
    color: rgba(198, 227, 223, 0.6);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.header__burger span {
    display: block;
    height: 2px;
    background-color: var(--color-frozen-water);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.header__burger span:nth-child(1),
.header__burger span:nth-child(2) {
    width: 22px;
}

.header__burger span:nth-child(3) {
    width: 12px;
}

.header__burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
    width: 22px;
    transform: rotate(-45deg) translate(5px, -5px);
}

.section-line-top,
.section-line-bottom {
    position: relative;
}

.section-line-top::before,
.section-line-bottom::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(183, 222, 217, 0) 0%, rgba(183, 222, 217, 0.4) 49.5%, rgba(183, 222, 217, 0) 100%);
    z-index: 2;
}

.section-line-top::before {
    top: 0;
    transform: translateY(-50%);
}

.section-line-bottom::after {
    bottom: 0;
    transform: translateY(50%);
}

.admin-bar .site-header {
    top: 32px;
}

.screen-reader-text {
    clip:     rect(1px, 1px, 1px, 1px);
    height:   1px;
    overflow: hidden;
    position: absolute;
    width:    1px;
}
.screen-reader-text:focus {
    clip:       auto;
    height:     auto;
    left:       5px;
    top:        5px;
    padding:    15px 23px;
    background: #f1f1f1;
    color:      #21759b;
    display:    block;
    font-weight: 700;
    z-index:    100000;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 25, 30, 0.8);
    z-index: calc(var(--z-sticky) + 10);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.site-header.menu-open {
    background-color: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
}

.mobile-menu__body {
    background-color: #013845;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    margin-top: var(--header-height);
    overflow-y: auto;
}

.admin-bar .mobile-menu__body {
    height: calc(100vh - var(--header-height) - 32px);
    height: calc(100dvh - var(--header-height) - 32px);
    margin-top: calc(var(--header-height) + 32px);
}

.mobile-menu__nav .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu__nav .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__nav .menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-frozen-water);
}

.mobile-menu__nav .menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--color-frozen-water);
    border-bottom: 1.5px solid var(--color-frozen-water);
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -3px;
    transition: transform var(--transition);
}

.mobile-menu__nav .menu li.menu-item-has-children.is-open > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.mobile-menu__nav .menu .sub-menu {
    display: none;
    flex-direction: column;
}

.mobile-menu__nav .menu li.is-open > .sub-menu {
    display: flex;
}

.mobile-menu__nav .menu .sub-menu li {
    border-bottom: none;
}

.mobile-menu__nav .menu .sub-menu li a {
    font-size: 16px;
    color: var(--color-frozen-water);
    height: 36px;
}

.mobile-menu__cta {
    width: 208px;
    height: 50px;
    padding: 10px 16px;
    background-color: var(--color-frozen-water);
    color: var(--color-sea-green);
    border: none;
    font-size: 14px;
    font-weight: 600;
}

.mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--color-frozen-water);
}

.mobile-menu__link .icon {
    flex-shrink: 0;
}

.mobile-menu__link:first-child {
    font-weight: 600;
}

.mobile-menu__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    backdrop-filter: blur(48px);
    color: var(--color-frozen-water);
    transition: color var(--transition);
}

.mobile-menu__social:hover {
    color: var(--color-platinum);
}

.site-footer {
    background: radial-gradient(ellipse at center top, #00464F 0%, #003238 50%, #001D21 100%);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(157, 136, 82, 0) 0%, #D0B46D 49.8%, rgba(106, 92, 56, 0) 100%);
    z-index: 2;
}

.footer__bg-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer__bg-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer__top {
    padding-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__nav .menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer__nav .menu li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(198, 227, 223, 0.6);
    text-transform: uppercase;
    transition: color var(--transition);
}

.footer__nav .menu li a:hover {
    color: var(--color-frozen-water);
}

.footer__cta {
    height: 50px;
    font-size: 16px;
}

.footer__main {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__main-inner {
    display: flex;
    justify-content: space-between;
    min-height: 200px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25%;
    flex-shrink: 0;
}

.footer__logo img {
    width: 147px;
    height: auto;
}

.footer__description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.07px;
    color: var(--color-platinum);
    margin-top: 32px;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(198, 227, 223, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(32px);
    color: var(--color-platinum);
    transition: background-color var(--transition);
}

.footer__social:hover {
    background-color: rgba(198, 227, 223, 0.2);
}

.footer__columns {
    display: flex;
    gap: 20px;
    max-width: 875px;
    width: 60%;
    flex-direction: row;
    justify-content: space-between;
}

.footer__column {
    min-width: 0;
    max-width: 300px;
}

.footer__column-title {
    font-family: var(--font-label);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--color-frozen-water);
    margin-bottom: 20px;
}

.footer__column nav .menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__column nav .menu li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(235, 237, 237, 0.6);
    transition: color var(--transition);
}

.footer__column nav .menu li a:hover {
    color: var(--color-platinum);
}

.footer__column-content {
    display: flex;
    flex-direction: column;
}

.footer__address {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-platinum);
}

.footer__work-hours {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(235, 237, 237, 0.7);
    margin-top: 16px;
}

.footer__contact {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-platinum);
    transition: color var(--transition);
}

.footer__contact:hover {
    color: var(--color-frozen-water);
}

.footer__contact--phone {
    font-weight: 600;
}

.footer__contact--email {
    font-weight: 300;
    margin-top: 4px;
}

.footer__bottom {
    padding-top: 40px;
    padding-bottom: 30px;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(235, 237, 237, 0.7);
}

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

.footer__privacy .menu li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(235, 237, 237, 0.7);
    transition: color var(--transition);
}

.footer__privacy .menu li a:hover {
    color: var(--color-platinum);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.popup.is-open {
    opacity: 1;
    visibility: visible;
}

.popup__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.popup__container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 20px;
}

.popup__content {
    display: flex;
    border-radius: 16px;
    border: 1px solid rgba(191, 152, 112, 0.6);
    box-shadow: 0 0 9px 0 rgba(189, 149, 109, 0.3);
    overflow: hidden;
}

.popup__form-side {
    flex: 1;
    background-color: #012930;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.popup__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    color: var(--color-frozen-water);
}

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

.popup__no-form {
    font-size: 14px;
    color: rgba(235, 237, 237, 0.7);
}

.popup__form .jet-form-builder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup__form .jet-form-builder__field-wrap input[type="text"],
.popup__form .jet-form-builder__field-wrap input[type="tel"],
.popup__form .jet-form-builder__field-wrap input[type="email"],
.popup__form .jet-form-builder__field-wrap input[type="url"],
.popup__form .jet-form-builder__field-wrap input[type="number"],
.popup__form .jet-form-builder__field-wrap select {
    width: 100%;
    height: 50px;
    background-color: #001A22;
    border: 1px solid rgba(198, 227, 223, 0.4);
    border-radius: 10px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-platinum);
    opacity: 0.8;
    backdrop-filter: blur(12px);
    transition: border-color var(--transition);
}

.popup__form .jet-form-builder__field-wrap textarea {
    width: 100%;
    min-height: 150px;
    background-color: #001A22;
    border: 1px solid rgba(198, 227, 223, 0.4);
    border-radius: 10px;
    padding: 20px 24px 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-platinum);
    opacity: 0.8;
    backdrop-filter: blur(12px);
    resize: vertical;
    transition: border-color var(--transition);
}

.popup__form .jet-form-builder__field-wrap input:focus,
.popup__form .jet-form-builder__field-wrap textarea:focus {
    border-color: rgba(198, 227, 223, 0.8);
    opacity: 1;
    outline: none;
}

.popup__form .jet-form-builder__field-wrap input::placeholder,
.popup__form .jet-form-builder__field-wrap textarea::placeholder {
    color: rgba(235, 237, 237, 0.7);
}

.popup__form .jet-form-builder__field-wrap label {
    display: none;
}

.popup__form .jet-form-builder-row {
    margin-bottom: 0;
    padding: 0;
}

.popup__form .jet-form-builder__submit {
    width: 100%;
    height: 50px;
    background-color: var(--color-frozen-water);
    color: var(--color-sea-green);
    border: none;
    border-radius: 68px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color var(--transition);
    margin-top: 8px;
}

.popup__form .jet-form-builder__submit:hover {
    background-color: var(--color-platinum);
}

.popup__form .jet-form-builder__submit-wrap {
    margin-top: 0;
}

.popup__form .field-type-checkbox-field {
    margin: 0;
}

.popup__form .field-type-checkbox-field .jet-form-builder__field-wrap {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.popup__form .field-type-checkbox-field input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid rgba(198, 227, 223, 0.4);
    border-radius: 3px;
    background-color: transparent;
    cursor: pointer;
    margin-top: 2px;
    transition: border-color var(--transition), background-color var(--transition);
}

.popup__form .field-type-checkbox-field input[type="checkbox"]:checked {
    background-color: var(--color-frozen-water);
    border-color: var(--color-frozen-water);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M10 3L4.5 8.5 2 6' fill='none' stroke='%2305292F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.popup__form .field-type-checkbox-field label {
    display: inline !important;
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-platinum);
    cursor: pointer;
}

.popup__form .field-type-checkbox-field label a {
    font-weight: 600;
    text-decoration: underline;
}

.popup__form .field-type-submit-field {
    margin-top: 8px;
}

.popup__form .field-type-submit-field .jet-form-builder__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    background-color: var(--color-frozen-water);
    color: var(--color-sea-green);
    border: none;
    border-radius: 68px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color var(--transition);
}

.popup__form .field-type-submit-field .jet-form-builder__submit:hover {
    background-color: var(--color-platinum);
}

.jet-form-builder-messages-wrap {
    margin: 0;
}

.jet-form-builder-messages-wrap:not(:empty) {
    margin-top: 16px;
}

.jet-form-builder-message,
.jet-form-builder-messages-wrap > * {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    text-align: left !important;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-frozen-water) !important;
}

.jet-form-builder-message--error {
    color: #FF9B9B !important;
}

.popup__image-side {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
}

.popup__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup__image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 10%, rgba(1, 41, 48, 0) 35%, rgba(1, 41, 48, 0.9) 85%, #012930 100%);
}

.popup__image-logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    opacity: 0.5;
}

.popup__image-logo img {
    width: 140px;
    height: auto;
}

.popup__content {
    position: relative;
}

.popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(191, 152, 112, 0.4);
    color: var(--color-platinum);
    cursor: pointer;
    transition: border-color var(--transition);
    z-index: 3;
}

.popup__close:hover {
    border-color: rgba(191, 152, 112, 0.8);
}

.projects__list-container {
    max-width: 1840px;
    width: 100%;
    margin: 0 auto;
    padding: 110px 20px 0;
}

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

.project-card {
    position: relative;
    height: 800px;
    border-radius: 30px;
    border: 1px solid #2B5256;
    overflow: hidden;
}

.project-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    will-change: transform;
}

.project-card__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(270deg,
        rgba(1, 32, 38, 0) clamp(36%, calc(78.15% - 1.99vw), 49.48%),
        rgba(1, 32, 38, 0.32) clamp(43.8%, calc(94.8% - 2.42vw), 60%),
        rgba(1, 32, 38, 0.97) clamp(58.4%, calc(126.4% - 3.22vw), 80%),
        rgb(1, 32, 38) 100%);
}

.project-card__inner {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding-top: 110px;
    padding-bottom: 40px;
}

.project-card__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    width: clamp(500px, calc(897px - 27.57vw), 685px);
}

.project-card__logo img {
    width: 262px;
    height: auto;
}

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

.project-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
    color: var(--color-platinum);
}

.project-card__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-platinum);
}

.project-card__btn .icon {
    flex-shrink: 0;
}

.project-card__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    margin-top: auto;
    padding: 24px;
    background-color: rgba(1, 32, 38, 0.8);
    backdrop-filter: blur(4.5px);
    border: 1px solid #2B5256;
    border-radius: 20px;
}

.project-card__stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.project-card__stat-divider {
    width: 1px;
    align-self: stretch;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.project-card__stat .icon {
    flex-shrink: 0;
    color: var(--color-frozen-water);
}

.project-card__stat-text {
    display: flex;
    flex-direction: column;
}

.project-card__stat-value {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-platinum);
    max-width: 280px;
}

.project-card__stat-label {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.1;
    color: rgba(235, 237, 237, 0.8);
}

.newsletter-section {
    position: relative;
    z-index: 1;
    max-width: 1406px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.newsletter {
    position: relative;
    background: linear-gradient(-90deg, #031C23, #00464F);
    border: 1px solid #2B5256;
    border-radius: 16px;
    padding: 40px 80px;
    overflow: hidden;
}

.newsletter__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.newsletter__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 140px;
}

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

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

.newsletter__logo img {
    width: 157px;
    height: auto;
}

.newsletter__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
    color: var(--color-platinum);
}

.newsletter__text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(235, 237, 237, 0.7);
}

.newsletter__form {
    width: 380px;
    flex-shrink: 0;
    padding: 16px;
    background-color: rgba(0, 47, 53, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
}

.newsletter__form .jet-form-builder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter__form .jet-form-builder-row {
    margin: 0;
    padding: 0;
}

.newsletter__form .field-type-submit-field {
    margin-top: 8px;
}

.newsletter__form .jet-form-builder__field-wrap input[type="text"],
.newsletter__form .jet-form-builder__field-wrap input[type="tel"],
.newsletter__form .jet-form-builder__field-wrap input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 10px 24px;
    background-color: transparent !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 227, 223, 0.3);
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-platinum) !important;
    opacity: 0.8;
    transition: opacity var(--transition), border-color var(--transition);
}

.newsletter__form .jet-form-builder__field-wrap input:focus {
    opacity: 1;
    border-color: var(--color-frozen-water);
    outline: none;
}

.newsletter__form .jet-form-builder__field-wrap input::placeholder {
    color: var(--color-platinum);
    opacity: 1;
}

.newsletter__form .jet-form-builder__field-wrap label {
    display: none;
}

.newsletter__form .jet-form-builder__action-button-wrapper {
    display: flex;
}

.newsletter__form .jet-form-builder__action-button.jet-form-builder__submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    padding: 10px 24px;
    background-color: var(--color-frozen-water);
    color: #002F35;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 68px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    overflow: hidden;
    transition: background-color var(--transition);
}

.newsletter__form .jet-form-builder__submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 5px;
    height: 71px;
    background-color: rgba(255, 255, 255, 0.8);
    filter: blur(6.5px);
    transform: translateY(-50%) rotate(-17deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.newsletter__form .jet-form-builder__submit::after {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-color: #002F35;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center / contain no-repeat;
}

.newsletter__form .jet-form-builder__submit:hover {
    background-color: var(--color-platinum);
}

.newsletter__form .jet-form-builder__submit:hover::before {
    left: calc(100% + 30px);
}

.newsletter__form .jet-form-builder__heading-desc,
.newsletter__form .jet-form-builder__field-label.for-checkbox {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-platinum);
}

.newsletter__form .jet-form-builder__heading-desc a,
.newsletter__form .jet-form-builder__field-label.for-checkbox a {
    color: var(--color-platinum);
    text-decoration: underline;
}

.blog-list {
    padding: 60px 0 100px;
    background-color: #002F35;
}

.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(198, 227, 223, 0.6);
    border-radius: 70px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-platinum);
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.blog-pagination .page-numbers:hover {
    border-color: var(--color-frozen-water);
}

.blog-pagination .page-numbers.current {
    background-color: var(--color-frozen-water);
    border-color: var(--color-frozen-water);
    color: var(--color-dark-teal);
}

.blog-pagination .page-numbers.dots {
    border-color: transparent;
    cursor: default;
}

.blog-pagination__arrow--prev {
    transform: rotate(90deg);
}

.blog-pagination__arrow--next {
    transform: rotate(-90deg);
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 6px 6px 24px;
    background-color: #01242A;
    border: 1px solid rgba(191, 152, 112, 0.5);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color var(--transition);
}

.blog-card:hover {
    border-color: var(--color-gold);
}

.blog-card__media {
    position: relative;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
}

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

.blog-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%);
}

.blog-card__badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 5px 10px;
    background-color: #002F35;
    border: 1px solid var(--color-blue-slate);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-frozen-water);
    white-space: nowrap;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 70px;
    padding: 0 24px;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-platinum);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-card__date {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-frozen-water);
}

.blog-card__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-gold);
}

.blog-card__link .icon {
    flex-shrink: 0;
}

@media (max-width: 1250px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .blog-card__media {
        height: 220px;
    }

    h1, .h1 { font-size: 48px; }
    h2, .h2 { font-size: 38px; }
    h3, .h3 { font-size: 32px; }
    h4, .h4 { font-size: 26px; }
    h5, .h5 { font-size: 22px; }

    .popup__form-side {
        padding: 40px;
    }

    .popup__image-side {
        width: 35%;
    }

    .popup__title {
        font-size: 28px;
    }

    .footer__top {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .footer__nav .menu {
        gap: 24px;
    }

    .footer__info {
        width: 40%;
    }

    .footer__columns {
        gap: 30px;
        width: 55%;
        flex-wrap: wrap;
        max-width: none;
    }

    .footer__column {
        max-width: none;
    }

    .footer__column:first-child {
        width: 100%;
    }

    .footer__column:first-child nav .menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 24px;
    }

    .footer__column:nth-child(2),
    .footer__column:nth-child(3) {
        width: calc(50% - 15px);
    }

    .project-card {
        height: 650px;
    }

    .project-card__inner {
        padding-top: 60px;
        padding-bottom: 24px;
    }

    .project-card__body {
        gap: 24px;
    }

    .project-card__desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

    .project-card__title {
        font-size: 32px;
    }

    .project-card__stats {
        flex-wrap: wrap;
        height: auto;
        gap: 24px 4%;
    }

    .project-card__stat {
        width: calc(50% - 2%);
    }

    .project-card__stat-divider {
        display: none;
    }

    .newsletter-section {
        margin-top: 60px;
    }

    .newsletter__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter__form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }

    .blog-card__media {
        height: 240px;
    }

    h1, .h1 { font-size: 36px; }
    h2, .h2 { font-size: 30px; }
    h3, .h3 { font-size: 26px; }
    h4, .h4 { font-size: 22px; }
    h5, .h5 { font-size: 20px; }

    .top-bar {
        display: none;
    }

    .breadcrumbs {
        padding: 8px 0;
    }

    .breadcrumbs__link,
    .breadcrumbs__current {
        font-size: 14px;
    }

    .breadcrumbs__item:not(:first-child):not(:last-child) .breadcrumbs__link {
        font-size: 0;
    }

    .breadcrumbs__item:not(:first-child):not(:last-child) .breadcrumbs__link::before {
        content: '...';
        font-size: 14px;
    }

    .site-header {
        top: 0;
        height: 50px;
        background-color: rgba(0, 25, 30, 0.8);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(191, 152, 112, 0.25);
    }

    .admin-bar .site-header {
        top: 46px;
    }

    .header__inner {
        height: 50px;
    }

    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header__logo img {
        width: 147px;
    }

    .header__cta {
        display: none;
    }

    .header__burger {
        display: flex;
        order: -1;
    }

    .header__actions {
        width: 100%;
        justify-content: space-between;
    }

    .header__lang-mobile {
        display: block;
    }

    .header__lang-mobile .lang-inline__item {
        font-size: 16px;
    }

    .mobile-menu__body {
        height: calc(100vh - 50px);
        height: calc(100dvh - 50px);
        margin-top: 50px;
    }

    .admin-bar .mobile-menu__body {
        height: calc(100vh - 82px);
        height: calc(100dvh - 82px);
        margin-top: 82px;
    }

    .admin-bar .mobile-menu__body {
        margin-top: 82px;
    }

    .footer__top {
        padding-top: 30px;
        padding-bottom: 24px;
    }

    .footer__top-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer__nav .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 20px;
    }

    .footer__cta {
        height: 50px;
    }

    .footer__main {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .footer__main-inner {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        gap: 40px;
    }

    .footer__info {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer__description {
        margin-top: 0;
    }

    .footer__socials {
        justify-content: center;
        margin-top: 0;
    }

    .footer__columns {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer__column {
        max-width: 100%;
        width: 100%;
    }

    .footer__column-title {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer__column nav .menu {
        align-items: center;
        gap: 16px;
        flex-direction: column;
    }

    .footer__column:first-child {
        width: 100%;
    }

    .footer__column:first-child nav .menu {
        flex-direction: column;
    }

    .footer__column:nth-child(2),
    .footer__column:nth-child(3) {
        width: 100%;
    }

    .footer__column-content {
        align-items: center;
        text-align: center;
    }

    .footer__address {
        text-align: center;
    }

    .footer__bottom {
        padding-top: 24px;
        padding-bottom: 30px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer__copyright {
        text-align: center;
        width: 100%;
    }

    .footer__privacy .menu {
        justify-content: space-between;
        width: 100%;
    }

    .popup__container {
        width: 90%;
        margin: 0 auto;
    }

    .popup__content {
        flex-direction: column;
        border-radius: 16px;
        position: relative;
    }

    .popup__form-side {
        padding: 50px 20px 30px;
        position: relative;
        z-index: 1;
    }

    .popup__title {
        font-size: 24px;
    }

    .popup__form-side {
        background: transparent;
    }

    .popup__content {
        background-color: #012930;
        overflow: hidden;
    }

    .popup__image-side {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        border-radius: 16px;
    }

    .popup__image-overlay {
        background: rgba(1, 41, 48, 0.75);
    }

    .popup__image-logo {
        display: none;
    }

    .popup__close {
        top: 10px;
        right: 10px;
        z-index: 3;
        background-color: rgba(1, 41, 48, 0.6);
        backdrop-filter: blur(8px);
    }

    .newsletter-section {
        margin-top: 50px;
        padding: 0 16px;
    }

    .newsletter {
        padding: 24px 32px;
    }

    .newsletter__logo img {
        width: 145px;
    }

    .newsletter__title {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 24px;
    }

    .newsletter__text {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.4;
    }

    .projects__list {
        margin-top: 40px;
        gap: 0;
    }

    .project-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 35px 16px;
        border-radius: 0;
        border: none;
        border-top: 1px solid #2B5256;
        border-bottom: 1px solid #2B5256;
        height: 570px;
    }

    .project-card__bg {
        border-radius: 0;
    }

    .project-card__gradient {
        background: linear-gradient(180deg, #012026 0%, rgba(1, 32, 38, 0.8) 15%, rgba(1, 32, 38, 0) 45.57%, rgba(1, 32, 38, 0.8) 80%, #012026 100%);
    }

    .project-card + .project-card {
        border-top: none;
    }

    .project-card__inner {
        display: contents;
    }

    .project-card__body {
        display: contents;
    }

    .project-card__logo {
        position: relative;
        z-index: 2;
        order: 1;
    }

    .project-card__logo img {
        width: 203px;
    }

    .project-card__content {
        display: none;
    }

    .project-card__stats {
        position: relative;
        z-index: 2;
        order: 2;
        height: auto;
        padding: 0;
        margin-top: auto;
        background: none;
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        gap: 0;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }

    .project-card__btn {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 50px;
        background-color: #1D5761;
        color: var(--color-frozen-water);
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 4px 16px rgba(1, 32, 38, 0.5);
        justify-content: center;
        font-weight: 500;
        order: 3;
        margin-top: 24px;
    }

    .project-card__btn:hover {
        background-color: var(--color-dark-teal);
    }

    .project-card__btn .icon {
        width: 16px;
        height: 16px;
    }

    .project-card__stat {
        gap: 8px;
        width: auto;
        flex: 1;
    }

    .project-card__stat:last-child .project-card__stat-label {
        display: none;
    }

    .project-card__stat--address,
    .project-card__stat-divider--address {
        display: none;
    }

    .project-card__stat-value {
        font-size: 14px;
        max-width: none;
    }

    .project-card__stat-label {
        font-size: 14px;
    }

    .project-card__stat-divider {
        height: 36px;
        align-self: center;
        display: block;
    }

    .projects__list-container {
        padding: 0;
    }
}
