.cx-damage-intake {
    --cx-primary: #14213d;
    --cx-accent: #f59e0b;
    --cx-border: #dbe1ea;
    max-width: 960px;
    margin: 0 auto;
    color: #1f2937;
    font-family: inherit;
}

.cx-brandbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 22px;
    border: 1px solid var(--cx-border);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #eef1f5 100%);
    box-shadow: 0 10px 30px rgba(20, 33, 61, .08);
}

.cx-brandbar__logo {
    display: block;
    line-height: 0;
}

.cx-brandbar__logo img {
    display: block;
    width: 180px;
    max-width: 100%;
    height: 76px;
    object-fit: contain;
}

.cx-brandbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cx-home-link,
.cx-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 17px;
    border-radius: 9px;
    font-weight: 700;
    text-decoration: none !important;
}

.cx-home-link {
    border: 1px solid var(--cx-primary);
    background: #fff;
    color: var(--cx-primary) !important;
}

.cx-phone-link {
    background: var(--cx-primary);
    color: #fff !important;
}

.cx-home-link:hover,
.cx-phone-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.cx-form {
    padding: clamp(20px, 4vw, 42px);
    border: 1px solid var(--cx-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(20, 33, 61, .08);
}

.cx-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.cx-progress span {
    padding: 10px 8px;
    border-bottom: 3px solid var(--cx-border);
    color: #667085;
    font-size: 14px;
    text-align: center;
}

.cx-progress span.is-active {
    border-color: var(--cx-accent);
    color: var(--cx-primary);
    font-weight: 700;
}

.cx-step h2 {
    margin: 0 0 22px;
    color: var(--cx-primary);
    font-size: clamp(24px, 3vw, 32px);
}

.cx-step[hidden] {
    display: none !important;
}

.cx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cx-grid label,
.cx-upload {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.cx-span-2 {
    grid-column: 1 / -1;
}

.cx-form input,
.cx-form select,
.cx-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    background: #fff;
    color: #111827;
    font: inherit;
}

.cx-form input:focus,
.cx-form select:focus,
.cx-form textarea:focus {
    border-color: var(--cx-primary);
    outline: 3px solid rgba(20, 33, 61, .12);
}

.cx-upload {
    margin: 22px 0;
    padding: 30px;
    border: 2px dashed #a8b3c5;
    border-radius: 14px;
    background: #f8fafc;
    text-align: center;
    cursor: pointer;
}

.cx-upload small {
    color: #667085;
    font-weight: 400;
}

.cx-file-list {
    margin: 0 0 20px;
    color: #475467;
    font-size: 14px;
}

.cx-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 15px 0;
    font-weight: 400;
}

.cx-check input {
    width: 20px;
    min-height: 20px;
    margin-top: 2px;
}

.cx-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
}

.cx-button {
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 9px;
    background: var(--cx-primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.cx-button:hover {
    filter: brightness(1.1);
}

.cx-button--secondary {
    border: 1px solid var(--cx-border);
    background: #fff;
    color: var(--cx-primary);
}

.cx-notice {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 10px;
}

.cx-notice--success {
    background: #ecfdf3;
    color: #166534;
}

.cx-notice--error {
    background: #fef2f2;
    color: #991b1b;
}

.cx-honeypot {
    position: absolute !important;
    left: -10000px !important;
}

@media (max-width: 700px) {
    .cx-brandbar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .cx-brandbar__logo img {
        margin: 0 auto;
    }

    .cx-brandbar__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cx-progress {
        grid-template-columns: repeat(2, 1fr);
    }

    .cx-grid {
        grid-template-columns: 1fr;
    }

    .cx-span-2 {
        grid-column: auto;
    }
}
