.page-about {
    background-color: #f4f5f6;
}

/* Header override for light background */
.header:not(.scrolled) a:not(.btn-contact) {
    color: #111111;
}

.header:not(.scrolled) .hamburger {
    color: #111111;
}

/* Typographic Hero */
.about-hero {
    padding: 200px 60px 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #111111;
    max-width: 1000px;
}

.about-hero h1 span {
    color: #EE1B24;
}

/* Feature Sections */
.about-section {
    padding: 80px 60px;
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-image {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.about-text-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-subtitle {
    color: #EE1B24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.about-text-block h2 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #111111;
    margin-bottom: 10px;
}

.about-text-block p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    opacity: 0.9;
}

.about-text-block p strong {
    font-weight: 500;
    color: #111111;
}

/* Trust Section */
.about-trust {
    padding: 150px 60px;
    background-color: #ffffff;
    margin-top: 100px;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-content p {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 40px;
    color: #111111;
    letter-spacing: -0.5px;
}

.trust-highlight {
    font-size: 28px;
    font-weight: 500;
    color: #EE1B24;
    border-top: 1px solid rgba(238, 27, 36, 0.2);
    border-bottom: 1px solid rgba(238, 27, 36, 0.2);
    padding: 60px 0;
    margin-top: 80px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero {
        padding: 150px 40px 80px 40px;
    }
    
    .about-hero h1 {
        font-size: 64px;
    }

    .about-section {
        padding: 60px 40px;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .about-text-block h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 30px 60px 30px;
    }
    
    .about-hero h1 {
        font-size: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-grid.reverse {
        direction: ltr;
    }
    
    .about-text-block h2 {
        font-size: 40px;
    }
    
    .about-text-block p {
        font-size: 18px;
    }
    
    .about-trust {
        padding: 100px 30px;
    }
    
    .trust-content p {
        font-size: 28px;
    }

    .trust-highlight {
        font-size: 24px;
        padding: 40px 0;
    }
}
