.about-page {
    min-height: 100vh;
    background: transparent;
    padding-top: 96px;
    position: relative;
    isolation: isolate;
}

/* Орбы для глубины */
.about-page::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 60%);
    filter: blur(72px);
    pointer-events: none;
    z-index: -1;
    animation: auroraFloat 26s ease-in-out infinite;
}

.about-page::after {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(180, 130, 70, 0.18), transparent 60%);
    filter: blur(72px);
    pointer-events: none;
    z-index: -1;
    animation: auroraFloat 30s ease-in-out infinite reverse;
}

.about-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    background: transparent;
    text-align: center;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.08;
    letter-spacing: 0.005em;
    font-weight: 700;
    color: var(--accent-3);
    margin-bottom: 20px;
    text-align: center;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.7),
        0 0 28px rgba(212, 175, 55, 0.30);
    text-transform: none;
}

.about-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    text-align: center;
    max-width: 720px;
    line-height: 1.6;
    margin: 0 auto 40px;
    font-style: normal;
    letter-spacing: 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.about-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px;
    margin-bottom: 24px;
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
}

.about-section::before {
    display: none;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: 0.005em;
    font-weight: 700;
    color: var(--accent-3);
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.20);
    text-transform: none;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
}

/* Eyebrow с цветовой полоской */
.about-section h2::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--accent), transparent);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.about-section h2::after {
    display: none;
}

.about-section p {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.about-section ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    text-align: center;
    color: var(--accent);
    font-size: 11px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    border-radius: var(--r-pill);
    transition: all 0.25s ease;
    margin-bottom: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.back-button:hover {
    background: linear-gradient(180deg, rgba(244, 228, 188, 0.14), rgba(244, 228, 188, 0.04));
    border-color: var(--line-strong);
    color: var(--accent-3);
    transform: translateX(-3px);
    box-shadow:
        inset 0 1px 0 rgba(244, 228, 188, 0.14),
        0 0 0 4px rgba(212, 175, 55, 0.22);
}
