*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027 0%, #1a3a4a 45%, #0d4f3c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Hero ── */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    width: 100%;
}

/* ── Logos ── */
.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}
.logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    padding: 6px;
}
.logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
@keyframes wave {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}
.wave-animation { animation: wave 2.4s ease-in-out infinite; }
.logo-row .logo-wrap:nth-child(2) { animation-delay: .2s; }
.logo-row .logo-wrap:nth-child(3) { animation-delay: .4s; }
.logo-row .logo-wrap:nth-child(4) { animation-delay: .6s; }

/* ── Title block ── */
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 0.6rem;
}
.hero-subtitle {
    font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}
.hero-year {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 1rem;
    background: rgba(22,163,74,0.18);
    border: 1px solid rgba(22,163,74,0.35);
    border-radius: 50px;
    color: #86efac;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ── Action buttons ── */
.action-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-proceed {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #16a34a, #0d9488);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(22,163,74,0.35);
    transition: opacity .2s, transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-proceed:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22,163,74,0.45);
}
.btn-export {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-export:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.45);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Footer ── */
footer {
    width: 100%;
    text-align: center;
    padding: 1.1rem 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    line-height: 1.7;
}

/* ── Shared modal base ── */
.modal-content {
    background: #162533;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}
.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 1.5rem;
}
.modal-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}
.btn-close { filter: invert(1) brightness(0.6); }
.modal-body { padding: 1.5rem; }
.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 1.5rem;
    gap: 0.5rem;
}

/* ── Description modal ── */
.jmc-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    text-align: justify;
}
.jmc-text p { margin-bottom: 1rem; }

.terms-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: 1.25rem;
    cursor: pointer;
}
.terms-bar input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #16a34a;
    flex-shrink: 0;
}
.terms-bar span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.4;
}
.terms-bar strong { color: #86efac; font-weight: 600; }

.btn-check-status {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: 1.5px solid rgba(251,191,36,0.4);
    border-radius: 10px;
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background .2s, border-color .2s;
}
.btn-check-status:not(.disabled):hover {
    background: rgba(251,191,36,0.1);
    border-color: rgba(251,191,36,0.7);
    color: #fbbf24;
}
.btn-check-status.disabled {
    opacity: 0.35;
    pointer-events: none;
}
.btn-submit-report {
    flex: 1;
    padding: 0.75rem;
    background: linear-gradient(135deg, #16a34a, #0d9488);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: opacity .2s;
}
.btn-submit-report.disabled {
    opacity: 0.35;
    pointer-events: none;
}
.btn-submit-report:not(.disabled) { opacity: 1; }

/* ── Form choice modal ── */
.form-choice-card {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.1rem 1.15rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.form-choice-card:hover {
    border-color: rgba(22,163,74,0.45);
    background: rgba(22,163,74,0.06);
}
.form-choice-card.selected {
    border-color: #16a34a;
    background: rgba(22,163,74,0.1);
}
.form-choice-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #16a34a;
    flex-shrink: 0;
    margin-top: 3px;
}
.form-choice-card .fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.fc-icon-green { background: rgba(22,163,74,0.18); color: #4ade80; }
.fc-icon-blue  { background: rgba(59,130,246,0.18); color: #93c5fd; }
.form-choice-card h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}
.form-choice-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}
.form-choice-card ul {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.45);
    padding-left: 1.1rem;
    margin: 0;
    line-height: 1.6;
}
.modal-footer .btn-close-modal {
    padding: 0.62rem 1.3rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 9px;
    color: rgba(255,255,255,0.65);
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background .2s;
}
.modal-footer .btn-close-modal:hover { background: rgba(255,255,255,0.13); }
.modal-footer .btn-proceed-form {
    padding: 0.62rem 1.4rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 9px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity .2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.modal-footer .btn-proceed-form:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.modal-footer .btn-proceed-form:not(:disabled) { opacity: 1; }

@media (max-width: 576px) {
    .logo-wrap { width: 56px; height: 56px; }
    .action-row { flex-direction: column; width: 100%; max-width: 320px; }
    .btn-proceed, .btn-export { width: 100%; justify-content: center; }
}