/* About Page Styles */

/* Footer spacing for about page */
.footer {
    margin-top: 40px !important;
    transform: none !important;
}

/* About Header */
.about-header {
    text-align: left;
    margin-bottom: 60px;
    padding-top: 40px;
}

.about-title {
    font-size: 100px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
    padding-left: 40px;
}

/* About Content */
.about-content {
    padding: 0 40px 120px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 60px;
    max-width: 900px;
    padding-left: 40px;
}

.about-text p {
    margin: 0 0 30px 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* About CTA */
.about-cta {
    margin-bottom: 80px;
}

.about-telegram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #999;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 40px;
}

.about-telegram-button:hover {
    transform: translateY(-2px);
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-telegram-button svg {
    transition: transform 0.3s ease, stroke 0.3s ease;
    stroke: currentColor;
}

.about-telegram-button:hover svg {
    transform: translateX(4px);
}

/* About Results */
.about-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 72px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: #000;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

.result-label {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}

/* About Values */
.about-values {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid #e0e0e0;
    padding-left: 40px;
}

.about-values-title {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.values-line {
    width: 0;
    height: 1px;
    background-color: #000000;
    min-width: 0;
    margin-top: 20px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.values-line.animate {
    width: calc(100% - 200px);
    min-width: 950px;
}

/* Mobile values line animation */
@media (max-width: 768px) {
    .values-line.animate {
        width: 100%;
        min-width: 200px;
    }
}

.values-list {
    margin-top: 80px;
}

.value-item {
    margin-bottom: 80px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-header {
    display: flex;
    align-items: flex-start;
}

.value-number {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: -0.05em;
    color: rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    width: 200px;
}

.value-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    width: 400px;
}

.value-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.05em;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer {
        margin-top: 30px !important;
    }
    
    .about-header {
        margin-bottom: 40px;
        padding-top: 20px;
    }
    
    .about-title {
        font-size: 48px;
        padding-left: 20px;
    }
    
    .about-content {
        padding: 0 20px 100px 0;
    }
    
    .about-text {
        font-size: 16px;
        margin-bottom: 40px;
        padding-left: 20px;
    }
    
    .about-text p {
        margin-bottom: 20px;
    }
    
    .about-cta {
        margin-bottom: 60px;
    }
    
    .about-telegram-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 18px;
        justify-content: space-between;
        border: 1px solid #999;
        margin-left: 20px;
    }
    
    .about-results {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .result-number {
        font-size: 56px;
    }
    
    .result-label {
        font-size: 18px;
    }
    
    .about-values {
        margin-top: 60px;
        padding-top: 60px;
        padding-left: 20px;
    }
    
    .about-values-title {
        font-size: 44px;
        margin-bottom: 30px;
    }
    
    .values-line {
        margin-bottom: 40px;
        width: 100%;
    }
    
    .values-line.animate {
        width: 100%;
        min-width: 200px;
    }
    
    .values-list {
        margin-top: 40px;
        gap: 50px;
    }
    
    .value-item {
        margin-bottom: 50px;
    }
    
    .value-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .value-number {
        font-size: 24px;
    }
    
    .value-title {
        font-size: 24px;
        font-weight: 400;
    }
    
    .value-description {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-content {
        padding: 0 40px 100px 0;
    }
    
    .about-text {
        font-size: 18px;
        padding-left: 40px;
    }
    
    .about-results {
        gap: 40px;
    }
    
    .result-number {
        font-size: 64px;
    }
    
    .about-values {
        padding-left: 40px;
    }
    
    .values-grid {
        gap: 40px 60px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .about-content {
        padding: 0 60px 120px 0;
    }
    
    .about-text {
        font-size: 20px;
        padding-left: 40px;
    }
    
    .about-values {
        padding-left: 40px;
    }
}

/* Active link styles */
.nav-link.active,
.glass-nav-link.active,
.mobile-menu-link.active {
    font-weight: 600;
}

/* Animation for page load */
.about-header {
    animation: fadeInUp 0.6s ease-out;
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

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

