@import url('../index.css');

.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 4rem 0 8rem 0;
    position: relative;
    z-index: 10;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.hs-form-frame {
    width: 100%;
}

/* HubSpot Form Styling Overrides (if applicable, HubSpot usually uses iframes but some CSS can apply to the wrapper) */
.hs-form-frame iframe {
    width: 100% !important;
    border: none !important;
    min-height: 600px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
    }
}