/* =============================================
   АСПЭК ГРУПП — Фирменный стиль 2020
   Палитра «Волна»:
     Цвет №1 (бирюзовый):   RGB 64-180-166  #40B4A6
     Цвет №2 (тёмно-синий): RGB 0-51-116    #003374
     Цвет №3 (средний):     RGB 0-125-149   #007D95
   Шрифт: Montserrat
   ============================================= */

:root {
    /* Основная палитра брендбука */
    --color-teal:       #40B4A6;
    --color-teal-light: #5ECABB;
    --color-teal-dark:  #2E9B8E;
    --color-blue:       #003374;
    --color-blue-light: #0A4494;
    --color-blue-dark:  #00245A;
    --color-mid:        #007D95;

    /* Удобные алиасы */
    --color-primary:        var(--color-blue);
    --color-primary-light:  var(--color-blue-light);
    --color-primary-dark:   var(--color-blue-dark);
    --color-accent:         var(--color-teal);
    --color-accent-light:   var(--color-teal-light);
    --color-accent-dark:    var(--color-teal-dark);

    /* Нейтральные */
    --color-text:       #1e2d3d;
    --color-text-muted: #607080;
    /* --color-bg-light:   #f5f8fb;
    --color-bg-section: #edf2f7; */
    --color-bg-light:   #fff;
    --color-bg-section: #fff;

    /* Типографика */
    --font-heading: 'Montserrat', Arial, sans-serif;
    --font-body:    'Montserrat', Arial, sans-serif;

    /* Прочее */
    --border-radius: 8px;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 51, 116, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 51, 116, 0.14);
    --shadow-lg: 0 8px 40px rgba(0, 51, 116, 0.18);

    /* Градиент брендбука (Цвет №1 → Цвет №2, угол 129°) */
    --gradient-brand: linear-gradient(129deg, #40B4A6 0%, #007D95 40%, #003374 100%);
    --gradient-brand-h: linear-gradient(90deg, #40B4A6 0%, #007D95 40%, #003374 100%);

    /* Высота главного navbar = padding-top + logo 40px + padding-bottom */
    --navbar-height: calc(0.8rem + 40px + 0.8rem);

    /* Параметры синусоидальной волны (для слайдера и баннеров) */
    --wave-amp-max-pct: 15;
    --wave-amp-min-pct: 5;
    --wave-amp-mobile-breakpoint: 600;
    --wave-amp-desktop-breakpoint: 1440;
    --wave-phase-step-min: 20;
    --wave-phase-step-max: 30;
    --wave-phase-jitter-mul: 17;
}

html {
    /* Чтобы авто‑скролл (в т.ч. HTMX) не прятал верхний контент под navbar */
    scroll-padding-top: var(--navbar-height);
}

body {
    /* Отступ под fixed navbar ровно по высоте navbar */
    padding-top: var(--navbar-height);
}

html, body {
    /* Держим вертикальную полосу прокрутки всегда, чтобы ширина layout не прыгала */
    overflow-y: scroll;
}

/* =============================================
   Base
   ============================================= */
* { box-sizing: border-box; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.7;
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
}
a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; }
p { font-weight: 300; }
strong, b { font-weight: 600; }

/* =============================================
   Utility
   ============================================= */
.text-accent { color: var(--color-accent) !important; }
.text-teal   { color: var(--color-teal) !important; }
.text-blue   { color: var(--color-blue) !important; }
.bg-primary-dark { background-color: var(--color-primary-dark); }
.bg-gradient-brand { background: var(--gradient-brand); }

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
.section-divider {
    width: 48px; height: 3px;
    background: var(--gradient-brand-h);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.fw-600 { font-weight: 600; }
/* =============================================
   Navbar
   ============================================= */
.navbar-main {
    background: #ffffff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-main .navbar-brand { padding: 0; flex-shrink: 0; }
.navbar-main .navbar-brand img { height: 40px; width: auto; display: block; }
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.brand-accent { color: var(--color-teal); }
.navbar-main .nav-link {
    color: var(--color-blue) !important;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem !important;
    border-radius: 4px;
    transition: all var(--transition);
}
.navbar-main .navbar-nav {
    flex-wrap: nowrap;
}
.navbar-main .nav-item {
    white-space: nowrap;
}
.navbar-main .nav-link-phone {
    white-space: nowrap;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--color-teal) !important;
    background: rgba(64, 180, 166, 0.1);
}
.navbar-main .navbar-toggler {
    border-color: rgba(0,0,0,0.2);
    padding: 4px 6px;
}
.navbar-main .navbar-toggler-icon {
    filter: invert(1);
    opacity: 0.85;
}

/* Navbar dropdown hover for desktop */
@media (min-width: 992px) {
    .navbar-main .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Lang dropdown */
.lang-drop-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 1.25rem;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.lang-drop-btn:hover {
    border-color: var(--color-teal);
    background: rgba(64,180,166,0.15);
}
/* На белом фоне (десктопная панель) */
.d-none.d-lg-flex .lang-drop-btn {
    border-color: rgba(0,0,0,0.15);
}
.lang-drop-btn::after { display: none; }
.lang-drop-menu {
    min-width: auto;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.08);
}
.lang-drop-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-decoration: none;
    transition: background var(--transition);
}
.lang-drop-item:hover { background: rgba(64,180,166,0.12); }
.lang-drop-item.active { background: rgba(64,180,166,0.18); }

