/* ============================================================================ */
/* HERO ABOUT COMPONENT - ТОЧНО ПО FIGMA ДИЗАЙНУ */
/* @component-type: hero */
/* @component-order: 05 */
/* ============================================================================ */

.hero-about {
    position: relative;
    width: 100%;
    height: 814px; /* Точный размер из Figma */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Background настройки */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Округлые углы как в дизайне */
    border-radius: 0 0 52px 52px;
    overflow: hidden;
}

/* Background Overlay - точные параметры из Figma */
.hero-about__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    
    /* Цвет и прозрачность из Figma: #112612 с opacity 0.32 */
    background-color: #112612;
    opacity: 0.32;
}

/* Main Content Container - размеры из Figma Frame 1053 */
.hero-about__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px; /* Ширина из Figma */
    margin: 0 auto;
    padding: 0 20px;
}

.hero-about__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px; /* Расстояние между текстом и кнопкой */
}

/* Text Block Container - размеры из Figma Frame 1057 */
.hero-about__text-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* Расстояние между заголовком и описанием */
}

/* Title Frame - размеры из Figma Frame 1054 */
.hero-about__title-frame {
    width: 100%;
    max-width: 1240px;
    margin-top: 50px;
}

/* Main Title - точные параметры из Figma */
.hero-about__title {
    margin: 0;
    
    /* Шрифт из Figma: TT Wellingtons, DemiBold, 600, 68px */
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600; /* DemiBold */
    font-size: 68px;
    line-height: 74.8px; /* Точное значение из Figma */
    
    /* Цвет и выравнивание из Figma */
    color: #ffffff;
    text-align: center;
    letter-spacing: 0;
    
    /* Максимальная ширина как в дизайне */
    max-width: 1240px;
    margin: 0 auto;
}

/* Description Text - точные параметры из Figma */
.hero-about__description {
    margin: 0;
    
    /* Шрифт из Figma: TT Wellingtons, DemiBold, 600, 20px */
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600; /* DemiBold */
    font-size: 20px;
    line-height: 32px; /* Точное значение из Figma */
    
    /* Цвет и выравнивание из Figma */
    color: #ebebeb;
    text-align: center;
    letter-spacing: 0;
    
    /* Максимальная ширина как в дизайне: 876px */
    max-width: 876px;
    margin: 0 auto;
}

/* Button Wrapper */
.hero-about__button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

/* CTA Button - точные параметры из Figma */
.hero-about__button {
    /* Размеры из Figma: 262x64px */
    width: 262px;
    height: 64px;
    
    /* Corner radius из Figma */
    border-radius: 16px;
    
    /* Градиент из Figma: #16d129 -> #11b43a */
    background: linear-gradient(135deg, #16d129 0%, #11b43a 100%);
    
    /* Убираем стандартные стили ссылки */
    text-decoration: none;
    border: none;
    cursor: pointer;
    
    /* Flexbox для центрирования текста */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Эффекты */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 209, 41, 0.3);
}

.hero-about__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 209, 41, 0.4);
    background: linear-gradient(135deg, #1ae32e 0%, #13c441 100%);
}

.hero-about__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(22, 209, 41, 0.3);
}

/* Button Text - точные параметры из Figma */
.hero-about__button-text {
    /* Шрифт из Figma: TT Wellingtons, DemiBold, 600, 18px */
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
    font-weight: 600; /* DemiBold */
    font-size: 18px;
    line-height: 32px; /* Высота как у контейнера */
    
    /* Letter spacing из Figma */
    letter-spacing: 0.18px;
    
    /* Цвет */
    color: #ffffff;
    
    /* Выравнивание по левому краю как в Figma */
    text-align: left;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .hero-about {
        height: 600px;
        border-radius: 0 0 24px 24px;
    }
    
    .hero-about__title {
        font-size: 48px;
        line-height: 56px;
        max-width: 900px;
    }
    
    .hero-about__description {
        font-size: 18px;
        line-height: 28px;
        max-width: 700px;
    }
    
    .hero-about__button {
        width: 240px;
        height: 56px;
    }
    
    .hero-about__button-text {
        font-size: 16px;
        line-height: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-about {
        height: 500px;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-about__container {
        padding: 0 16px;
    }
    
    .hero-about__content {
        gap: 24px;
    }
    
    .hero-about__text-block {
        gap: 16px;
    }
    
    .hero-about__title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero-about__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 100%;
    }
    
    .hero-about__button {
        width: 200px;
        height: 48px;
    }
    
    .hero-about__button-text {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-about {
        height: 400px;
    }
    
    .hero-about__title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-about__description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .hero-about__button {
        width: 180px;
        height: 44px;
    }
}