

/* Start:/local/templates/zakka-new-template/css/about-page.css?176700770915350*/
/**
 * Стили страницы "О компании"
 * Контейнер контента: 1440px
 */

/* ============================================
   ОБЩИЕ СТИЛИ СТРАНИЦЫ
   ============================================ */
.about-page {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
}

/* Единый контейнер для всех секций */
.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HERO-БЛОК
   ============================================ */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 65px 0 0;
    /* Фиолетовый фон на всю ширину экрана */
    background-color: #E8D5FF;
    /* Сетка через CSS (repeating-linear-gradient) */
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 19px,
            rgba(255, 255, 255, 0.3) 19px,
            rgba(255, 255, 255, 0.3) 20px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 19px,
            rgba(255, 255, 255, 0.3) 19px,
            rgba(255, 255, 255, 0.3) 20px
        );
    overflow: visible;
}

.about-hero__container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 24px;
    align-items: start;
    overflow: visible;
    isolation: isolate;
}

/* Окно с контентом (левая часть) */
.about-hero__window {
    position: relative;
    background-color: #ffffff;
    border: none;
    padding: 0;
    z-index: 2;
    grid-column: 1 / 2;
    grid-row: 1;
    overflow: hidden;
    border-top-right-radius: 28px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.about-hero__window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #FFC0CB;
    z-index: 0;
    border-top-right-radius: 28px;
    border-top-left-radius: 28px;
}

.about-hero__window::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid #000000;
    border-radius: 28px;
    pointer-events: none;
    z-index: 10;
}

/* Верхняя панель окна (розовая полоса + 2 кружка) */
.about-hero__window-header {
    position: relative;
    background: none;
    padding: 12px 20px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    z-index: 1;
}

.about-hero__window-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-hero__window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-hero__window-dot--red {
    background-color: #FF5F57;
}

.about-hero__window-dot--yellow {
    background-color: #FFBD2E;
}

/* Контент окна */
.about-hero__window-content {
    position: relative;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
    max-width: 720px;
}

.about-hero__title {
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-hero__text {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
}

.about-hero__text p {
    margin: 0 0 16px 0;
}

.about-hero__text p:last-child {
    margin-bottom: 0;
}

/* CTA-блок (кнопки снаружи окна) */
.about-hero__cta {
    position: relative;
    z-index: 3;
    grid-column: 1 / 2;
    grid-row: 2;
    margin-top: 20px;
    padding-bottom:20px;
}

/* Обёртка для кнопок */
.about-hero__button-wrapper {
    margin-top: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
}

.about-hero__button-wrapper a {
    color: #ffffff;
}

.about-hero__button-wrapper a svg {
    color: #ffffff;
}

/* Основная кнопка */
.about-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: #3D6EEE;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-hero__button:hover {
    background-color: #2B5BD9;
    transform: translateY(-2px);
    color: #ffffff; /* Цвет текста не изменяется при наведении */
}

.about-hero__button-text {
    color: #ffffff;
}

.about-hero__button:hover .about-hero__button-text {
    color: #ffffff; /* Цвет текста не изменяется при наведении */
}

.about-hero__button:active {
    transform: translateY(0);
}

/* Круглая кнопка-акцент со стрелкой */
.about-hero__button-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #3D6EEE;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.about-hero__button-accent:hover {
    background-color: #2B5BD9;
    transform: translateY(-2px) scale(1.05);
}

.about-hero__button-accent:active {
    transform: translateY(0) scale(1);
}

.about-hero__button-accent svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Правая часть: декоративная картинка "ромашка" */
.about-hero__image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 4;
    transform: none;
}

.about-hero__image {
    width: 630px;
    height: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

/* ============================================
   БЛОК ПРЕИМУЩЕСТВА (FEATURE BLOCK)
   ============================================ */

.about-feature {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
}

.about-feature__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Зеркальная компоновка через order */
.about-feature--reverse .about-feature__content {
    order: 2;
}

.about-feature--reverse .about-feature__image {
    order: 1;
}

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

.about-feature__title {
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    letter-spacing: -0.01em;
}

.about-feature__text {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #484848;
}

.about-feature__text p {
    margin: 0;
}

.about-feature__text p + p {
    margin-top: 16px;
}

.about-feature__image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    overflow: visible;
    border-radius: 20px;
    background-color: #f5f5f5;
}

.about-feature__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

/* ============================================
   CTA-БЛОК
   ============================================ */

.about-cta {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.about-cta__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.about-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 528px;
    height: 60px;
    padding: 0;
    background-color: #3D6EEE;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.about-cta__button:hover {
    background-color: #2B5BD9;
    transform: translateY(-2px);
    color: #ffffff; /* Цвет текста белый при наведении */
}

.about-cta__button-text {
    color: #ffffff;
}

