.our-story-hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.our-story-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-story-hero__video {
    width: 100%;
    height: 100%;
}

.our-story-hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story-title-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: var(--color-background);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-story-title {
    font-size: 7rem;
    font-weight: 900;
    text-align: center;
    background: var(--color-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.1;
    position: relative;
    background-attachment: fixed;
}

.our-story-description {
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* Story Sections */
.story-section {
    padding: 8rem 0;
}

.story-section:nth-child(even) {
    background: var(--color-surface);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.story-text .lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.story-text .highlight {
    background: var(--color-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 2rem 0;
}

/* Visual Card */
.visual-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card img {
    width: 100%;
    height: 900px;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    font-style: italic;
}

/* Philosophy Section */
.philosophy-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.philosophy-item {
    text-align: center;
    padding: 3rem 2rem;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border-radius: 50%;
    color: var(--color-primary);
}

.philosophy-icon svg {
    width: 40px;
    height: 40px;
}

/* Optional: Add hover effect to icons */
.philosophy-item:hover .philosophy-icon {
    background: var(--color-primary);
    color: var(--color-surface);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Industries Section */
.industries-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.industry-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-image {
    height: 300px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 2rem;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.industry-content p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* CTA Section */
.story-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-text-inverse);
    padding: 8rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-text-inverse);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


/* Mobile Responsive */

/* Story Sections - Mobile Responsive */
@media (max-width: 768px) {

    .our-story-title {
        font-size: 4rem;
    }
    
    .our-story-description {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .story-section {
        padding: 4rem 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text {
        font-size: 1.1rem;
    }
    
    .story-text .lead {
        font-size: 1.25rem;
    }
    
    .story-text .highlight {
        font-size: 1.25rem;
    }
    
    .visual-card img {
        height: 300px;
    }
    
    .visual-caption {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Philosophy Section - Mobile */
@media (max-width: 768px) {
    .philosophy-header {
        margin-bottom: 4rem;
        padding: 0 var(--spacing-md);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-item {
        padding: 2rem 1rem;
    }
    
    .philosophy-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

/* Industries Section - Mobile */
@media (max-width: 768px) {
    .industries-header {
        margin-bottom: 4rem;
        padding: 0 var(--spacing-md);
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-card {
        margin: 0 var(--spacing-md);
    }
    
    .industry-image {
        height: 200px;
    }
    
    .industry-content {
        padding: 1.5rem;
    }
    
    .industry-content h3 {
        font-size: 1.25rem;
    }
}

/* CTA Section - Mobile */
@media (max-width: 768px) {
    .story-cta {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 var(--spacing-md);
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .story-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .philosophy-item {
        padding: 1.5rem 0.5rem;
    }
    
    .industry-card {
        margin: 0 var(--spacing-sm);
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .story-grid {
        gap: 4rem;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}