.audit-hero {
    padding: 96px 0 72px;
    background: radial-gradient(circle at top right, #e8f4ff, #ffffff 55%);
    position: relative;
    overflow: hidden;
}

.audit-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -200px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.2), rgba(255, 255, 255, 0));
}

.audit-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.audit-hero-copy h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.audit-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.audit-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.audit-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
}

.audit-form textarea {
    min-height: 110px;
    resize: vertical;
}

.audit-btn {
    background: #0f4c81;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.audit-btn.ghost {
    background: transparent;
    color: #0f4c81;
    border: 1px solid #0f4c81;
}

.audit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #c7ddf3;
    border-radius: 999px;
    padding: 6px 12px;
    color: #0f4c81;
    background: #f5faff;
    font-size: 13px;
}

.audit-list {
    margin: 0;
    padding-left: 18px;
}

.audit-hero-visual {
    position: relative;
}

.speed-stage {
    background: #0b1c2d;
    border-radius: 24px;
    padding: 28px;
    min-height: 320px;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
}

.speed-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.25), rgba(14, 116, 144, 0));
    opacity: 0.7;
}

.speed-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.speed-line {
    position: relative;
    overflow: hidden;
}

.speed-line::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #38bdf8, rgba(255, 255, 255, 0));
    top: 50%;
    left: -180px;
    animation: speed-slide 3.2s linear infinite;
}

.speed-line:nth-child(2)::before {
    animation-duration: 2.6s;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #f59e0b, rgba(255, 255, 255, 0));
}

.speed-line:nth-child(3)::before {
    animation-duration: 2.9s;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #34d399, rgba(255, 255, 255, 0));
}

.speed-meter {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.meter-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: floaty 4s ease-in-out infinite;
}

.meter-card:nth-child(2) {
    animation-delay: 0.6s;
}

.meter-card:nth-child(3) {
    animation-delay: 1.2s;
}

.meter-label {
    font-weight: 600;
}

.meter-value {
    color: #38bdf8;
    font-weight: 700;
}

.audit-field {
    margin-bottom: 14px;
}

.audit-delivery {
    margin-top: 18px;
}

@keyframes speed-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(520px); }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .audit-hero {
        padding: 72px 0 48px;
    }
}
