/* ===== STORY SECTION ===== */
.story {
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-text p:last-of-type {
    margin-bottom: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-visual img {
    max-width: 400px;
    height: 300px;
}

/* ===== FOUNDERS SECTION ===== */
.founders {
    background: #fafafa;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.founder {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.founder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.founder-photo {
    margin-bottom: 2rem;
}

.founder-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.founder-info p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* ===== VALUES SECTION ===== */
.values {
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-color: #000;
}

.value-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== VISION SECTION ===== */
.vision {
    background: #fafafa;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.vision-text p:last-of-type {
    margin-bottom: 0;
}

.vision-visual {
    display: flex;
    justify-content: center;
}

.vision-visual img {
    max-width: 400px;
    height: 300px;
}

/* ===== CULTURE SECTION ===== */
.culture {
    background: #fff;
}

.culture-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.culture-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.culture-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .story-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-visual img,
    .vision-visual img {
        max-width: 300px;
        height: 200px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder {
        padding: 2rem 1.5rem;
    }

    .founder-photo img {
        width: 120px;
        height: 120px;
    }

    .values-grid,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-item,
    .culture-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .story-content,
    .vision-content {
        gap: 1.5rem;
    }

    .story-visual img,
    .vision-visual img {
        max-width: 250px;
        height: 150px;
    }

    .founders-grid {
        gap: 1.5rem;
    }

    .founder {
        padding: 1.5rem 1rem;
    }

    .founder-photo img {
        width: 100px;
        height: 100px;
        font-size: 0.875rem;
    }

    .values-grid,
    .culture-content {
        gap: 1.5rem;
    }

    .value-item,
    .culture-item {
        padding: 1.5rem 1rem;
    }
}

/* ===== LINKEDIN ===== */
.founder-header {
    position: relative;
    text-align: center;
    margin-bottom: 8px;
}

.founder-header h3 {
    margin: 0;
}

.linkedin-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.linkedin-link:hover {
    background: #0077b5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link:hover svg path {
    fill: white;
}

.linkedin-link svg {
    transition: all 0.3s ease;
}
