/**
 * Module: About Page Styles
 * Purpose: Стили страницы «О нас»: hero-секция (node 994:10544) и секция команды (node 998:4921).
 * Inputs: design-tokens.css, base.css, components.css, city-hub.css.
 * Outputs: Оформление hero-блока — бейдж, H1, lead, feature-пилюли, CTA, карточка; блок «Wer wir sind».
 * Notes: Переиспользует .vc-btn без дублирования; namespace vc-about-*.
 */

/* ==========================================================================
   PAGE WRAPPER
   ========================================================================== */

.vc-about-page {
    background-color: var(--vc-color-bg-primary);
    color: var(--vc-color-text-primary);
    font-family: var(--vc-font-family);
    margin-top: -30px;
    padding-top: 30px;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.vc-about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--vc-space-2);
    padding-top: var(--vc-space-8);
    margin-bottom: var(--vc-space-8);
    font-size: var(--vc-font-size-body-xs);
    line-height: var(--vc-line-height-relaxed);
    color: var(--vc-color-primary);
}

.vc-about-breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--vc-transition-fast);
}

.vc-about-breadcrumbs a:hover {
    opacity: 0.8;
}

.vc-about-breadcrumbs__sep {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    background: url('../img/icon/2026-03-04_17-33-03.png') center / contain no-repeat;
    opacity: 0.6;
}

.vc-about-breadcrumbs__current {
    color: var(--vc-color-text-muted);
}

/* ==========================================================================
   HERO SURFACE (gradient background, full-width)
   ========================================================================== */

.vc-about-surface {
    background: linear-gradient(180deg, var(--vc-color-bg-primary) 0%, var(--vc-color-bg-secondary) 100%);
    padding-bottom: var(--vc-space-16);
}

/* ==========================================================================
   HERO LAYOUT (two-column grid)
   ========================================================================== */

.vc-about-hero {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Right column: offset 33px lower than left col to match Figma (55px vs 22px from section top) */
.vc-about-hero__aside {
    margin-top: 33px;
}

/* ==========================================================================
   LEFT COLUMN: CONTENT
   ========================================================================== */

.vc-about-hero__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* --- Badge --- */

.vc-about-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    line-height: 20px;
    font-weight: var(--vc-font-weight-medium);
}

/* --- H1 --- */

.vc-about-hero__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);   /* 32px */
    line-height: 40px;
    font-weight: var(--vc-font-weight-bold);
    color: var(--vc-color-text-primary);
}

/* --- Lead paragraph --- */

.vc-about-hero__lead {
    margin: 0;
    font-size: var(--vc-font-size-body);  /* 16px */
    line-height: var(--vc-line-height-normal);
    font-weight: var(--vc-font-weight-medium);
    color: var(--vc-color-text-muted);
}

/* --- Feature pills --- */

.vc-about-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vc-about-hero__feature {
    display: inline-flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-full);
    font-size: var(--vc-font-size-body);  /* 16px */
    font-weight: var(--vc-font-weight-medium);
    color: var(--vc-color-primary);
    line-height: 20px;
    white-space: nowrap;
}

/* --- CTA row --- */

.vc-about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

/* Secondary ghost button (light-blue bg, matches Figma) */
.vc-about-hero__btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--vc-btn-padding-y) 30px;
    box-sizing: border-box;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-primary-light);
    color: var(--vc-color-primary);
    font-size: var(--vc-btn-font-size);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    text-decoration: none;
    transition: background var(--vc-transition-fast), color var(--vc-transition-fast);
    white-space: nowrap;
}

.vc-about-hero__btn-soft:hover {
    background: rgba(33, 92, 162, 0.15);
    color: var(--vc-color-primary);
}

/* ==========================================================================
   RIGHT COLUMN: ASIDE CARD
   ========================================================================== */

.vc-about-hero__aside-card {
    background: var(--vc-color-bg-secondary);
    border-radius: var(--vc-radius-2xl);  /* 25px */
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* --- Photo block --- */

.vc-about-hero__photo {
    width: 100%;
    height: 153px;
    border-radius: var(--vc-radius-lg);   /* 15px */
    overflow: hidden;
    flex-shrink: 0;
}

.vc-about-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Stats list --- */

.vc-about-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Stat card --- */

.vc-about-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-lg);   /* 15px */
}

.vc-about-hero__stat-value {
    margin: 0;
    font-size: 20px;
    font-weight: var(--vc-font-weight-bold);
    line-height: 20px;
    color: var(--vc-color-text-primary);
}