/* =============================================
   Hero / Slider
   ============================================= */
.hero-slider {
    position: relative;
    background: var(--color-bg-light);
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* Полосы по бокам на широком экране того же цвета, что и блок слайдера */
    overflow: visible;
}
.hero-slider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--color-bg-light);
    z-index: 0;
    pointer-events: none;
}
.hero-slider > * {
    position: relative;
    z-index: 1;
}
#heroCarousel {
    overflow: hidden;
}
.hero-slide {
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--color-bg-light);
    isolation: isolate;
    --hero-decor-left-shift: 0%;
    --hero-decor-left-effective: calc(var(--hero-decor-left, 8%) + var(--hero-decor-left-shift));
    --hero-subtitle-bottom-default: 3rem;
}
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
}
.hero-slide-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    pointer-events: none;
}
.hero-slide-decor {
    position: absolute;
    left: var(--hero-decor-left-effective, var(--hero-decor-left, 8%));
    top: var(--hero-decor-top, 15%);
    width: var(--hero-decor-width, 440px);
    height: var(--hero-decor-height, 320px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 0.7;
    mix-blend-mode: multiply;
    filter: saturate(1.5) brightness(0.9);
    z-index: 1;
    pointer-events: none;
}

/* Пока маски не рассчитаны, скрываем только фоновые слои баннеров (без скачков layout). */
/* html.wave-pending .hero-slide-bg,
html.wave-pending .page-header::before,
html.wave-pending .about-banner-bg {
    visibility: hidden;
} */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* Безопасные зоны текста внутри контуров декора */
.hero-slide-item--1 {
    --hero-decor-left: 7%;
    --hero-decor-top: 10%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.7186;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-left: var(--hero-decor-left);
    --hero-title-top: var(--hero-decor-top);
    --hero-title-width: var(--hero-decor-width);
    --hero-title-box-width: 72%;
    --hero-title-size-md: 50px;
    --hero-title-size-lg: 54px;
    --hero-subtitle-bottom: 3rem;
}
.hero-slide-item--2 {
    --hero-decor-left: 6%;
    --hero-decor-top: 10%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.7951;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-left: var(--hero-decor-left);
    --hero-title-top: var(--hero-decor-top);
    --hero-title-width: var(--hero-decor-width);
    --hero-title-box-width: 70%;
    --hero-title-size-md: 48px;
    --hero-title-size-lg: 52px;
    --hero-subtitle-bottom: 3rem;
}
.hero-slide-item--3 {
    --hero-decor-left: 7%;
    --hero-decor-top: 5%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.8233;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-left: var(--hero-decor-left);
    --hero-title-top: var(--hero-decor-top);
    --hero-title-width: var(--hero-decor-width);
    --hero-title-box-width: 66%;
    --hero-title-size-md: 46px;
    --hero-title-size-lg: 50px;
    --hero-subtitle-bottom: 0;
}
.hero-slide-item--4 {
    --hero-decor-left: 7%;
    --hero-decor-top: 8%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.6999;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-left: var(--hero-decor-left);
    --hero-title-top: var(--hero-decor-top);
    --hero-title-width: var(--hero-decor-width);
    --hero-title-box-width: 66%;
    --hero-title-size-md: 46px;
    --hero-title-size-lg: 50px;
    --hero-subtitle-bottom: 0;
}
/* Типографика как на www.aspec.ru у .banner__heading (родитель .banner__heading-text) */
.hero-title {
    position: absolute;
    left: var(--hero-decor-left-effective, var(--hero-decor-left, 8%));
    top: var(--hero-decor-top, 15%);
    width: var(--hero-decor-width, 440px);
    height: var(--hero-decor-height, 320px);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 650;
    font-size: 34px;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    max-width: none;
    letter-spacing: 0;
}
.hero-title-text {
    display: block;
    width: var(--hero-title-box-width, 70%);
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
    visibility: hidden;
    opacity: 0;
    transition: opacity 260ms ease;
}
.hero-title-text.is-fitted {
    visibility: visible;
    opacity: 1;
}
@media (min-width: 768px) {
    .hero-title { font-size: var(--hero-title-size-md, 56px); }
}
@media (min-width: 1024px) {
    .hero-title { font-size: var(--hero-title-size-lg, 60px); }
}

.hero-title-accent { color: var(--color-teal-light); }
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}
.hero-subtitle--overlay {
    display: none;
    position: absolute;
    left: var(--hero-decor-left-effective, var(--hero-decor-left, 8%));
    bottom: var(--hero-subtitle-bottom, var(--hero-subtitle-bottom-default, 2rem));
    max-width: 500px;
}
.hero-subtitle--below {
    display: none;
    max-width: min(86vw, 760px);
    margin: 0.75rem auto 0;
    padding: 0 1rem;
    /* color: rgba(0, 51, 116, 0.82); */
    text-align: left;
    opacity: 0;
    transition: opacity 180ms ease;
}
.hero-subtitle--below.is-visible {
    opacity: 1;
}

