:root {
    --ink-950: #071b22;
    --ink-900: #0b2630;
    --ink-800: #0e3b46;
    --ink-700: #185664;
    --ink-600: #2a6974;
    --ink-500: #4f7d83;
    --ink-300: #9db7b7;
    --ink-200: #c8d8d5;
    --ink-100: #e5edeb;
    --ink-50: #f4f7f5;
    --paper: #ffffff;
    --warm: #f0643b;
    --warm-dark: #d94e29;
    --warm-soft: #fff0ea;
    --mint: #24c7a1;
    --mint-dark: #0c876e;
    --mint-soft: #e8faf5;
    --yellow: #efb13b;
    --yellow-soft: #fff8e8;
    --red: #c83c4f;
    --red-soft: #fff0f2;
    --blue: #1188ae;
    --blue-soft: #eaf8fc;
    --shadow-sm: 0 1px 2px rgba(7, 27, 34, 0.04), 0 8px 24px rgba(7, 27, 34, 0.05);
    --shadow-md: 0 2px 5px rgba(7, 27, 34, 0.05), 0 20px 50px rgba(7, 27, 34, 0.10);
    --shadow-lg: 0 28px 80px rgba(7, 27, 34, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--ink-50);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink-900);
    background:
        radial-gradient(circle at 10% 0%, rgba(36, 199, 161, 0.10), transparent 27rem),
        radial-gradient(circle at 95% 10%, rgba(240, 100, 59, 0.08), transparent 24rem),
        var(--ink-50);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button, input, select, textarea {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

[hidden] {
    display: none !important;
}

::selection {
    color: var(--paper);
    background: var(--ink-700);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ink-50);
}

::-webkit-scrollbar-thumb {
    border: 3px solid var(--ink-50);
    border-radius: 999px;
    background: var(--ink-300);
}

:focus-visible {
    outline: 3px solid rgba(17, 136, 174, 0.35);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 10px;
    color: white;
    background: var(--ink-950);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(14, 59, 70, 0.08);
    background: rgba(244, 247, 245, 0.88);
    backdrop-filter: blur(18px) saturate(1.2);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 32px rgba(7, 27, 34, 0.07);
}

.header-shell {
    width: min(1240px, calc(100% - 36px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    min-width: max-content;
    padding: 0;
    border: 0;
    color: var(--ink-900);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-align: left;
}

.brand-symbol {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--ink-900);
    box-shadow: 0 8px 18px rgba(7, 27, 34, 0.16);
}

.brand-symbol img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: saturate(0) brightness(0) invert(1);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--ink-500);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav button {
    padding: 10px 11px;
    border: 0;
    border-radius: 10px;
    color: var(--ink-600);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease;
}

.desktop-nav button:hover,
.desktop-nav button[aria-current="page"] {
    color: var(--ink-900);
    background: rgba(14, 59, 70, 0.07);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta {
    min-height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 12px;
    color: white;
    background: var(--warm);
    box-shadow: 0 10px 24px rgba(240, 100, 59, 0.22);
    font-size: 13px;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
    background: var(--warm-dark);
    box-shadow: 0 13px 30px rgba(240, 100, 59, 0.29);
    transform: translateY(-1px);
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--ink-200);
    border-radius: 12px;
    color: var(--ink-800);
    background: var(--paper);
    display: none;
    place-items: center;
}

.mobile-menu-button svg {
    width: 21px;
    height: 21px;
}

.mobile-nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100vh - 78px);
    padding: 16px 18px 28px;
    overflow: auto;
    background: var(--ink-50);
    border-bottom: 1px solid var(--ink-200);
    box-shadow: var(--shadow-md);
}

.mobile-nav button {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 0;
    border-bottom: 1px solid var(--ink-100);
    color: var(--ink-800);
    background: transparent;
    text-align: left;
    font-weight: 700;
}

.mobile-nav button[aria-current="page"] {
    color: var(--warm-dark);
}

#app-container {
    min-height: calc(100vh - 250px);
    outline: none;
}

