/* AUDIT PAGE STYLES */

.audit-hero {
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.audit-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.audit-hero p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Form Container */
.audit-form-container {
    max-width: 600px;
    margin: 40px auto 100px;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #fbfbfd;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
    background: #fff;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.audit-btn {
    width: 100%;
    padding: 20px;
    background: #0071e3;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.audit-btn:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
}

/* What You Get Grid */
.audit-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.benefit-card {
    background: #fbfbfd;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #00d959;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.success-banner {
    background: #00d959;
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 217, 89, 0.3);
}

@media (max-width: 600px) {
    .audit-hero h1 {
        font-size: 40px;
    }

    .audit-form-container {
        padding: 24px;
        margin: 20px;
    }
}