/* ── Newsletter / Lead Magnet Form ── */
.nl-section {
    background: var(--surface);
    border-top: 1px solid var(--hairline);
    padding: 3.5rem 0;
    text-align: center;
}
.nl-section .inner {
    max-width: 520px;
    margin: 0 auto;
}
.nl-section .tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.nl-section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: .5rem;
    line-height: 1.25;
}
.nl-section .desc {
    font-size: .9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.nl-form {
    max-width: 440px;
    margin: 0 auto;
}
.nl-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.nl-form input[type="email"] {
    flex: 1;
    min-width: 260px;
    max-width: 380px;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid var(--hairline);
    font-size: 1rem;
    font-family: var(--font-sans);
    background: #fff;
    border-radius: 2px;
    transition: border-color .2s;
}
.nl-form input[type="email"]:focus {
    border-color: var(--accent);
    outline: none;
}
.nl-form input[type="email"]::placeholder {
    color: var(--text-secondary);
    opacity: 1;
}
.nl-form input[type="email"].error {
    border-color: #c0392b;
}
.nl-form .btn {
    height: 48px;
    padding: 0 1.25rem;
    background: var(--text);
    color: #fff;
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 500;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    line-height: 48px;
}
.nl-form .btn:hover { background: #1C1B1A; }
.nl-form .btn:disabled { opacity: .5; cursor: not-allowed; }
.nl-consent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: .5rem;
    text-align: left;
    max-width: 440px;
    margin: .85rem auto 0;
}
.nl-consent input[type="checkbox"] {
    margin-top: .2rem;
    flex-shrink: 0;
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}
.nl-consent label {
    font-size: .78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.nl-consent label a {
    color: var(--accent);
    text-decoration: none;
}
.nl-consent label a:hover { text-decoration: underline; }
.nl-micro {
    font-size: .72rem;
    color: var(--text-secondary);
    margin-top: .75rem;
}
.nl-message {
    font-size: .9rem;
    margin-top: .85rem;
    line-height: 1.5;
    min-height: 1.5em;
}
.nl-message.success { color: var(--accent); }
.nl-message.error { color: #c0392b; }
.nl-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--hairline);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: nl-spin .6s linear infinite;
    margin-right: .4rem;
    vertical-align: middle;
}
@keyframes nl-spin { to { transform: rotate(360deg); } }
@media (max-width: 600px) {
    .nl-row { flex-direction: column; gap: .75rem; }
    .nl-row input[type="email"] {
        min-width: 0;
        max-width: none;
        width: 100%;
    }
    .nl-row .btn { width: 100%; }
    .nl-section h2 { font-size: 1.25rem; }
}

/* ── Suggest a tool form ── */
.suggest-section {
    margin: 2rem 0 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 2px;
}
.suggest-section h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.suggest-section p.desc {
    font-size: .85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.suggest-form textarea {
    width: 100%;
    min-height: 100px;
    max-height: 300px;
    padding: .75rem 1rem;
    border: 1px solid var(--hairline);
    font-size: .95rem;
    font-family: var(--font-sans);
    background: #fff;
    border-radius: 2px;
    resize: vertical;
    transition: border-color .2s;
    line-height: 1.5;
}
.suggest-form textarea:focus {
    border-color: var(--accent);
    outline: none;
}
.suggest-form textarea.error {
    border-color: #c0392b;
}
.suggest-form .suggest-email {
    width: 100%;
    max-width: 380px;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid var(--hairline);
    font-size: 1rem;
    font-family: var(--font-sans);
    background: #fff;
    border-radius: 2px;
    transition: border-color .2s;
    margin-top: .75rem;
}
.suggest-form .suggest-email:focus {
    border-color: var(--accent);
    outline: none;
}
.suggest-form .suggest-email.error {
    border-color: #c0392b;
}
.suggest-form .suggest-email-label {
    display: block;
    font-size: .8rem;
    color: var(--text-secondary);
    margin-top: .75rem;
    margin-bottom: .25rem;
}
.suggest-form .suggest-email-note {
    display: block;
    font-size: .72rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: .15rem;
}
.suggest-form .btn {
    display: inline-block;
    height: 48px;
    padding: 0 1.5rem;
    background: var(--text);
    color: #fff;
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 500;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 1rem;
    text-decoration: none;
    line-height: 48px;
}
.suggest-form .btn:hover { background: #1C1B1A; }
.suggest-form .btn:disabled { opacity: .5; cursor: not-allowed; }
.suggest-message {
    font-size: .9rem;
    margin-top: .75rem;
    line-height: 1.5;
    min-height: 1.5em;
}
.suggest-message.success { color: var(--accent); }
.suggest-message.error { color: #c0392b; }
.suggest-hp { display: none !important; }