.vc-about-hero__stat-label {
    margin: 0;
    font-size: var(--vc-font-size-body-sm);  /* 14px */
    font-weight: var(--vc-font-weight-medium);
    color: var(--vc-color-text-muted);
    line-height: 20px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .vc-about-hero {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 768px) {
    .vc-about-surface {
        padding-bottom: var(--vc-space-12);
    }

    .vc-about-hero {
        grid-template-columns: 1fr;
        gap: var(--vc-space-8);
    }

    .vc-about-hero__aside {
        margin-top: 0;
    }

    .vc-about-hero__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-hero__feature {
        font-size: var(--vc-font-size-body-sm);
        padding: 12px 16px;
        white-space: normal;
    }

    .vc-about-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--vc-space-4);
    }

    .vc-about-hero__photo {
        height: 200px;
    }

    .vc-about-breadcrumbs {
        display: none;
    }
}

/* ==========================================================================
   TEAM SECTION — «Wer wir sind» (Figma node 998:4921)
   ========================================================================== */

.vc-about-team {
    background-color: var(--vc-color-bg-primary);
    padding-top: var(--vc-space-25);
    padding-bottom: var(--vc-space-25);
}

/* --- Section heading block --- */

.vc-about-team__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.vc-about-team__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

.vc-about-team__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);    /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

.vc-about-team__desc {
    margin: 0;
    font-size: var(--vc-font-size-body);  /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
    max-width: 860px;
}

/* --- Head row: badge/title области + стрелки справа --- */

.vc-about-team__head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* --- Стрелки слайдера --- */

.vc-about-team__arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ==========================================================================
   SHARED SLIDER ARROW BUTTONS
   (используются в team и gallery секциях)
   ========================================================================== */

.vc-about-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    cursor: pointer;
    transition: background var(--vc-transition-fast), opacity var(--vc-transition-fast);
    padding: 0;
    flex-shrink: 0;
}

.vc-about-slider-arrow:hover:not(:disabled) {
    background: var(--vc-color-bg-secondary);
}

.vc-about-slider-arrow:disabled {
    cursor: default;
}

.vc-about-slider-arrow svg {
    display: block;
    flex-shrink: 0;
}

/* --- Cards slider (horizontal scroll) --- */

.vc-about-team__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.vc-about-team__grid::-webkit-scrollbar {
    display: none;
}

/* --- Single card --- */

.vc-about-team__card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* --- Photo wrapper --- */

.vc-about-team__photo {
    width: 100%;
    height: 255px;
    border-radius: var(--vc-radius-lg);   /* 15px */
    overflow: hidden;
    flex-shrink: 0;
}

.vc-about-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* --- Text block --- */

.vc-about-team__text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vc-about-team__name {
    margin: 0;
    font-size: var(--vc-font-size-body);  /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-primary);       /* #215CA2 */
}