/* Декоративные полосы (волна) — отключены по требованию */
.hero-stripes {
    display: none !important;
}

.carousel-control-prev, .carousel-control-next {
    width: 44px; height: 44px;
    top: 50%; transform: translateY(-50%);
    background: rgba(64, 180, 166, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(64, 180, 166, 0.4);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
}
.hero-carousel-indicators {
    position: static;
    margin: 14px 0 0;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-subtitle--overlay {
        display: block;
    }
    .hero-subtitle--below {
        display: none;
    }
}

@media (max-width: 1400px) {
    .hero-slide { --hero-decor-left-shift: -1%; }
}

@media (max-width: 1200px) {
    .hero-slide { --hero-decor-left-shift: -5%; }
}

@media (max-width: 1024px) {
    .hero-slide { --hero-decor-left-shift: -10%; }
}
@media (max-width: 720px) {
    .hero-slide { --hero-decor-left-shift: -15%; }
}
.hero-carousel-indicators [data-bs-target] {
    width: 42px; height: 3px;
    border-radius: 2px;
    background-color: rgba(199, 205, 210, 0.9);
    border: none;
    margin: 0 6px;
    opacity: 1;
    transition: all var(--transition);
}
.hero-carousel-indicators [data-bs-target].active {
    background: var(--color-teal);
    width: 48px;
    border-top: 1px solid var(--color-teal);
    opacity: 1;
}

/* =============================================
   Stats Section
   ============================================= */
.stats-section {
    background: #fff;
    padding: 2rem 0;
}

.features-in-numbers__list {
    margin: 0 auto;
    max-width: 960px;
    --bs-gutter-x: 6rem;
}
.features-in-numbers__item {
    text-align: center;
}
.feature__img-box {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    align-self: stretch;
    min-height: 6rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    border-right: 3px solid var(--color-teal);
}
.feature__img-box .feature__img {
    width: 600%;
    height: 60%;
    object-fit: contain;
    display: block;
    margin-right: 1rem;
}
.feature__img-text {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}
.features-in-numbers__value {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--color-teal);
    line-height: 1.1;
    margin-bottom: 0.2rem;
    white-space: nowrap;
}
.features-in-numbers__label {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(0,51,116,0.75);
    line-height: 1.5;
}