.route-enter {
    animation: route-in 320ms cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes route-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shared components */
.page-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--mint-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(36, 199, 161, 0.12);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: var(--ink-950);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.section-heading p {
    margin: 0;
    color: var(--ink-500);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.7;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-whatsapp {
    min-height: 52px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn-primary {
    border: 1px solid var(--warm);
    color: var(--paper);
    background: var(--warm);
    box-shadow: 0 13px 30px rgba(240, 100, 59, 0.25);
}

.btn-primary:hover {
    border-color: var(--warm-dark);
    background: var(--warm-dark);
    box-shadow: 0 16px 36px rgba(240, 100, 59, 0.30);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--ink-200);
    color: var(--ink-800);
    background: var(--paper);
}

.btn-secondary:hover {
    border-color: var(--ink-300);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.btn-ghost {
    min-height: 44px;
    border: 0;
    color: var(--ink-600);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--ink-900);
    background: var(--ink-100);
}

.btn-whatsapp {
    border: 1px solid var(--mint-dark);
    color: white;
    background: var(--mint-dark);
    box-shadow: 0 12px 28px rgba(12, 135, 110, 0.21);
}

.btn-whatsapp:hover {
    background: #076d59;
    transform: translateY(-1px);
}

.btn-primary svg,
.btn-secondary svg,
.btn-ghost svg,
.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

.surface-card {
    border: 1px solid rgba(14, 59, 70, 0.10);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--ink-600);
    font-size: 12px;
    line-height: 1.55;
}

.privacy-note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--mint-dark);
}

/* Home */
.home-view {
    overflow: hidden;
}

.home-hero {
    position: relative;
    min-height: 660px;
    padding: 82px 0 74px;
    color: white;
    background:
        radial-gradient(circle at 88% 18%, rgba(36, 199, 161, 0.25), transparent 30rem),
        radial-gradient(circle at 58% 100%, rgba(17, 136, 174, 0.18), transparent 32rem),
        var(--ink-950);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    opacity: 0.55;
    background-image: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.035) 50%);
    background-size: 22px 22px;
    mask-image: linear-gradient(to top, black, transparent);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .84fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.hero-copy .eyebrow {
    color: #82ebd3;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(46px, 6.6vw, 82px);
    font-weight: 800;
    letter-spacing: -0.068em;
    line-height: 0.98;
}

.hero-copy h1 span {
    color: #82ebd3;
}

.hero-copy > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: #b9ced0;
    font-size: clamp(17px, 2.1vw, 21px);
    line-height: 1.62;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-secondary {
    color: white;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,.12);
}

.hero-assurance {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #91adb0;
    font-size: 12px;
    font-weight: 700;
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-assurance svg {
    width: 15px;
    height: 15px;
    color: #82ebd3;
}

.verifier-preview {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    color: var(--ink-900);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-lg);
}

.verifier-preview::before {
    content: "";
    position: absolute;
    inset: -12px 34px auto;
    height: 16px;
    border-radius: 999px 999px 0 0;
    background: var(--warm);
    opacity: .92;
}

.preview-head {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ink-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.preview-head span {
    color: var(--ink-500);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.preview-head strong {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--mint-dark);
    background: var(--mint-soft);
    font-size: 10px;
    letter-spacing: .04em;
}

.preview-title {
    margin: 24px 0 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.preview-subtitle {
    margin: 0 0 20px;
    color: var(--ink-500);
    font-size: 13px;
    line-height: 1.5;
}

.preview-signal {
    margin-top: 10px;
    padding: 14px;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 11px;
    background: var(--ink-50);
}

.signal-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--ink-700);
    background: white;
}

.signal-icon svg {
    width: 17px;
    height: 17px;
}

.preview-signal strong {
    display: block;
    font-size: 12px;
}

.preview-signal small {
    color: var(--ink-500);
    font-size: 10px;
}

.signal-status {
    color: var(--mint-dark);
    font-size: 10px;
    font-weight: 800;
}

.preview-progress {
    height: 6px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--ink-100);
}

