/* ========================================
   Home Page Styles - Enhanced
   ======================================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
}

.hero-title {
    font-size: clamp(var(--text-4xl), 9vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-10);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
}

/* Products Section */
.products-section {
    background: var(--color-white);
}

.products-header {
    margin-bottom: var(--space-12);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

/* Why Section */
.why-section {
    background: var(--color-off-white);
}

.why-header {
    margin-bottom: var(--space-12);
}

/* Industries Section */
.industries-section {
    background: var(--color-white);
    overflow: hidden;
    padding-bottom: var(--space-20);
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-12);
    padding: 0 var(--space-8);
}

.industries-header-left {
    max-width: 400px;
}

.industries-header-right {
    text-align: right;
    max-width: 420px;
}

/* CTA */
.cta-section {
    background: var(--color-off-white);
    text-align: center;
    padding: var(--space-24) 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .industries-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: var(--space-6);
        padding: 0;
    }
    .industries-header-right { text-align: left; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-16); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
}