.about-cta__button:hover .about-cta__button-text {
    color: #ffffff; /* Цвет текста белый при наведении */
}

.about-cta__button:active {
    transform: translateY(0);
}

.about-cta__link {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.about-cta__link:hover {
    text-decoration: none;
}

/* ============================================
   АДАПТИВ: DESKTOP SMALL (менее 1400px)
   ============================================ */

@media screen and (max-width: 1399px) {
    /* Выравниваем отступы сверху и снизу */
    .about-hero {
        padding: 65px 0 65px;
    }
    
    /* Скрываем картинку flower */
    .about-hero__image-wrapper {
        display: none;
    }
    
    /* Контейнер hero на всю ширину */
    .about-hero__container {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }
    
    /* Окно на всю ширину с отступами 25px */
    .about-hero__window {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
    }
    
    /* Контент окна на всю ширину */
    .about-hero__window-content {
        max-width: 100%;
    }
    
    /* Заголовок и текст на всю ширину */
    .about-hero__title,
    .about-hero__text {
        width: 100%;
        max-width: 100%;
    }
    
    /* CTA также на всю ширину, убираем лишний padding-bottom */
    .about-hero__cta {
        grid-column: 1;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    /* Убираем лишние отступы у обёртки кнопок */
    .about-hero__button-wrapper {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* ============================================
   АДАПТИВ: TABLET (768px - 991px)
   ============================================ */

@media screen and (max-width: 991px) and (min-width: 768px) {
    .about-container,
    .about-hero__container,
    .about-feature__container,
    .about-cta__container {
        padding: 0 32px;
    }
    
    /* Hero-блок */
    .about-hero {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .about-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero__window-content {
        padding: 32px 24px;
        gap: 20px;
    }
    
    .about-hero__title {
        font-size: 48px;
    }
    
    .about-hero__text {
        font-size: 18px;
    }
    
    .about-hero__button {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .about-hero__button-accent {
        width: 48px;
        height: 48px;
    }
    
    .about-hero__button-accent svg {
        width: 20px;
        height: 20px;
    }
    
    /* Картинка уменьшается на tablet */
    .about-hero__image {
        max-width: 80%;
    }
    
    /* Feature-блок */
    .about-feature {
        padding: 80px 0;
    }
    
    .about-feature__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Сбрасываем order для reverse-блоков, чтобы картинки были под текстом */
    .about-feature--reverse .about-feature__content {
        order: 1;
    }
    
    .about-feature--reverse .about-feature__image {
        order: 2;
    }
    
    .about-feature__content {
        gap: 20px;
    }
    
    .about-feature__title {
        font-size: 36px;
    }
    
    .about-feature__text {
        font-size: 18px;
    }
    
    .about-feature__image {
        padding-bottom: 70%;
    }
    
    /* CTA-блок */
    .about-cta {
        padding: 60px 0;
    }
    
    .about-cta__button {
        width: 100%;
        max-width: 528px;
        height: 56px;
        font-size: 17px;
    }
}

/* ============================================
   АДАПТИВ: MOBILE (до 767px)
   ============================================ */

@media screen and (max-width: 767px) {
    .about-container,
    .about-hero__container,
    .about-feature__container,
    .about-cta__container {
        padding: 0 16px;
    }
    
    /* Hero-блок */
    .about-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .about-hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero__window-content {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .about-hero__title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .about-hero__text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .about-hero__text p {
        margin-bottom: 12px;
    }
    
    .about-hero__button {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .about-hero__button-accent {
        width: 48px;
        height: 48px;
    }
    
    .about-hero__button-accent svg {
        width: 20px;
        height: 20px;
    }
    
    /* Картинка уходит вниз на mobile */
    .about-hero__image-wrapper {
        order: -1;
    }
    
    .about-hero__image {
        max-width: 70%;
    }
    
    /* Feature-блок */
    .about-feature {
        padding: 60px 0;
    }
    
    .about-feature__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* На мобильных всегда: текст сверху, изображение снизу */
    .about-feature--reverse .about-feature__content,
    .about-feature--reverse .about-feature__image {
        order: unset;
    }
    
    .about-feature__content {
        gap: 16px;
    }
    
    .about-feature__title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .about-feature__text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .about-feature__image {
        padding-bottom: 75%;
        border-radius: 12px;
    }
    
    /* CTA-блок */
    .about-cta {
        padding: 60px 0;
    }
    
    .about-cta__container {
        gap: 16px;
    }
    
    .about-cta__buttons {
        gap: 12px;
        width: 100%;
    }
    
    .about-cta__button {
        width: 100%;
        max-width: 528px;
        height: 56px;
        font-size: 16px;
    }
    
    .about-cta__link {
        font-size: 15px;
    }
}


/* End */
/* /local/templates/zakka-new-template/css/about-page.css?176700770915350 */