.preview-progress span {
    width: 68%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--warm), #ff946e);
}

.proof-strip {
    position: relative;
    z-index: 4;
    width: min(1080px, calc(100% - 36px));
    margin: -30px auto 0;
    padding: 21px 28px;
    border: 1px solid rgba(14, 59, 70, .10);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
    box-shadow: var(--shadow-md);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.proof-item + .proof-item {
    border-left: 1px solid var(--ink-100);
    padding-left: 20px;
}

.proof-item svg {
    width: 22px;
    height: 22px;
    color: var(--mint-dark);
}

.proof-item strong {
    display: block;
    color: var(--ink-900);
    font-size: 12px;
}

.proof-item small {
    color: var(--ink-500);
    font-size: 10px;
}

.home-section {
    padding: 112px 0;
}

.home-section.compact {
    padding-top: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    min-height: 315px;
    padding: 28px;
    border: 1px solid rgba(14, 59, 70, .10);
    border-radius: 22px;
    color: var(--ink-900);
    background: rgba(255,255,255,.88);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

button.product-card {
    width: 100%;
}

.product-card:hover {
    border-color: rgba(14, 59, 70, .22);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-card.featured {
    color: white;
    border-color: var(--ink-900);
    background:
        radial-gradient(circle at 90% 5%, rgba(36,199,161,.27), transparent 12rem),
        var(--ink-900);
}

.product-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--ink-700);
    background: var(--mint-soft);
}

.featured .product-icon {
    color: var(--ink-900);
    background: #82ebd3;
}

.product-icon svg {
    width: 23px;
    height: 23px;
}

.product-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.035em;
}

.product-card p {
    margin: 0 0 24px;
    color: var(--ink-500);
    font-size: 13px;
    line-height: 1.65;
}

.product-card.featured p {
    color: #b9ced0;
}

.product-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--warm-dark);
    font-size: 12px;
    font-weight: 800;
}

.featured .product-link {
    color: #82ebd3;
}

.product-link svg {
    width: 15px;
    height: 15px;
}

.method-section {
    padding: 96px 0;
    color: white;
    background: var(--ink-900);
}

.method-section .section-heading h2 {
    color: white;
}

.method-section .section-heading p {
    color: #9db7b7;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    background: rgba(255,255,255,.09);
}

.method-step {
    min-height: 250px;
    padding: 32px;
    background: var(--ink-900);
}

.method-number {
    width: 42px;
    height: 42px;
    margin-bottom: 52px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #82ebd3;
    font-size: 11px;
    font-weight: 800;
}

.method-step h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
}

.method-step p {
    margin: 0;
    color: #9db7b7;
    font-size: 13px;
    line-height: 1.65;
}

.home-cta {
    margin: 96px auto;
    padding: clamp(34px, 6vw, 68px);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    color: var(--ink-950);
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,.5), transparent 20rem),
        #bff4e7;
}

.home-cta h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1.05;
}

.home-cta p {
    max-width: 640px;
    margin: 16px 0 0;
    color: var(--ink-600);
    line-height: 1.65;
}

/* Fines verifier */
.fines-page {
    padding: 56px 0 100px;
}

.tool-heading {
    max-width: 920px;
    margin: 0 auto 38px;
    text-align: center;
}

.tool-heading h1 {
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .99;
}

.tool-heading > p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--ink-500);
    font-size: 17px;
    line-height: 1.65;
}

.tool-badges {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-badges span {
    padding: 7px 10px;
    border: 1px solid var(--ink-200);
    border-radius: 999px;
    color: var(--ink-600);
    background: rgba(255,255,255,.65);
    font-size: 10px;
    font-weight: 800;
}

.official-search {
    margin: 0 auto 28px;
    padding: 28px;
    border: 1px solid rgba(14, 59, 70, .12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(36, 199, 161, .13), transparent 18rem),
        linear-gradient(145deg, #fff, #f7fbfa);
    box-shadow: 0 18px 50px rgba(14, 59, 70, .08);
}

.official-search-copy {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 16px;
}

.official-search-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--ink-950);
    background: #82ebd3;
}

