/* ============================================
   About Page - Modern Design
   ============================================ */

.about-page {
    background: var(--background-dark-grey, #0a0a0a);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   Hero Section
   ============================================ */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero__bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 199, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 199, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.about-hero__bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 199, 0, 0.1);
    border: 1px solid rgba(255, 199, 0, 0.3);
    border-radius: 50px;
    color: #FFC700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.about-hero__badge svg {
    width: 20px;
    height: 20px;
}

.about-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.about-hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.about-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* ============================================
   Stats Section
   ============================================ */
.about-stats {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 199, 0, 0.02) 100%);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.about-stats__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-stats__item:hover {
    background: rgba(255, 199, 0, 0.05);
    border-color: rgba(255, 199, 0, 0.2);
    transform: translateY(-4px);
}

.about-stats__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 12px;
    color: #FFC700;
}

.about-stats__number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stats__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Mission Section
   ============================================ */
.about-mission {
    padding: 100px 0;
}

.about-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-mission__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-mission__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-mission__placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
}

.about-section__badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 199, 0, 0.1);
    color: #FFC700;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    margin-bottom: 16px;
}

.about-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.2;
}

.about-section__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.about-features__item {
    display: flex;
    gap: 16px;
}

.about-features__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 10px;
    color: #FFC700;
}

.about-features__text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.about-features__text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   Values Section
   ============================================ */
.about-values {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.about-values__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.about-value-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    background: rgba(255, 199, 0, 0.03);
    border-color: rgba(255, 199, 0, 0.2);
    transform: translateY(-8px);
}

.about-value-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 16px;
    color: #FFC700;
    margin-bottom: 24px;
}

.about-value-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
}

.about-value-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA Banner
   ============================================ */
.about-cta {
    padding: 100px 0;
}

.about-cta__card {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.1) 0%, rgba(255, 199, 0, 0.02) 100%);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.about-cta__decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-cta__circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.15) 0%, transparent 70%);
}

.about-cta__circle--1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.about-cta__circle--2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
}

.about-cta__circle--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.about-cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.about-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
}

.about-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Team Section
   ============================================ */
.about-team {
    padding: 100px 0;
}

.about-team__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-section__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.booster-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.booster-card:hover {
    background: rgba(255, 199, 0, 0.03);
    border-color: rgba(255, 199, 0, 0.2);
    transform: translateY(-4px);
}

.booster-card__header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booster-card__avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.booster-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booster-card__status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--background-dark-grey, #0a0a0a);
}

.booster-card__status--online {
    background: #4ade80;
}

.booster-card__name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.booster-card__role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.booster-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.booster-stat {
    display: flex;
    gap: 12px;
    align-items: center;
}

.booster-stat__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.booster-stat__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booster-stat__info--full {
    text-align: center;
    width: 100%;
}

.booster-stat__label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.booster-stat__value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.booster-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booster-card__orders {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.booster-card__orders svg {
    color: #FFC700;
}

.booster-card__link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #FFC700;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.booster-card__link:hover {
    gap: 8px;
}

.about-team__cta {
    text-align: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn--primary {
    background: #FFC700;
    color: #000;
}

.btn--primary:hover {
    background: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 199, 0, 0.3);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about-mission__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-hero__title {
        font-size: 42px;
    }
    
    .about-cta__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 80px 0 40px;
    }
    
    .about-hero__title {
        font-size: 32px;
    }
    
    .about-hero__subtitle {
        font-size: 16px;
    }
    
    .about-hero__actions {
        flex-direction: column;
    }
    
    .about-stats__grid {
        grid-template-columns: 1fr;
    }
    
    .about-section__title {
        font-size: 32px;
    }
    
    .about-values__grid,
    .about-team__grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta__card {
        padding: 40px 24px;
    }
    
    .about-cta__title {
        font-size: 28px;
    }
    
    .about-cta__text {
        font-size: 16px;
    }
}

