/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0420 100%);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    line-height: 1.8;
}

/* About Story Section */
.about-story {
    padding: 100px 20px;
    background: #000;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Platform Showcase Section */
.platform-showcase {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0014 0%, #1a0b2e 100%);
}

.platform-showcase h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.platform-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(138, 43, 226, 0.3);
    background: #1a1a2e;
}

.platform-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
}

.overlay-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #1e1838 0%, #2d1f4a 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(138, 43, 226, 0.6);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 100px 20px;
    background: #000;
}

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

.mobile-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.mobile-content p {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b8b8b8;
    font-size: 1.05rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.btn-icon {
    font-size: 2rem;
}

.app-store-btn small {
    display: block;
    font-size: 0.75rem;
    color: #888;
}

.app-store-btn strong {
    display: block;
    font-size: 1.1rem;
}

.mobile-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobile-mockup img {
    width: 100%;
    max-width: 350px;
    border-radius: 30px;
    /* box-shadow: 0 30px 80px rgba(138, 43, 226, 0.5); */
}

.mockup-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mission & Values Section */
.mission-values {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0420 100%);
}

.mission-values h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, #1e1838 0%, #2d1f4a 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.value-card p {
    color: #b8b8b8;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 20px;
    background: #000;
}

.why-choose h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.choose-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.choose-item:hover {
    border-color: rgba(138, 43, 226, 0.6);
    transform: translateY(-5px);
}

.choose-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.choose-item p {
    color: #b8b8b8;
    line-height: 1.7;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0420 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 45px;
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.8);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid,
    .platform-grid,
    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mobile-grid {
        direction: column-reverse;
    }

    .mobile-mockup {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .story-content h2,
    .platform-showcase h2,
    .mobile-content h2,
    .mission-values h2,
    .why-choose h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .app-download-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 20px 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

