.page-hero {
    background: var(--gradient-2);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.company-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: var(--gradient-2);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.visual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.visual-card p {
    opacity: 0.95;
    line-height: 1.7;
}

.values {
    padding: 5rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise {
    padding: 5rem 0;
    background: var(--white);
}

.expertise-content {
    display: grid;
    gap: 2.5rem;
}

.expertise-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.expertise-item:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.expertise-item:nth-child(3) {
    border-left-color: var(--accent-color);
}

.expertise-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.expertise-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.approach {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.approach .section-header h2,
.approach .section-header p {
    color: var(--white);
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.timeline-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    opacity: 0.9;
    line-height: 1.8;
}

.why-choose {
    padding: 5rem 0;
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.why-item:nth-child(even) {
    border-top-color: var(--secondary-color);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 40px;
        top: 80px;
    }
}