.official-search-icon svg {
    width: 23px;
    height: 23px;
}

.official-search-copy .eyebrow {
    margin-bottom: 7px;
}

.official-search-copy h2 {
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.official-search-copy p:last-child {
    max-width: 750px;
    margin: 10px 0 0;
    color: var(--ink-500);
    line-height: 1.6;
}

.official-search-controls {
    margin-top: 24px;
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) auto;
    align-items: end;
    gap: 14px;
}

.lookup-method {
    min-height: 48px;
    padding: 4px;
    border: 1px solid var(--ink-200);
    border-radius: 14px;
    display: flex;
    background: white;
}

.lookup-method-button {
    min-width: 104px;
    padding: 0 15px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ink-500);
    background: transparent;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.lookup-method-button svg {
    width: 17px;
    height: 17px;
}

.lookup-method-button.active {
    color: white;
    background: var(--ink-900);
    box-shadow: 0 6px 14px rgba(14, 59, 70, .18);
}

.lookup-source label {
    display: block;
    margin: 0 0 7px;
    color: var(--ink-600);
    font-size: 11px;
    font-weight: 800;
}

.lookup-source .field-input {
    min-height: 48px;
}

.official-search-button {
    min-height: 48px;
    white-space: nowrap;
}

.official-search-status {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--ink-600);
    background: rgba(36, 199, 161, .09);
    font-size: 12px;
    line-height: 1.55;
}

.official-search-status strong {
    color: var(--ink-800);
}

.official-search-privacy {
    margin: 14px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--ink-500);
    font-size: 11px;
    line-height: 1.55;
}

.official-search-privacy svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    color: var(--mint-dark);
}

.wizard-shell {
    min-height: 600px;
    overflow: hidden;
    border: 1px solid rgba(14, 59, 70, .12);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: white;
    box-shadow: var(--shadow-md);
}

.wizard-sidebar {
    padding: 30px 26px;
    color: white;
    background:
        radial-gradient(circle at 20% 100%, rgba(36,199,161,.2), transparent 18rem),
        var(--ink-900);
}

.wizard-sidebar h2 {
    margin: 0 0 28px;
    color: #82ebd3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.wizard-progress {
    position: relative;
    display: grid;
    gap: 22px;
}

.progress-item {
    position: relative;
    min-height: 38px;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 11px;
    color: #78989c;
    font-size: 12px;
    font-weight: 700;
}

.progress-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    left: 14px;
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,.13);
}

.progress-item span {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
}

.progress-item.active,
.progress-item.done {
    color: white;
}

.progress-item.active span {
    color: var(--ink-950);
    border-color: #82ebd3;
    background: #82ebd3;
}

.progress-item.done span {
    color: #82ebd3;
    border-color: rgba(130,235,211,.45);
    background: rgba(130,235,211,.10);
}

.sidebar-trust {
    margin-top: 54px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 15px;
    color: #9db7b7;
    background: rgba(255,255,255,.04);
    font-size: 11px;
    line-height: 1.6;
}

.sidebar-trust svg {
    width: 18px;
    height: 18px;
    margin-bottom: 11px;
    color: #82ebd3;
}

.sidebar-trust strong {
    display: block;
    margin-bottom: 4px;
    color: white;
    font-size: 12px;
}

.wizard-main {
    min-width: 0;
    padding: clamp(30px, 6vw, 64px);
}

.step-panel {
    max-width: 730px;
    margin: 0 auto;
}

