.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.hero__title {
    font-size: var(--font-size-5xl);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-tight);
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-slate-200);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-8);
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.section {
    padding: var(--space-20) 0;
}

.section--alt {
    background-color: var(--color-slate-50);
}

.section--dark {
    background-color: var(--color-navy-900);
    color: var(--color-white);
}

.section--dark .section__title {
    color: var(--color-white);
}

.section--dark .section__text {
    color: var(--color-slate-300);
}

.section--cta {
    background-color: var(--color-slate-100);
}

.section--ethics {
    background-color: var(--color-navy-800);
    color: var(--color-white);
    padding: var(--space-16) 0;
}

.section--ethics .section__title {
    color: var(--color-white);
}

.section--ethics .section__text {
    color: var(--color-slate-300);
}

.section__header {
    margin-bottom: var(--space-12);
    max-width: 600px;
}

.section__title {
    margin-bottom: var(--space-4);
}

.section__title--centered {
    text-align: center;
}

.section__intro {
    font-size: var(--font-size-lg);
    color: var(--color-slate-600);
}

.section__text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.section__text--centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .split-layout--reverse .split-layout__image {
        order: 2;
    }
    
    .split-layout--reverse .split-layout__content {
        order: 1;
    }
}

.split-layout__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.split-layout__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .feature-card {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.feature-card__content {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
}

.cta-box {
    background-color: var(--color-white);
    padding: var(--space-12) var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box__title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

.cta-box__text {
    font-size: var(--font-size-lg);
    color: var(--color-slate-600);
    margin-bottom: var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ethics-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hero__title {
        font-size: var(--font-size-4xl);
    }
    
    .hero__subtitle {
        font-size: var(--font-size-lg);
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}