.assets-switcher-cards {
    background: var(--color-bg-light);
}
.assets-switcher-cards .row {
    justify-content: center;
    overflow: visible;
}
.assets-switcher-cards [class*="col-"] {
    overflow: visible;
}
.asset-switch-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: #fff;
    /* border: 1px solid rgba(0,51,116,0.08); */
    border: 1px solid var(--color-teal);
    border: 1px solid color-mix(in srgb, var(--color-teal) 40%, transparent);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    color: var(--color-blue);
    text-decoration: none;
    transition: all var(--transition);
    outline: none;
    white-space: nowrap;
    min-width: 100px;
}
.asset-switch-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.asset-switch-card:hover:not(.active) {
    transform: translateY(-2px);
}
.asset-switch-card:focus-visible {
    box-shadow: 0 0 0 2px var(--color-teal);
}
.asset-switch-card.active {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
}
.asset-switch-card.active .asset-switch-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
}
.asset-switch-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(0,51,116,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-blue);
    flex-shrink: 0;
}
.asset-switch-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.leadership-switcher {
    overflow-x: auto;
    padding: 0 0.5rem;
}
.leadership-switch-card {
    padding: 0.5rem 0.9rem;
    min-width: 100px;
}
.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border: 1px solid rgba(0,51,116,0.08);
    border-radius: 16px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    cursor: default;
}
.stat-card:hover {
    transform: scale(1.06);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,51,116,0.10);
}
.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(0,51,116,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-icon {
    font-size: 1.8rem;
    color: var(--color-teal);
    margin-bottom: 0.75rem;
}

/* =============================================
   Assets / Directions
   ============================================= */
.assets-section { padding: 3rem 0; background: var(--color-bg-light); }
.asset-card {
    display: block;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 51, 116, 0.07);
    text-decoration: none;
    cursor: pointer;
}
.asset-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-teal);
}
.asset-card-icon {
    width: 56px; height: 56px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.25rem;
}
.asset-card-header .asset-card-icon { margin-bottom: 0; }
.asset-card-header .asset-card-title { display: flex; align-items: center; }
.asset-card-body { padding: 1.75rem; }
.asset-card-body-development, .asset-card-body-construction, .asset-card-body-auto, .asset-card-body-agro, .asset-card-body-forestry { position: relative; }
.asset-card-body-development::before, .asset-card-body-construction::before, .asset-card-body-auto::before, .asset-card-body-agro::before, .asset-card-body-forestry::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    right: -6px;
    height: 1rem;
    background-image: var(--decor-url);
    background-size: contain;
    background-repeat: no-repeat;
}
.asset-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
}
.asset-card-text {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Карточки компаний на странице актива */
.company-card-public {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,51,116,0.07);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.company-card-public:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-teal);
}
.company-card-public__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 0.35rem;
}
.company-card-public__desc {
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 300;
}
.company-card-public__website {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    word-break: break-all;
}
.company-card-public__website:hover {
    text-decoration: underline;
}
.company-card-public__img-wrap {
    margin-top: auto;
}
.company-card-public__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.asset-additionals__logo-wrap {
    overflow: hidden;
}

.asset-additionals__logo-img {
    object-fit: contain;
    transition: transform 0.25s ease;
    transform-origin: center center;
}

.asset-additionals__logo-wrap:hover .asset-additionals__logo-img {
    transform: scale(1.06);
}

/* =============================================
   Leadership
   ============================================= */