.step-kicker {
    margin: 0 0 12px;
    color: var(--warm-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.step-panel h2,
.result-view h2 {
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(27px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.step-intro {
    margin: 13px 0 26px;
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.65;
}

.answer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.answer-grid.one-column {
    grid-template-columns: 1fr;
}

.answer-card {
    position: relative;
    width: 100%;
    min-height: 104px;
    padding: 17px 18px;
    border: 1px solid var(--ink-200);
    border-radius: 16px;
    color: var(--ink-900);
    background: white;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 13px;
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.answer-card:hover {
    border-color: var(--ink-700);
    background: var(--ink-50);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.answer-card.selected {
    border-color: var(--ink-800);
    background: #edf6f4;
    box-shadow: 0 0 0 3px rgba(14,59,70,.08);
}

.answer-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--ink-700);
    background: var(--ink-50);
}

.answer-icon svg {
    width: 19px;
    height: 19px;
}

.answer-card strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.answer-card small {
    display: block;
    margin-top: 4px;
    color: var(--ink-500);
    font-size: 10px;
    line-height: 1.45;
}

.field-group {
    margin-top: 22px;
}

.field-group label,
.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-800);
    font-size: 12px;
    font-weight: 800;
}

.field-input,
.form-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--ink-200);
    border-radius: 12px;
    color: var(--ink-900);
    background: white;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea.field-input {
    min-height: 110px;
    resize: vertical;
}

.field-input:focus,
.form-input:focus {
    outline: none;
    border-color: var(--ink-700);
    box-shadow: 0 0 0 4px rgba(14,59,70,.09);
}

.field-help {
    margin: 7px 0 0;
    color: var(--ink-500);
    font-size: 10px;
    line-height: 1.5;
}

.step-actions {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.inline-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid #f2dfad;
    border-radius: 13px;
    color: #76561a;
    background: var(--yellow-soft);
    font-size: 11px;
    line-height: 1.6;
}

.result-view {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.result-top {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 18px;
}

.result-symbol {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
}

.result-symbol svg {
    width: 29px;
    height: 29px;
}

.result-view[data-status="possible"] .result-symbol {
    color: var(--mint-dark);
    background: var(--mint-soft);
}

.result-view[data-status="review"] .result-symbol {
    color: #916214;
    background: var(--yellow-soft);
}

.result-view[data-status="urgent"] .result-symbol {
    color: var(--red);
    background: var(--red-soft);
}

.result-view[data-status="early"] .result-symbol {
    color: var(--blue);
    background: var(--blue-soft);
}

.result-label {
    margin: 0 0 7px;
    color: var(--mint-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.result-summary {
    margin: 22px 0 0;
    padding: 18px;
    border: 1px solid var(--ink-100);
    border-radius: 15px;
    color: var(--ink-600);
    background: var(--ink-50);
    font-size: 13px;
    line-height: 1.65;
}

.result-metrics {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.result-metric {
    padding: 16px;
    border: 1px solid var(--ink-100);
    border-radius: 14px;
    background: white;
}

.result-metric span {
    display: block;
    margin-bottom: 5px;
    color: var(--ink-500);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.result-metric strong {
    font-size: 13px;
}

.result-block {
    margin-top: 24px;
}

.result-block h3 {
    margin: 0 0 12px;
    color: var(--ink-900);
    font-size: 14px;
    font-weight: 800;
}

.legal-clock-intro {
    max-width: 720px;
    margin: -3px 0 14px;
    color: var(--ink-500);
    font-size: 11px;
    line-height: 1.55;
}

.legal-clocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.legal-clock {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #f7fbfa);
}

.legal-clock-tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--mint-dark);
    background: var(--mint-soft);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-clock > strong {
    display: block;
    color: var(--ink-900);
    font-size: 14px;
}

.legal-clock p {
    margin: 8px 0 10px;
    color: var(--ink-600);
    font-size: 12px;
    line-height: 1.55;
}

.legal-clock small {
    display: block;
    color: var(--ink-500);
    font-size: 10px;
    line-height: 1.55;
}

.result-reasons,
.next-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.result-reasons li,
.next-steps li {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--ink-600);
    font-size: 12px;
    line-height: 1.55;
}

.result-reasons li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--mint-dark);
    background: var(--mint-soft);
    font-size: 10px;
    font-weight: 900;
}

.next-steps {
    counter-reset: steps;
}

.next-steps li {
    counter-increment: steps;
}

.next-steps li::before {
    content: counter(steps);
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--ink-800);
    font-size: 9px;
    font-weight: 800;
}

.result-actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.result-actions .btn-whatsapp {
    grid-column: 1 / -1;
}

.source-note {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--ink-100);
    color: var(--ink-500);
    font-size: 10px;
    line-height: 1.6;
}

