:root {
    --navy: #001b3a;
    --navy-2: #06284c;
    --blue: #0667f9;
    --blue-dark: #0053d6;
    --green: #10b981;
    --orange: #ff6b18;
    --ink: #162b44;
    --muted: #65758a;
    --line: #dfe8f2;
    --soft: #f5f9ff;
    --white: #fff;
    --shadow: 0 24px 70px rgba(0,54,121,.12);
    --radius-sm: 16px;
    --radius: 26px;
    --shell: 1120px;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin-top: 0; }
h1, h2 { color: var(--navy); line-height: 1.12; letter-spacing: -.035em; }
.shell { position: relative; width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.eyebrow { margin-bottom: 13px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.report-page { min-height: 100vh; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }
.report-hero { position: relative; padding: 72px 0 54px; overflow: hidden; background: radial-gradient(circle at 85% 12%, rgba(16,185,129,.1), transparent 27%), #fff; }
.report-hero::before { content: ""; position: absolute; top: -280px; right: -180px; width: 640px; height: 640px; border: 1px solid rgba(6,103,249,.08); border-radius: 50%; box-shadow: 0 0 0 75px rgba(6,103,249,.025), 0 0 0 150px rgba(16,185,129,.018); }
.report-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: center; gap: 72px; }
.report-hero__copy { position: relative; z-index: 2; }
.report-hero h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; }
.report-hero h1 span { color: transparent; background: linear-gradient(100deg, var(--green), var(--blue)); background-clip: text; -webkit-background-clip: text; }
.report-hero__copy > p:last-of-type { max-width: 650px; margin-bottom: 25px; color: var(--muted); font-size: 1.04rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; color: var(--muted); list-style: none; font-size: .76rem; }
.hero-points li::before { content: "✓"; display: inline-grid; width: 18px; height: 18px; margin-right: 7px; place-items: center; color: #fff; border-radius: 50%; background: var(--green); font-size: .62rem; font-weight: 800; }
.report-hero__visual { position: relative; z-index: 2; height: 340px; }
.report-hero__visual img { position: absolute; z-index: 2; left: 50%; bottom: -44px; width: 355px; max-width: none; transform: translateX(-50%); }
.visual-orbit { position: absolute; top: 35px; left: 50%; width: 280px; height: 280px; border: 1px solid rgba(6,103,249,.11); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 35px rgba(6,103,249,.025), 0 0 0 70px rgba(16,185,129,.018); }

.report-section { padding: 62px 0 76px; }
.report-layout { display: grid; grid-template-columns: minmax(0, 1fr) 325px; align-items: start; gap: 28px; }
.report-form-card, .report-aside { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.report-form-card { padding: 38px; }
.form-heading { display: flex; align-items: center; gap: 16px; padding-bottom: 26px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.form-heading__icon { width: 58px; height: 58px; display: grid; flex: 0 0 auto; place-items: center; color: var(--blue); border-radius: 17px; background: #eaf2ff; }
.form-heading__icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.form-heading .eyebrow { margin-bottom: 5px; }
.form-heading h2, .report-aside h2 { margin-bottom: 0; font-size: clamp(1.65rem, 3vw, 2.2rem); }

.report-form { display: grid; gap: 21px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 8px; }
.field label, .issue-fieldset legend { color: var(--navy-2); font-size: .82rem; font-weight: 800; }
.field input, .field textarea { width: 100%; color: var(--ink); border: 1px solid #d8e3ef; border-radius: 13px; outline: none; background: #fbfdff; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input { height: 52px; padding: 0 16px; }
.field textarea { min-height: 145px; padding: 14px 16px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa9ba; }
.field input:focus, .field textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(6,103,249,.1); }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; top: 50%; left: 16px; width: 21px; color: var(--blue); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transform: translateY(-50%); pointer-events: none; }
.input-with-icon input { padding-left: 48px; }

.issue-fieldset { padding: 0; margin: 0; border: 0; }
.issue-fieldset legend { padding: 0; margin-bottom: 9px; }
.issue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.issue-option { position: relative; min-height: 76px; display: flex; align-items: center; gap: 11px; padding: 13px 38px 13px 13px; color: var(--navy-2); border: 1px solid #d8e3ef; border-radius: 14px; cursor: pointer; background: #fbfdff; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.issue-option:hover { transform: translateY(-2px); border-color: rgba(6,103,249,.35); background: #fff; }
.issue-option input { position: absolute; opacity: 0; pointer-events: none; }
.issue-option__check { position: absolute; top: 12px; right: 12px; width: 17px; height: 17px; border: 2px solid #b6c5d5; border-radius: 50%; background: #fff; }
.issue-option input:checked ~ .issue-option__check { border: 5px solid var(--blue); }
.issue-option:has(input:checked) { border-color: var(--blue); background: #f2f7ff; box-shadow: 0 0 0 3px rgba(6,103,249,.08); }
.issue-option__icon { width: 39px; height: 39px; display: grid; flex: 0 0 auto; place-items: center; color: var(--blue); border-radius: 11px; background: #eaf2ff; }
.issue-option__icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.issue-option strong { font-size: .78rem; line-height: 1.3; }

.submit-button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 25px; color: #fff; border: 0; border-radius: 999px; cursor: pointer; background: var(--blue); box-shadow: 0 10px 25px rgba(6,103,249,.25); font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.submit-button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 14px 30px rgba(6,103,249,.3); }
.submit-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.whatsapp-alternative { display: flex; align-items: center; justify-content: center; gap: 8px; padding-top: 19px; margin: 23px 0 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .75rem; text-align: center; }
.whatsapp-alternative svg { width: 20px; flex: 0 0 auto; color: #078f61; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-alternative a { color: #078f61; font-weight: 800; }

.report-aside { padding: 31px 27px; }
.report-aside > h2 { margin-bottom: 28px; }
.check-list { display: grid; gap: 22px; padding: 0; margin: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; }
.check-list li > span { width: 30px; height: 30px; display: grid; flex: 0 0 auto; place-items: center; color: var(--blue); border-radius: 10px; background: #eaf2ff; font-size: .72rem; font-weight: 800; }
.check-list p { margin: 0; line-height: 1.4; }
.check-list strong, .check-list small { display: block; }
.check-list strong { color: var(--navy-2); font-size: .82rem; }
.check-list small { margin-top: 3px; color: var(--muted); font-size: .71rem; }
.privacy-note { display: flex; align-items: center; gap: 12px; padding: 15px; margin-top: 30px; color: #087f5b; border-radius: 14px; background: #eafbf5; }
.privacy-note svg { width: 24px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note p { margin: 0; line-height: 1.35; }
.privacy-note strong, .privacy-note small { display: block; }
.privacy-note strong { font-size: .76rem; }
.privacy-note small { margin-top: 2px; color: #4c7e6e; font-size: .67rem; }

@media (max-width: 900px) {
    .report-hero { padding: 62px 0 45px; }
    .report-hero__grid { grid-template-columns: 1fr; gap: 20px; }
    .report-hero__visual { height: 260px; }
    .report-hero__visual img { bottom: -60px; width: 290px; }
    .visual-orbit { top: 10px; width: 220px; height: 220px; }
    .report-layout { grid-template-columns: 1fr; }
    .report-aside { order: -1; }
}

@media (max-width: 560px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .report-hero { padding: 50px 0 36px; }
    .report-hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
    .hero-points { display: grid; }
    .report-hero__visual { height: 220px; }
    .report-hero__visual img { bottom: -48px; width: 245px; }
    .report-section { padding: 48px 0 56px; }
    .report-form-card, .report-aside { padding: 25px 20px; border-radius: 21px; }
    .form-heading { align-items: flex-start; }
    .form-heading__icon { width: 50px; height: 50px; }
    .field-row, .issue-grid { grid-template-columns: 1fr; }
    .whatsapp-alternative { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: .01ms !important; }
}
