#about {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.about-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-about-desktop {
    display: none;
}

.bg-about-mobile {
    display: block;
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-year-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.02)
        );
    backdrop-filter: blur(14px);
    text-align: center;
    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.about-year-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );
}

.about-founder-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
    border-radius: 20px;
    object-fit: cover;
}

.about-year-card h2 {
    font-size: clamp(1.2rem, 4vw, 1.9rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3px;
}

.about-year-card p {
    color: var(--gray);
    font-size: 0.6rem;
    line-height: 1.7;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-lt);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-badge::before,
.about-badge::after {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.about-right h2 {
    max-width: 700px;
    font-size: clamp(1rem, 7vw, 2rem);
    line-height: 1.05;
    font-weight: 700;
}

.about-description {
    max-width: 720px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.9;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-dot {
    width: 6px;
    min-width: 6px;
    height: 6px;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.about-item p {
    color: var(--gray);
    font-size: 0.96rem;
    line-height: 1.7;
}

.about-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.achievement-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    border: 1px solid rgba(201,168,76,0.20);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    text-align: center;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.achievement-badge:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
    transform: translateY(-3px);
}

.badge-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gold-dim);
    color: var(--gold);
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.achievement-badge strong {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.achievement-badge span {
    color: var(--gray);
    font-size: 0.62rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (min-width: 768px) {
    #about {
        padding: 80px 0;
    }

    .about-content {
        gap: 56px;
    }

    .about-year-card {
        padding: 28px;
    }

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

    .achievement-badge {
        padding: 20px 18px;
    }

    .achievement-badge span {
        font-size: 0.7rem;
    }
}

@media (min-width: 1024px) {
    #about {
        padding: 50px 0;
    }

    .about-content {
        grid-template-columns: 420px 1fr;
        gap: 72px;
        align-items: center;
    }

    .about-description {
        font-size: 1.05rem;
    }

    .about-item p {
        font-size: 1rem;
    }

    .about-badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bg-about-desktop {
        display: block;
    }

    .bg-about-mobile {
        display: none;
    }

    .about-year-card {
        max-width: 380px;
    }

    .about-founder-image {
        width: 100%;
        max-width: 380px;
    }
}