/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Trust Bar */
.trust-bar {
    background: var(--charcoal);
    color: var(--off-white);
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* How It Works */
.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: bold;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 143, 113, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* AI Teaser */
.ai-teaser {
    background: var(--warm-sand);
    padding: 80px 0;
}

.ai-teaser .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-teaser-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-teaser-image {
    position: relative;
    min-height: 400px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .ai-teaser .container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .how-it-works .steps-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .ai-teaser {
        padding: 60px 24px;
    }
    .ai-teaser .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ai-teaser-content {
        align-items: center;
    }
    .ai-teaser-image {
        min-height: 300px;
        order: -1;
    }
}