.source-note a {
    color: var(--ink-700);
    font-weight: 800;
}

.draft-box {
    margin-top: 30px;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid var(--ink-200);
    border-radius: 20px;
    background: #fbfdfc;
}

.draft-box h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 800;
}

.draft-box > p {
    margin: 0 0 20px;
    color: var(--ink-500);
    font-size: 11px;
    line-height: 1.6;
}

.draft-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.draft-form-grid .full {
    grid-column: 1 / -1;
}

.draft-preview {
    max-height: 420px;
    margin-top: 18px;
    padding: 22px;
    overflow: auto;
    white-space: pre-wrap;
    border: 1px solid var(--ink-200);
    border-radius: 14px;
    color: #233a40;
    background: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    line-height: 1.7;
}

.draft-actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.soft-cta {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid rgba(36,199,161,.22);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
    color: white;
    background: var(--ink-900);
}

.soft-cta h3 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 800;
}

.soft-cta p {
    max-width: 700px;
    margin: 0;
    color: #9db7b7;
    font-size: 12px;
    line-height: 1.6;
}

/* Legacy view improvements */
.view-container {
    display: none;
}

.view-container.active {
    display: block;
    animation: route-in 240ms ease both;
}

.card-hover:hover {
    border-color: var(--ink-300) !important;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: var(--ink-800);
}

/* Footer */
.site-footer {
    color: #b8c9c9;
    background: var(--ink-950);
}

.footer-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 68px 0 46px;
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 46px;
}

.footer-brand .brand {
    color: white;
}

.footer-brand .brand-symbol {
    background: rgba(255,255,255,.09);
    box-shadow: none;
}

.footer-brand .brand-copy small {
    color: #78989c;
}

.footer-brand p {
    max-width: 320px;
    margin: 20px 0 0;
    color: #78989c;
    font-size: 12px;
    line-height: 1.65;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column button {
    padding: 0;
    border: 0;
    color: #8ea8aa;
    background: transparent;
    font-size: 11px;
    text-align: left;
    text-decoration: none;
}

.footer-column a:hover,
.footer-column button:hover {
    color: white;
}

.footer-legal {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    color: #68888c;
    font-size: 9px;
    line-height: 1.6;
}

.footer-legal p {
    max-width: 760px;
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: white;
    background: var(--mint-dark);
    box-shadow: 0 16px 38px rgba(7,27,34,.24);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease;
}

.floating-whatsapp:hover {
    background: #076d59;
    transform: translateY(-2px);
}

.floating-whatsapp svg {
    width: 18px;
    height: 18px;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    z-index: 200;
    max-width: min(430px, calc(100% - 32px));
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    background: var(--ink-950);
    box-shadow: var(--shadow-md);
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
    }

    .hero-grid {
        grid-template-columns: 1fr 390px;
        gap: 38px;
    }
}