.about-leader-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,51,116,0.07);
    transition: all var(--transition);
}
.about-leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.about-leader-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gradient-brand);
}
.about-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 5%;
    transition: transform 0.4s;
}
.about-leader-card:hover .about-leader-photo img { transform: scale(1.04); }
.about-leader-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.4);
}
.about-leader-info { padding: 1.5rem; }
.about-leader-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 0.35rem;
}
.about-leader-pos {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.about-leader-bio {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
}
.about-leader-email {
    font-size: 0.82rem;
    color: var(--color-teal-dark);
    font-weight: 500;
}
.about-leader-email:hover { color: var(--color-blue); }


/* =============================================
   News Section
   ============================================= */
.news-section { padding: 5rem 0; }
.news-card {
    display: block;
    text-decoration: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 51, 116, 0.07);
    background: #fff;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img {
    height: 200px;
    background: var(--gradient-brand);
    overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.4);
}
.news-card-body { padding: 1.4rem; padding-top: 0.75rem; }
.news-card-category {
    display: inline-block;
    /* background: rgba(64, 180, 166, 0.12); */
    color: var(--color-teal-dark);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    /* padding: 2px 10px; */
    /* border-radius: 30px; */
    margin-bottom: 0.75rem;
}
.news-card-title {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.news-card-title { color: var(--color-blue); }
.news-card-date { font-size: 0.78rem; color: var(--color-text-muted); font-weight: 300; }
.news-card-excerpt { font-size: 0.88rem; color: var(--color-text-muted); margin-top: 0.5rem; font-weight: 300; }

/* =============================================
   Contact Section
   ============================================= */
.contact-section { padding: 5rem 0; background: var(--color-blue); }
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: rgba(255,255,255,0.65); }
.contact-section .section-divider { background: var(--gradient-brand-h); }
.contact-form {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}
.contact-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-weight: 300;
    transition: all var(--transition);
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.contact-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(64, 180, 166, 0.2);
    color: #fff;
}
.contact-form .form-label { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; margin-bottom: 0.4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: rgba(64, 180, 166, 0.18);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--color-teal);
}
.contact-info-text { color: rgba(255,255,255,0.75); font-weight: 300; }
.contact-info-text strong {
    color: #fff;
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.contact-info-text a { color: rgba(255,255,255,0.75); }
.contact-info-text a:hover { color: var(--color-teal); }

/* =============================================
   Buttons
   ============================================= */
.btn-accent {
    background: var(--gradient-brand);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-accent::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.0);
    transition: background var(--transition);
}
.btn-accent:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(64, 180, 166, 0.45);
}
.btn-accent:hover::after { background: rgba(255,255,255,0.08); }

.btn-outline-accent {
    border: 2px solid var(--color-teal);
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.6rem;
    border-radius: 4px;
    background: transparent;
    transition: all var(--transition);
}
.btn-outline-accent:hover {
    background: var(--color-teal);
    color: #fff;
}
.btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.6rem;
    border-radius: 4px;
    background: transparent;
    transition: all var(--transition);
}
.btn-outline-light-custom:hover {
    border-color: var(--color-teal);
    background: rgba(64, 180, 166, 0.15);
    color: #fff;
}

/* =============================================
   Page Header
   ============================================= */
.page-header {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: var(--color-bg-light);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: visible;
    height: 56vh;
    isolation: isolate;
    /* Полосы по бокам на широком экране + подложка под синусоидальный срез */
    box-shadow: 0 0 0 100vmax var(--color-bg-light);
    clip-path: inset(0 -100vmax);
}
/* Фон и синусоидальный срез (как у слайдера): только слой ::before, текст в .container поверх */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--gradient-brand);
    background-size: cover;
    background-position: center;
    -webkit-mask-image: var(--page-header-wave-mask, none);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: var(--page-header-wave-mask, none);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
}
.page-header.page-header--img::before {
    background: none;
    background-image: var(--page-header-bg-image);
    background-size: cover;
    background-position: center;
}
.page-header > .container {
    position: relative;
    z-index: 1;
}
.page-header.page-header--img::after {
    content: none;
}

#asset-page-title {
    max-width: 900px;
}

#asset-page-subtitle {
    max-width: 720px;
}

.page-header-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 105%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0;
    text-shadow: 0 0 6px rgba(0,0,0,0.10), 0 0 12px rgba(0,0,0,0.06),
                 1px 1px 2px rgba(0,0,0,0.06), -1px -1px 2px rgba(0,0,0,0.06), 1px -1px 2px rgba(0,0,0,0.06), -1px 1px 2px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
    .page-header-title { font-size: 52px; }
}
@media (min-width: 1024px) {
    .page-header-title { font-size: 62px; }
}

.page-header-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    /* text-shadow: 0 0 6px rgba(0,0,0,0.10), 0 0 12px rgba(0,0,0,0.06),
                 1px 1px 2px rgba(0,0,0,0.06), -1px -1px 2px rgba(0,0,0,0.06), 1px -1px 2px rgba(0,0,0,0.06), -1px 1px 2px rgba(0,0,0,0.06); */
    text-shadow: 0 0 6px color-mix(in srgb, var(--color-text-muted) 60%, transparent),
                 0 0 12px color-mix(in srgb, var(--color-text-muted) 60%, transparent),
                 1px 1px 2px color-mix(in srgb, var(--color-text-muted) 40%, transparent),
                 -1px -1px 2px color-mix(in srgb, var(--color-text-muted) 40%, transparent),
                 1px -1px 2px color-mix(in srgb, var(--color-text-muted) 40%, transparent),
                 -1px 1px 2px color-mix(in srgb, var(--color-text-muted) 40%, transparent);
}
/* =============================================
   Footer
   ============================================= */