.vc-about-team__caption {
    margin: 0;
    font-size: var(--vc-font-size-body-sm); /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Responsive: 768px --- */

@media (max-width: 768px) {
    .vc-about-team {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-team__heading {
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-team__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-team__card {
        flex: 0 0 180px;
    }

    .vc-about-team__photo {
        height: 200px;
    }
}

/* --- Responsive: 480px --- */

@media (max-width: 480px) {
    .vc-about-team__card {
        flex: 0 0 160px;
    }

    .vc-about-team__photo {
        height: 180px;
    }
}

/* ==========================================================================
   WHY CHOOSE SECTION — «Wer wir sind / Why Choose» (Figma node 1010:12091)
   ========================================================================== */

.vc-about-why {
    background-color: var(--vc-color-bg-primary);
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Section heading --- */

.vc-about-why__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.vc-about-why__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

.vc-about-why__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);      /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

.vc-about-why__desc {
    margin: 0;
    font-size: var(--vc-font-size-body);    /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Body: two-column layout --- */

.vc-about-why__body {
    display: grid;
    grid-template-columns: 1fr minmax(0, 480px);
    gap: 50px;
    align-items: stretch;
}

/* --- Left column: feature cards --- */

.vc-about-why__cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.vc-about-why__card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-lg);     /* 15px */
}

/* --- Icon variants --- */

.vc-about-why__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-about-why__icon img {
    display: block;
}

/* Blue icon box (cards 2 & 3) */
.vc-about-why__icon--box {
    background: var(--vc-color-primary-light);
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

/* --- Card text block --- */

.vc-about-why__card-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vc-about-why__card-title {
    margin: 0;
    font-size: var(--vc-font-size-body);    /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-primary);         /* #215CA2 */
}

.vc-about-why__card-desc {
    margin: 0;
    font-size: var(--vc-font-size-body-sm); /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Right column: photo --- */

.vc-about-why__photo {
    position: relative;
    border-radius: var(--vc-radius-lg);     /* 15px */
    overflow: hidden;
    min-height: 400px;
}

.vc-about-why__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- Responsive: 1024px --- */

@media (max-width: 1024px) {
    .vc-about-why {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .vc-about-why__body {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .vc-about-why__photo {
        min-height: 300px;
    }
}

/* --- Responsive: 768px --- */

@media (max-width: 768px) {
    .vc-about-why {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-why__heading {
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-why__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-why__body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vc-about-why__photo {
        min-height: 280px;
        order: -1;  /* photo on top on mobile */
    }
}

/* ==========================================================================
   TRUST SECTION — «Warum Kunden uns vertrauen» (Figma node 998:5031)
   ========================================================================== */

.vc-about-trust {
    background-color: var(--vc-color-bg-secondary);  /* #F4F7FA */
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Section heading --- */

.vc-about-trust__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.vc-about-trust__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

.vc-about-trust__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);       /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

/* --- Cards grid: 3 columns × 2 rows --- */

.vc-about-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* --- Single card --- */

.vc-about-trust__card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-lg);      /* 15px */
}

/* --- Icon box (blue bg, all cards) --- */

.vc-about-trust__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vc-color-primary-light);
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.vc-about-trust__icon img {
    display: block;
    flex-shrink: 0;
}

/* --- Card text --- */

.vc-about-trust__card-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vc-about-trust__card-title {
    margin: 0;
    font-size: var(--vc-font-size-body);     /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-primary);          /* #215CA2 */
}

.vc-about-trust__card-desc {
    margin: 0;
    font-size: var(--vc-font-size-body-sm);  /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Responsive: 1024px — 2 columns --- */

@media (max-width: 1024px) {
    .vc-about-trust {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .vc-about-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Responsive: 768px — 1 column --- */

@media (max-width: 768px) {
    .vc-about-trust {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-trust__heading {
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-trust__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-trust__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PHOTOWALL SECTION — «Galerie» (Figma node 998:5499)
   ========================================================================== */

.vc-about-photowall {
    background-color: var(--vc-color-bg-secondary);
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Heading --- */

.vc-about-photowall__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.vc-about-photowall__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

.vc-about-photowall__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

/* --- Mosaic grid ---
   Desktop layout:
   [ main (spans 2 rows) ] [ photo2 ] [ photo3 ]
   [ main                ] [ photo4 ] [ photo5 ]
   ========================================================================== */

.vc-about-photowall__grid {
    display: grid;
    grid-template-columns: 33% 1fr 1fr;
    grid-template-rows: 315px 315px;
    gap: 24px;
}

/* --- Main tall photo spans 2 rows --- */

.vc-about-photowall__photo--main {
    grid-row: 1 / span 2;
}

/* --- Photo tile (shared) --- */

.vc-about-photowall__photo {
    position: relative;
    border-radius: var(--vc-radius-lg);      /* 15px */
    overflow: hidden;
}

.vc-about-photowall__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- Label chip (top-left overlay) --- */

.vc-about-photowall__label {
    position: absolute;
    top: 7px;
    left: 7px;
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    background: var(--vc-color-bg-secondary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-full);
    font-size: var(--vc-font-size-body-sm);  /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-primary);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

/* --- Responsive: 1024px — reduce row heights --- */

@media (max-width: 1024px) {
    .vc-about-photowall {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .vc-about-photowall__grid {
        grid-template-rows: 240px 240px;
    }
}

/* --- Responsive: 768px — 2 columns, main goes full width on top --- */

@media (max-width: 768px) {
    .vc-about-photowall {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-photowall__heading {
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-photowall__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-photowall__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 200px 200px;
        gap: 16px;
    }

    /* Main takes full width in first row */
    .vc-about-photowall__photo--main {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
}

/* --- Responsive: 480px — single column --- */

@media (max-width: 480px) {
    .vc-about-photowall__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
        gap: 16px;
    }

    .vc-about-photowall__photo--main {
        grid-column: 1;
        grid-row: 1;
    }
}

/* ==========================================================================
   GALLERY SECTION — «Услуги уборки» (Figma node 998:5401)
   ========================================================================== */

.vc-about-gallery {
    background-color: var(--vc-color-bg-primary);
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Heading wrapper: badge-row + title --- */

.vc-about-gallery__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

/* --- Head row: badge слева + стрелки справа --- */

.vc-about-gallery__head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* --- Badge --- */

.vc-about-gallery__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

/* --- Стрелки слайдера --- */

.vc-about-gallery__arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* --- Section title --- */

.vc-about-gallery__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);       /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

/* --- Cards slider: horizontal scroll --- */

.vc-about-gallery__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.vc-about-gallery__grid::-webkit-scrollbar {
    display: none;
}

/* --- Single card --- */

.vc-about-gallery__item {
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- Photo wrapper --- */

.vc-about-gallery__photo {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: var(--vc-radius-lg);      /* 15px */
    overflow: hidden;
    flex-shrink: 0;
}

.vc-about-gallery__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- Text block --- */

.vc-about-gallery__text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vc-about-gallery__name {
    margin: 0;
    font-size: var(--vc-font-size-body);     /* 16px */
    font-weight: var(--vc-font-weight-semibold, 600);
    line-height: 20px;
    color: var(--vc-color-text-primary);
}

.vc-about-gallery__desc {
    margin: 0;
    font-size: var(--vc-font-size-body-sm);  /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Responsive: 1024px --- */

@media (max-width: 1024px) {
    .vc-about-gallery {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* --- Responsive: 768px --- */

@media (max-width: 768px) {
    .vc-about-gallery {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-gallery__title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-gallery__item {
        flex: 0 0 180px;
    }

    .vc-about-gallery__photo {
        height: 160px;
    }
}

/* --- Responsive: 480px --- */

@media (max-width: 480px) {
    .vc-about-gallery__item {
        flex: 0 0 160px;
    }

    .vc-about-gallery__photo {
        height: 140px;
    }
}

/* ==========================================================================
   FACTS SECTION — «Fakten & Einsatzgebiet» (Figma node 998:5273)
   ========================================================================== */

.vc-about-facts {
    background-color: var(--vc-color-bg-secondary);  /* #F4F7FA */
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Heading block --- */

.vc-about-facts__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.vc-about-facts__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

.vc-about-facts__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);       /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

.vc-about-facts__desc {
    margin: 0;
    font-size: var(--vc-font-size-body);     /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Body: left stats + right photo --- */

.vc-about-facts__body {
    display: flex;
    gap: 25px;
    align-items: stretch;
    min-height: 400px;
}

/* --- Left: 2×2 stat grid --- */

.vc-about-facts__stats {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vc-about-facts__row {
    display: flex;
    gap: 25px;
    flex: 1 0 0;
    min-height: 0;
}

/* --- Single stat card --- */

.vc-about-facts__card {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 30px;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-lg);      /* 15px */
}

.vc-about-facts__value {
    margin: 0;
    font-size: 24px;
    font-weight: var(--vc-font-weight-medium);
    line-height: 32px;
    color: var(--vc-color-primary);          /* #215CA2 */
}

.vc-about-facts__label {
    margin: 0;
    font-size: var(--vc-font-size-body-sm);  /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Right: team photo --- */

.vc-about-facts__photo {
    flex: 1 0 0;
    min-width: 0;
    position: relative;
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-lg);      /* 15px */
    overflow: hidden;
}

.vc-about-facts__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* --- Responsive: 1024px --- */

@media (max-width: 1024px) {
    .vc-about-facts {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* --- Responsive: 768px — stack vertically --- */

@media (max-width: 768px) {
    .vc-about-facts {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-facts__heading {
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-facts__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-facts__body {
        flex-direction: column;
        min-height: auto;
    }

    .vc-about-facts__stats {
        flex: none;
    }

    .vc-about-facts__row {
        flex: none;
    }

    .vc-about-facts__card {
        min-height: 130px;
    }

    .vc-about-facts__photo {
        flex: none;
        min-height: 280px;
    }
}

/* --- Responsive: 480px — single stat column --- */

@media (max-width: 480px) {
    .vc-about-facts__row {
        flex-direction: column;
    }

    .vc-about-facts__card {
        min-height: 110px;
    }
}

/* ==========================================================================
   CTA BANNER — (Figma node 994:10796)
   ========================================================================== */

.vc-about-cta {
    background-color: var(--vc-color-bg-primary);
    padding-top: 0;
    padding-bottom: 50px;
}

/* --- Blue card --- */

.vc-about-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 36px;
    background: var(--vc-color-primary);    /* #215CA2 */
    border-radius: 16px;
    box-sizing: border-box;
}

/* --- Left: text content --- */

.vc-about-cta__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    min-width: 0;
    color: var(--vc-color-text-inverse);
}

.vc-about-cta__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);        /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: normal;
    color: var(--vc-color-text-inverse);
}

.vc-about-cta__desc {
    margin: 0;
    font-size: var(--vc-font-size-body);      /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: normal;
    color: var(--vc-color-text-inverse);
}

/* --- Right: action buttons --- */

.vc-about-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 260px;
    width: 260px;
}

/* Button 1: white bg, blue text, modal trigger */
.vc-about-cta__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    background: var(--vc-color-bg-primary);
    border-radius: 1000px;
    color: var(--vc-color-primary);
    font-size: var(--vc-font-size-body-sm);   /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--vc-transition-fast);
}

.vc-about-cta__btn-primary:hover {
    opacity: 0.9;
    color: var(--vc-color-primary);
}

/* Button 2: gradient bg, white border, white text
   background-clip: padding-box ensures gradient doesn't bleed under the border */
.vc-about-cta__btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    background: var(--vc-gradient-primary);
    background-clip: padding-box;
    border: 2px solid #ffffff;
    border-radius: 1000px;
    box-shadow: 0 0 50px 0 rgba(33, 92, 162, 0.25);
    color: var(--vc-color-text-inverse);
    font-size: var(--vc-font-size-body-sm);   /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--vc-transition-fast);
}

.vc-about-cta__btn-secondary:hover {
    background: var(--vc-gradient-primary-hover);
    color: var(--vc-color-text-inverse);
}

/* --- Responsive: 768px — stack vertically --- */

@media (max-width: 768px) {
    .vc-about-cta {
        padding-bottom: var(--vc-space-10);
    }

    .vc-about-cta__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 30px 24px;
    }

    .vc-about-cta__title {
        font-size: 22px;
    }

    .vc-about-cta__actions {
        flex: none;
        width: 100%;
    }

    .vc-about-cta__btn-primary,
    .vc-about-cta__btn-secondary {
        white-space: normal;
        text-align: center;
    }
}

/* ==========================================================================
   PROCESS SECTION — «So arbeiten wir» (Figma node 998:5138)
   ========================================================================== */

.vc-about-process {
    background-color: var(--vc-color-bg-primary);
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Heading block --- */

.vc-about-process__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.vc-about-process__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 15px;
    border-radius: var(--vc-radius-full);
    background: var(--vc-color-error-bg);
    color: var(--vc-color-error);
    font-size: var(--vc-font-size-body-sm);
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

.vc-about-process__title {
    margin: 0;
    font-size: var(--vc-font-size-h2);       /* 32px */
    font-weight: var(--vc-font-weight-bold);
    line-height: 40px;
    color: var(--vc-color-text-primary);
}

/* --- Steps grid: 5 equal columns --- */

.vc-about-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* --- Single step card --- */

.vc-about-process__card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background: var(--vc-color-bg-primary);
    border: 1px solid var(--vc-color-border);
    border-radius: var(--vc-radius-lg);       /* 15px */
}

/* --- Number circle (solid blue, white digit) --- */

.vc-about-process__num {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vc-color-primary);      /* #215CA2 */
    border-radius: 50%;
    color: var(--vc-color-text-inverse);
    font-size: 27px;
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
}

/* --- Card text block --- */

.vc-about-process__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vc-about-process__card-title {
    margin: 0;
    font-size: var(--vc-font-size-body);      /* 16px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-primary);           /* #215CA2 */
}

.vc-about-process__card-desc {
    margin: 0;
    font-size: var(--vc-font-size-body-sm);   /* 14px */
    font-weight: var(--vc-font-weight-medium);
    line-height: 20px;
    color: var(--vc-color-text-muted);
}

/* --- Responsive: 1024px — 3 columns --- */

@media (max-width: 1024px) {
    .vc-about-process {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .vc-about-process__steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Responsive: 768px — 2 columns --- */

@media (max-width: 768px) {
    .vc-about-process {
        padding-top: var(--vc-space-16);
        padding-bottom: var(--vc-space-16);
    }

    .vc-about-process__heading {
        margin-bottom: var(--vc-space-10);
    }

    .vc-about-process__title {
        font-size: 22px;
        line-height: 30px;
    }

    .vc-about-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Responsive: 480px — 1 column --- */

@media (max-width: 480px) {
    .vc-about-process__steps {
        grid-template-columns: 1fr;
    }
}