@media (max-width: 860px) {
    .home-hero {
        padding-top: 62px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .verifier-preview {
        max-width: 560px;
    }

    .proof-strip {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .proof-item + .proof-item {
        padding: 15px 0 0;
        border-left: 0;
        border-top: 1px solid var(--ink-100);
    }

    .product-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 260px;
    }

    .method-step {
        min-height: 220px;
    }

    .method-number {
        margin-bottom: 34px;
    }

    .home-cta {
        grid-template-columns: 1fr;
    }

    .wizard-shell {
        grid-template-columns: 1fr;
    }

    .wizard-sidebar {
        padding: 20px;
    }

    .wizard-sidebar h2,
    .sidebar-trust {
        display: none;
    }

    .wizard-progress {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .progress-item {
        min-height: auto;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 5px;
        text-align: center;
        font-size: 9px;
    }

    .progress-item:not(:last-child)::after {
        top: 15px;
        left: calc(50% + 20px);
        width: calc(100% - 33px);
        height: 1px;
    }

    .footer-shell {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 620px) {
    .header-shell,
    .page-shell,
    .footer-shell,
    .footer-legal {
        width: min(100% - 28px, 1180px);
    }

    .header-shell {
        min-height: 70px;
    }

    .mobile-nav {
        inset: 70px 0 auto;
        max-height: calc(100vh - 70px);
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
    }

    .brand-symbol img {
        width: 30px;
        height: 30px;
    }

    .header-cta {
        display: none;
    }

    .home-hero {
        min-height: auto;
        padding: 52px 0 72px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions > * {
        width: 100%;
    }

    .verifier-preview {
        padding: 18px;
        border-radius: 22px;
    }

    .preview-title {
        font-size: 20px;
    }

    .proof-strip {
        margin-top: -22px;
        padding: 20px;
    }

    .home-section {
        padding: 82px 0;
    }

    .home-cta {
        margin: 70px auto;
        border-radius: 22px;
    }

    .fines-page {
        padding-top: 38px;
    }

    .tool-heading {
        text-align: left;
    }

    .tool-heading h1 {
        font-size: 43px;
    }

    .tool-heading > p {
        font-size: 15px;
    }

    .tool-badges {
        justify-content: flex-start;
    }

    .official-search {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .official-search-copy {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .official-search-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .official-search-copy h2 {
        font-size: 25px;
    }

    .official-search-controls {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .lookup-method {
        width: 100%;
    }

    .lookup-method-button {
        min-height: 42px;
        min-width: 0;
        flex: 1;
    }

    .official-search-button {
        width: 100%;
    }

    .wizard-shell {
        margin-inline: -2px;
        border-radius: 20px;
    }

    .wizard-main {
        padding: 28px 20px 32px;
    }

    .answer-grid,
    .result-metrics,
    .result-actions,
    .legal-clocks,
    .draft-form-grid {
        grid-template-columns: 1fr;
    }

    .result-actions .btn-whatsapp,
    .draft-form-grid .full {
        grid-column: auto;
    }

    .result-top {
        grid-template-columns: 50px 1fr;
        gap: 13px;
    }

    .result-symbol {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .soft-cta {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .floating-whatsapp span {
        display: none;
    }
}

.analytics-consent {
    position: fixed;
    z-index: 180;
    left: 50%;
    bottom: 18px;
    width: min(920px, calc(100% - 36px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 20px;
    border: 1px solid rgba(14, 59, 70, .16);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 70px rgba(11, 38, 48, .22);
    backdrop-filter: blur(16px);
}

.analytics-consent[hidden] {
    display: none;
}

.analytics-consent strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink-900);
    font-size: 16px;
}

.analytics-consent p {
    max-width: 620px;
    margin: 0;
    color: var(--ink-500);
    font-size: 13px;
    line-height: 1.55;
}

.analytics-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.analytics-consent-actions .btn-primary,
.analytics-consent-actions .btn-secondary {
    min-height: 42px;
    padding: 10px 16px;
    white-space: nowrap;
}

.consent-open .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

@media (max-width: 680px) {
    .analytics-consent {
        bottom: 10px;
        width: calc(100% - 20px);
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
    }

    .analytics-consent-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .analytics-consent-actions .btn-primary,
    .analytics-consent-actions .btn-secondary {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .floating-whatsapp,
    .wizard-sidebar,
    .tool-heading,
    .result-actions,
    .source-note,
    .soft-cta,
    .toast,
    .analytics-consent,
    .draft-actions,
    .draft-box form {
        display: none !important;
    }

    body {
        background: white;
    }

    #app-container,
    .fines-page,
    .page-shell,
    .wizard-shell,
    .wizard-main,
    .result-view {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .wizard-shell {
        display: block;
    }

    .draft-preview {
        max-height: none;
        overflow: visible;
        border: 0;
        font-size: 11pt;
    }
}