.footer { background: var(--color-blue-dark); }
.footer-top { padding: 4rem 0; background-color: #25357a; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-heading {
    color: rgba(255,255,255);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.75rem;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0; }
.footer-nav a { color: rgba(255,255,255); font-size: 0.88rem; font-weight: 300; transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-teal-light); }
.footer-contacts { list-style: none; padding: 0; margin: 0; }
.footer-contacts li { color: rgba(255,255,255); font-size: 0.85rem; font-weight: 300; margin-bottom: 0.3rem; line-height: 1.55; }
.footer-contacts a { color: rgba(255,255,255); transition: color var(--transition); }
.footer-contacts a:hover { color: var(--color-teal-light); }
.footer-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-social-link {
    color: rgba(255,255,255,0.45);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    transition: all var(--transition);
}
.footer-social-link:hover {
    color: #fff;
    border-color: var(--color-teal);
    background: rgba(64, 180, 166, 0.2);
}
.footer-bottom {
    background: rgba(0,0,0,0.25);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   Leader Cards
   ============================================= */
.leader-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0, 51, 116, 0.07);
    padding: 2rem;
    text-align: center;
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-teal); }
.leader-photo {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.8rem;
    color: rgba(255,255,255,0.7);
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid rgba(64, 180, 166, 0.2);
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-name { font-size: 1rem; font-weight: 600; color: var(--color-blue); margin-bottom: 0.35rem; }
.leader-position { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.5; font-weight: 300; }

/* =============================================
   Values / About
   ============================================= */
.value-card {
    padding: 1.75rem;
    border-radius: var(--border-radius);
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-teal);
    transition: all var(--transition);
}
.value-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateX(4px); }
.value-icon { font-size: 1.8rem; color: var(--color-teal-dark); margin-bottom: 0.75rem; }
.value-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--color-blue); }
.value-text { color: var(--color-text-muted); font-size: 0.88rem; font-weight: 300; }

/* =============================================
   Career / Vacancies
   ============================================= */
.vacancy-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 51, 116, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    margin-bottom: 1rem;
}
.vacancy-card:hover { border-color: var(--color-teal); box-shadow: var(--shadow-md); }
.vacancy-title { font-size: 1.05rem; font-weight: 600; color: var(--color-blue); margin-bottom: 0.4rem; }
.vacancy-meta span { font-size: 0.83rem; color: var(--color-text-muted); margin-right: 1.25rem; font-weight: 300; }
.vacancy-meta i { color: var(--color-teal); }
.vacancy-salary { font-size: 0.95rem; font-weight: 600; color: var(--color-teal-dark); }

/* =============================================
   News Page
   ============================================= */
.news-detail-header { padding: 3rem 0 2rem; background: var(--color-bg-light); }
.news-content { line-height: 1.85; font-size: 1.02rem; font-weight: 300; }
.news-content p { margin-bottom: 1.25rem; }
.news-content h2, .news-content h3 { color: var(--color-blue); margin-top: 2rem; }

/* =============================================
   Buttons as filters
   ============================================= */
.filter-card-all,
.filter-card-corporate,
.filter-card-development,
.filter-card-construction,
.filter-card-auto,
.filter-card-agro,
.filter-card-forestry {
    position: relative; /* важно! */
    overflow: hidden;
}

.filter-card-all::before,
.filter-card-corporate::before,
.filter-card-development::before,
.filter-card-construction::before,
.filter-card-auto::before,
.filter-card-agro::before,
.filter-card-forestry::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1rem;
    background-image: var(--decor-url);
    /* background-size: contain; */
    /* background-size: cover; */
    background-size: 100% 100%;
    background-repeat: no-repeat;   
}

/* =============================================
   Misc
   ============================================= */
.section-cta { padding: 4rem 0; background: var(--color-bg-section); }
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }
.htmx-request.htmx-indicator { display: inline-block; }

