.agro-interest {
    display: grid;
    gap: 12px;
    max-width: none;
}

.agro-interest__toggle {
    width: fit-content;
}

.agro-interest__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    background: var(--agro-surface-50, #f6f8f4);
    border: 1px solid var(--agro-line-200, #dde6da);
    border-radius: var(--agro-radius-card, 8px);
}

.agro-interest__form[hidden] {
    display: none;
}

.agro-interest__form label {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
}

.agro-interest__form label span {
    color: var(--agro-muted-600, #6f8591);
    font-size: 13px;
    font-weight: 600;
}

.agro-interest__form input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--agro-ink-900, #122117);
    background: var(--agro-white, #fff);
    border: 1px solid var(--agro-line-200, #dde6da);
    border-radius: var(--agro-radius-control, 8px);
    outline: 0;
}

.agro-interest__intro,
.agro-interest__message {
    grid-column: 1 / -1;
}

.agro-interest__intro {
    margin: 0 0 2px;
    color: var(--agro-ink-700, #26342b);
    font-size: 14px;
    line-height: 1.45;
}

.agro-interest__form input:focus {
    border-color: var(--agro-green-700, #127a35);
    box-shadow: 0 0 0 3px rgb(46 159 69 / 0.16);
}

.agro-interest__submit {
    width: fit-content;
    align-self: end;
}

.agro-interest__message {
    min-height: 18px;
    margin: 0;
    color: var(--agro-muted-600, #6f8591);
    font-size: 13px;
    line-height: 1.4;
}

.agro-interest__message[data-state="success"] {
    color: var(--agro-green-800, #0f5a31);
}

.agro-interest__message[data-state="error"] {
    color: #b42318;
}

.agro-interest__hp {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    opacity: 0;
}

@media (max-width: 720px) {
    .agro-interest {
        max-width: none;
    }

    .agro-interest__form {
        grid-template-columns: 1fr;
    }

    .agro-interest__toggle,
    .agro-interest__submit {
        width: 100%;
    }
}
