/* ── Neet Download Gate ────────────────────────────────────────────────── */

.neet-download-gate {
    max-width: 640px;
    margin: 0 auto;
    font-family: inherit;
}

.neet-download-gate__description {
    margin-bottom: 24px;
    color: #374151;
    line-height: 1.7;
}

/* Form wrapper — no extra styling needed, neet-form handles its own */
.neet-download-gate__form {
    transition: opacity 0.3s;
}

/* ── Success state ── */

.neet-download-gate__success {
    text-align: center;
    padding: 40px 32px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    animation: neet-dm-fadein 0.4s ease;
}

@keyframes neet-dm-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.neet-download-gate__success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.neet-download-gate__success-icon svg {
    width: 100%;
    height: 100%;
}

.neet-download-gate__success-heading {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.neet-download-gate__success-message {
    color: #6b7280;
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
}

/* Download button */
.neet-download-gate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #4f46e5;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.neet-download-gate__btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none !important;
}

.neet-download-gate__btn:active {
    transform: translateY(0);
}

.neet-download-gate__expiry-note {
    margin-top: 12px;
    font-size: 12px;
    color: #9ca3af;
}

/* Fade form out while transitioning */
.neet-download-gate__form--fading {
    opacity: 0;
    pointer-events: none;
}