/* =============================================
   Language Switcher
   ============================================= */

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 991.98px) {
    :root { --navbar-height: calc(0.5rem + 40px + 0.5rem); }
    .hero-slide {
        min-height: 420px;
        --hero-decor-left: 7%;
        --hero-decor-top: 12%;
        --hero-decor-width: min(74vw, 460px);
        --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio, 0.72));
        --hero-title-left: var(--hero-decor-left);
        --hero-title-top: var(--hero-decor-top);
        --hero-title-width: var(--hero-decor-width);
    }
    .hero-content {
        position: absolute;
        inset: 0;
    }
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        width: var(--hero-decor-width, min(74vw, 460px));
        height: var(--hero-decor-height, calc(var(--hero-decor-width, min(74vw, 460px)) * 0.72));
    }
    .hero-subtitle--overlay { display: none; }
    .hero-subtitle--below { display: block; }
    .hero-stripes { display: none; }
    .navbar-main { padding: 0.5rem 0; }
    .lang-drop-btn { padding: 1px 4px; font-size: 1.1rem; }

    /* Мобильное меню: подпункты всегда видны, в потоке, с отступом */
    .navbar-main .navbar-collapse {
        border-top: 1px solid rgba(0,51,116,0.08);
        padding: 0.5rem 0 1rem;
    }
    .navbar-main .navbar-collapse .dropdown-toggle::after {
        display: none;
    }
    .navbar-main .navbar-collapse .dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        border: none;
        border-left: 2px solid rgba(0,51,116,0.1);
        border-radius: 0;
        box-shadow: none;
        padding: 0.1rem 0 0.4rem 1rem;
        margin: 0 0 0.25rem 0.75rem;
    }
    .navbar-main .navbar-collapse .dropdown-item {
        color: rgba(0,51,116,0.6);
        font-family: var(--font-heading);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        padding: 0.3rem 0.5rem;
        border-radius: 4px;
        white-space: normal;
    }
    .navbar-main .navbar-collapse .dropdown-item:hover,
    .navbar-main .navbar-collapse .dropdown-item:focus {
        background: rgba(0,51,116,0.05);
        color: var(--color-blue);
    }
}

@media (max-width: 575.98px) {
    .hero-slide { min-height: 360px; }
    .hero-title { font-size: 1.9rem; }
}

/* === about.html === */
/* ---- Баннер ---- */
.about-banner {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: 56vh;
    display: flex;
    align-items: stretch;
    padding-bottom: 0;
    overflow: visible;
    background: var(--color-bg-light);
    box-shadow: 0 0 0 100vmax var(--color-bg-light);
    clip-path: inset(0 -100vmax);
    isolation: isolate;
    --hero-decor-left-shift: 0%;
    --hero-decor-left-effective: calc(var(--hero-decor-left, 8%) + var(--hero-decor-left-shift));
}
.about-banner--decor-1 {
    --hero-decor-left: 7%;
    --hero-decor-top: 10%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.7186;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-box-width: 72%;
    --hero-title-size-md: 50px;
    --hero-title-size-lg: 54px;
}
.about-banner--decor-2 {
    --hero-decor-left: 6%;
    --hero-decor-top: 10%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.7951;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-box-width: 70%;
    --hero-title-size-md: 48px;
    --hero-title-size-lg: 52px;
}
.about-banner--decor-3 {
    --hero-decor-left: 7%;
    --hero-decor-top: 5%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.8233;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-box-width: 66%;
    --hero-title-size-md: 46px;
    --hero-title-size-lg: 50px;
}
.about-banner--decor-4 {
    --hero-decor-left: 7%;
    --hero-decor-top: 8%;
    --hero-decor-width: 440px;
    --hero-decor-ratio: 0.6999;
    --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio));
    --hero-title-box-width: 66%;
    --hero-title-size-md: 46px;
    --hero-title-size-lg: 50px;
}
.about-banner-subtitle {
    display: block;
    position: absolute;
    left: var(--hero-decor-left-effective, var(--hero-decor-left, 8%));
    top: calc(var(--hero-decor-top, 10%) + var(--hero-decor-height, 320px) + 0.75rem);
    max-width: 640px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    z-index: 3;
    text-shadow: 0 0 6px rgba(0,0,0,0.10), 0 0 12px rgba(0,0,0,0.06),
                 1px 1px 2px rgba(0,0,0,0.06), -1px -1px 2px rgba(0,0,0,0.06),
                 1px -1px 2px rgba(0,0,0,0.06), -1px 1px 2px rgba(0,0,0,0.06);
}
.about-banner-content {
    flex: 1;
    width: 100%;
}
.about-banner .hero-slide-decor {
    z-index: 1;
}
.about-banner .hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
}
.about-banner .hero-title .hero-title-text {
    text-shadow: 0 0 6px rgba(0,0,0,0.10), 0 0 12px rgba(0,0,0,0.06),
                 1px 1px 2px rgba(0,0,0,0.06), -1px -1px 2px rgba(0,0,0,0.06),
                 1px -1px 2px rgba(0,0,0,0.06), -1px 1px 2px rgba(0,0,0,0.06);
}
.about-banner-bg {
    position: absolute; inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 30%;
    -webkit-mask-image: var(--about-banner-wave-mask, none);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: var(--about-banner-wave-mask, none);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: 0 0;
}
.about-banner-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 105%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0;
    text-shadow: 0 0 6px rgba(0,0,0,0.10), 0 0 12px rgba(0,0,0,0.06),
                 1px 1px 2px rgba(0,0,0,0.06), -1px -1px 2px rgba(0,0,0,0.06), 1px -1px 2px rgba(0,0,0,0.06), -1px 1px 2px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
    .about-banner-title { font-size: 52px; }
}
@media (min-width: 1024px) {
    .about-banner-title { font-size: 62px; }
}
.about-banner .section-title,
.about-banner .about-text {
    text-shadow: 0 0 6px rgba(0,0,0,0.10), 0 0 12px rgba(0,0,0,0.06),
                 1px 1px 2px rgba(0,0,0,0.06), -1px -1px 2px rgba(0,0,0,0.06), 1px -1px 2px rgba(0,0,0,0.06), -1px 1px 2px rgba(0,0,0,0.06);
}
.about-banner .section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 105%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0;
}
@media (min-width: 768px) {
    .about-banner .section-title { font-size: 52px; }
}
@media (min-width: 1024px) {
    .about-banner .section-title { font-size: 62px; }
}
/* ---- Изображения ---- */
.about-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }

