.threehouse-hero {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.threehouse-hero-container {
    max-width: 800px;
    width: 100%;
}

.threehouse-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.threehouse-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.threehouse-hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.threehouse-hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.threehouse-hero-point-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}

.threehouse-hero-point-icon svg {
    width: 20px;
    height: 20px;
}

.threehouse-hero-point-icon i {
    font-size: 20px;
}

.threehouse-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.threehouse-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.threehouse-hero-btn-primary {
    border: none;
    background-color: #8b5cf6 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.threehouse-hero-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.threehouse-hero-btn-secondary {
    background-color: transparent;
    border: 2px solid;
}

.threehouse-hero-btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .threehouse-hero {
        padding: 60px 20px;
    }
    
    .threehouse-hero-title {
        font-size: 2.5rem;
    }
    
    .threehouse-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .threehouse-hero-btn {
        width: 100%;
    }
}