.about-page {
    background: url('/images/splash-bg.webp') center/cover no-repeat;
    min-height: 110dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 20px 0;
    overflow-x: hidden;
}

/* --- Кнопка Home --- */
.about-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    align-self: flex-start;
    margin-bottom: 24px;
}

/* --- Заголовок --- */
.about-hero-title {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 30px;
    min-width: 270px;
    max-width: 310px;
}

/* --- Стеклянный блок --- */
.about-glass-block {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.about-glass-inner {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 60%, transparent 100%);
}

.about-glass-scroll {
    animation: scroll-up 30s linear infinite;
    padding: 24px 20px;
}

.about-glass-scroll p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

@keyframes scroll-up {
    0%   { transform: translateY(60%); }
    100% { transform: translateY(-100%); }
}

.about-glass-scroll p {
    color: rgba(255,255,255,0.9);
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 8px;
}

.about-glass-scroll .about-glass-slogan {
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    margin-top: 12px;
}

.about-glass-scroll .about-glass-disclaimer {
    font-size: 14px;
    opacity: 0.5;
    margin-top: 4px;
}

/* --- Бейджи --- */
.about-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.about-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

/* --- Подпись --- */
.about-footer-text {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

/* --- Белая зона с дугой --- */
.about-content {
    background: white;
    border-radius: 24px 24px 0 0;
    margin-top: -30px;
    padding: 40px 20px 30px;
    position: relative;
    z-index: 3;
    max-width: 100vw;
}

/* --- Секции --- */
.about-section {
    margin-bottom: 30px;
}

.about-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-section-title.color-teal { color: #7EC8C8; }
.about-section-title.color-pink { color: #D4A5B9; }

.about-section p {
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* --- Карточки-изображения --- */
.about-card-img {
    width: 100%;
    border-radius: 24px;
    margin-top: 12px;
}

/* --- Убеждения --- */
.about-beliefs {
    list-style: none;
    padding: 0;
}

.about-beliefs li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    padding: 6px 0;
    border-bottom: 0.5px solid var(--bg-secondary);
}

.about-beliefs li:last-child {
    border-bottom: none;
}

/* --- Закрытие --- */
.about-closing {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #BFBFBF;
    margin-top: 10px;
    padding-bottom: 20px;
}