/* ---- Текст ---- */
.about-text { font-size: 1.2rem; line-height: 1.5; color: var(--color-text); font-weight: 400; }
.about-text p { margin-bottom: 1rem; }
.ls-wider { letter-spacing: 1px; }

/* ---- Список миссии ---- */
.about-mission-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-mission-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.65;
}
.about-mission-icon {
    color: var(--color-teal);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---- Цифры ---- */
.about-feature-card {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,51,116,0.07);
    transition: all var(--transition);
    height: 100%;
}
.about-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-teal); }
.about-feature-icon {
    width: 56px; height: 56px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 1.25rem;
}
.about-feature-num {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.about-feature-text { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 300; line-height: 1.5; }

/* ---- Ценности ---- */
.about-value-card {
    padding: 2rem 1.25rem;
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 51, 116, 0.07);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    transition: all var(--transition);
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.about-value-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}
.about-value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
}
.about-value-img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 40vh;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}
.about-value-body {
    width: var(--value-img-w, 100%);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.about-value-text {
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* =============================================
   Site breadcrumb (below banners)
   ============================================= */
.site-breadcrumb {
    background: #fff;
    /* border-bottom: 1px solid rgba(0,51,116,0.07); */
    padding: 0.45rem 0;
}
.site-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 0.75rem;
}
.site-breadcrumb .breadcrumb-item { color: rgba(0,51,116,0.5); }
.site-breadcrumb .breadcrumb-item a { color: rgba(0,51,116,0.55); text-decoration: none; }
.site-breadcrumb .breadcrumb-item a:hover { color: var(--color-teal-dark); }
.site-breadcrumb .breadcrumb-item.active { color: rgba(0,51,116,0.75); }
.site-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(0,51,116,0.3); }

@media (max-width: 767.98px) {
    .about-banner { min-height: 260px; }
    .about-banner--decor-1,
    .about-banner--decor-2,
    .about-banner--decor-3,
    .about-banner--decor-4 {
        --hero-decor-left: 7%;
        --hero-decor-top: 12%;
        --hero-decor-width: min(74vw, 460px);
        --hero-decor-height: calc(var(--hero-decor-width) * var(--hero-decor-ratio, 0.72));
    }
    .about-banner .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        width: var(--hero-decor-width, min(74vw, 460px));
        height: var(--hero-decor-height, calc(var(--hero-decor-width, min(74vw, 460px)) * 0.72));
    }
    .about-img { height: 260px; }
    .about-leader-photo { height: 300px; }
}

