/* === BRANDON MAZDA — CHECKLIST SEMINUEVOS — Premium Dark Edition === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
    --black:    #0f0e0d;
    --black2:   #1a1816;
    --black3:   #232120;
    --black4:   #2c2a27;
    --gold:     #b89a64;
    --gold-l:   #d4b87a;
    --gold-d:   #8a7248;
    --gold-bg:  rgba(184,154,100,.08);
    --gold-bg2: rgba(184,154,100,.14);
    --gold-glow:rgba(184,154,100,.2);
    --cream:    #e8e0d0;
    --cream2:   #F5F0EA;
    --white:    #fff;
    --txt:      #F5F0EA;
    --txt2:     #b0a898;
    --muted:    #6e6860;
    --brd:      rgba(184,154,100,.12);
    --brd2:     rgba(255,255,255,.06);
    --green:    #4caf7d;
    --green-bg: rgba(76,175,125,.10);
    --green-l:  rgba(76,175,125,.30);
    --amber:    #e0a830;
    --amber-bg: rgba(224,168,48,.10);
    --amber-l:  rgba(224,168,48,.30);
    --red:      #e05c5c;
    --red-bg:   rgba(224,92,92,.10);
    --radius:   12px;
    --radius-sm:8px;
    --shadow:   0 8px 40px rgba(0,0,0,.6);
    --shadow-sm:0 2px 16px rgba(0,0,0,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(184,154,100,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(184,154,100,0.04) 0%, transparent 50%);
    color: var(--txt);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TOPBAR === */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15,14,13,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184,154,100,0.08);
    padding: 0 1.5rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.topbar-back {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(245,240,234,0.45);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color .3s;
    position: relative;
}
.topbar > span { flex: 1; }
.topbar-back::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.topbar-back:hover { color: rgba(245,240,234,0.75); }
.topbar-back:hover::after { width: 100%; }
.topbar-back svg { transition: transform .3s; }
.topbar-back:hover svg { transform: translateX(-3px); }
.topbar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}
.topbar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    opacity: 0.88;
}
.topbar-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(245,240,234,0.6);
    letter-spacing: 0.05em;
}
.topbar-section {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
}

/* === APP WRAPPER === */
.app {
    max-width: 660px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* === HERO HEADER === */
.hero {
    background: var(--black2);
    border: 1px solid var(--brd);
    border-radius: var(--radius);
    padding: 28px 28px 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(196,162,101,.07) 0%, transparent 60%);
    pointer-events: none;
}
.hero-top {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}
.hero-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold-bg2);
    border: 1.5px solid var(--brd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--cream2);
    line-height: 1.2;
}
.hero p {
    font-size: 10px;
    color: var(--gold);
    margin-top: 5px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}
.hero-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l), transparent);
    margin: 20px 0 0;
    opacity: .5;
}

/* === PROGRESS === */
.prog {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--black2);
    border: 1px solid var(--brd);
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.prog-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
}
.prog-bar {
    flex: 1;
    height: 4px;
    background: var(--black3);
    border-radius: 4px;
    overflow: hidden;
}
.prog-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
    border-radius: 4px;
    transition: width .5s ease;
    box-shadow: 0 0 8px var(--gold-glow);
}
.prog-txt {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    min-width: 36px;
    text-align: right;
}

/* === STEPS === */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 1.75rem;
    gap: 0;
}
.stp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: rgba(245,240,234,0.3);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color .3s;
}
.stp-d {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 9px;
    color: rgba(245,240,234,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all .3s;
}
.stp.now { color: var(--gold); }
.stp.now .stp-d {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}
.stp.ok { color: rgba(76,175,125,0.7); }
.stp.ok .stp-d {
    background: rgba(76,175,125,0.15);
    color: var(--green);
    border-color: rgba(76,175,125,0.4);
}
.stp-l {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 12px;
    transition: background .3s;
}
.stp-l.ok { background: rgba(76,175,125,0.25); }

/* === SECTION LABEL (mismo estilo que landing) === */
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 0.75rem;
}

/* === PHASES / CARDS === */
.phase { display: none; }
.phase.on { display: block; }
.card {
    background: rgba(26,24,22,0.7);
    border: 1px solid rgba(184,154,100,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,154,100,0.5), transparent);
    pointer-events: none;
}
.card-body { padding: 3rem 2.5rem; }

/* === WELCOME BLOCK === */
.welc {
    text-align: center;
    padding: 0 0 1.5rem;
}
.welc .em {
    display: none; /* removido — el section-label ocupa ese rol visual */
}
.welc h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: var(--cream2);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}
.welc h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}
.welc p {
    font-size: 0.82rem;
    color: rgba(245,240,234,0.55);
    margin-top: 1.2rem;
    line-height: 1.85;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

/* === SECTION DIVIDER === */
.sec-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 16px;
}
.sec-divider::before, .sec-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--brd);
}
.sec-divider span {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

/* === FORM SEPARATOR === */
.form-sep {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0.25rem 0 0;
}
.form-sep span:first-child,
.form-sep span:last-child {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,154,100,0.25));
}
.form-sep span:last-child {
    background: linear-gradient(90deg, rgba(184,154,100,0.25), transparent);
}
.form-sep-txt {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(184,154,100,0.4);
    font-weight: 600;
    white-space: nowrap;
    flex: none !important;
    background: none !important;
    height: auto !important;
}

/* === FORM === */
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 1.5rem;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(245,240,234,0.45);
    font-weight: 600;
}
.field input {
    padding: 12px 14px;
    border: 1px solid rgba(184,154,100,0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    background: rgba(255,255,255,0.04);
    color: var(--txt);
    transition: border-color .3s, background .3s;
    outline: none;
    width: 100%;
}
.field input::placeholder { color: rgba(245,240,234,0.35); }
.field input:focus {
    border-color: var(--gold);
    background: rgba(184,154,100,0.05);
    outline: none;
}
@media (max-width: 500px) { .form { grid-template-columns: 1fr; } }

/* === CTA BUTTON === */
.cta {
    display: block;
    width: 100%;
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: #0f0e0d;
    border: none;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.cta:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184,154,100,.35);
}

/* === QUESTIONS === */
.q {
    border: 1px solid var(--brd);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    margin-bottom: 14px;
    background: var(--black3);
    position: relative;
}
.q::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
    border-radius: var(--radius) var(--radius) 0 0;
}
.q-num {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Progress bar */
.q-progress {
    width: 100%;
    height: 4px;
    background: var(--brd2);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}
.q-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #d4a855);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Question animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.q-animate {
    animation: fadeInUp 0.35s ease-out;
}

/* Motivational micro-copy */
.q-motivation {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.q-icon { display: none; }
.q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--cream2);
    margin-bottom: 8px;
    line-height: 1.4;
}
.q-hint {
    font-size: 14px;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.q-btns { display: flex; gap: 12px; justify-content: center; }
.qb {
    flex: 1;
    max-width: 160px;
    padding: 13px 18px;
    border: 1px solid var(--brd2);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    background: var(--black4);
    color: var(--txt2);
}
.qb-y { border-color: var(--green-l); color: var(--green); background: var(--green-bg); }
.qb-y:hover { background: var(--green); color: var(--black); border-color: var(--green); box-shadow: 0 4px 16px rgba(76,175,125,.3); }
.qb-n { border-color: rgba(224,92,92,.3); color: var(--red); background: var(--red-bg); }
.qb-n:hover { background: var(--red); color: var(--white); border-color: var(--red); box-shadow: 0 4px 16px rgba(224,92,92,.3); }
.skip {
    display: block;
    margin: 14px auto 0;
    background: none;
    border: none;
    color: var(--txt2);
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color .2s;
    letter-spacing: .3px;
    opacity: .85;
}
.skip:hover { color: var(--gold); opacity: 1; }

/* === DOCUMENT SECTIONS === */
.sec { margin-bottom: 20px; }
.sec-h {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--gold-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    border-left: 2px solid var(--gold);
}
.sec-ic { font-size: 18px; }
.sec-t {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--cream2);
    flex: 1;
    letter-spacing: .3px;
}
.sec-c {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    background: var(--green-bg);
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}
.sec-c.pn { color: var(--amber); background: var(--amber-bg); }

/* === DOCUMENT ROWS === */
.doc {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--brd2);
    transition: all .2s;
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
}
.doc:hover { background: var(--black3); }
.doc.done { background: var(--green-bg); border-color: var(--green-l); }
.doc.must { border-left: 2px solid var(--gold); }
.doc.co { border-left: 2px solid var(--amber-l); }

/* === CHECKBOX === */
.ck { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.ck input { display: none; }
.ck span {
    width: 20px; height: 20px;
    border: 1.5px solid var(--brd2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    background: var(--black3);
}
.ck input:checked + span {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}
.ck input:checked + span::after {
    content: '✓';
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
}

.doc-ic { font-size: 18px; flex-shrink: 0; }
.doc-info { flex: 1; min-width: 0; }
.doc-nm {
    font-size: 12px;
    font-weight: 600;
    color: var(--txt);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.doc-dt { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* === PILLS === */
.pill {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.pill-r { background: var(--gold-bg2); color: var(--gold); border: 1px solid var(--brd); }
.pill-c { background: var(--amber-bg); color: var(--amber); }

/* === STATUS SELECT === */
.st {
    padding: 5px 8px;
    border: 1px solid var(--brd2);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-family: inherit;
    background: var(--black3);
    cursor: pointer;
    color: var(--txt2);
    min-width: 110px;
    transition: all .2s;
}
.st:focus { outline: none; border-color: var(--gold); }
.st.s1 { border-color: var(--green-l); background: var(--green-bg); color: var(--green); }
.st.s2 { border-color: var(--amber-l); background: var(--amber-bg); color: var(--amber); }
.st.s3 { border-color: rgba(224,92,92,.3); background: var(--red-bg); color: var(--red); }
@media (max-width: 500px) { .doc { flex-wrap: wrap; } .st { width: 100%; margin-top: 6px; } }

/* === TOOLTIP === */
.help {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold-bg2);
    color: var(--gold);
    border: 1px solid var(--brd);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--black4);
    color: var(--txt);
    border: 1px solid var(--brd);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 400;
    width: 270px;
    line-height: 1.6;
    z-index: 99;
    box-shadow: var(--shadow);
}
.tip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--brd);
}
.help:hover .tip, .help:focus .tip { display: block; }

/* === TOOLBAR === */
.tb {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.tbtn {
    padding: 10px 16px;
    border: 1px solid var(--brd);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    background: var(--black3);
    color: var(--txt2);
    transition: all .2s;
    white-space: nowrap;
}
.tbtn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.dl-btn {
    background: linear-gradient(135deg, var(--gold-d), var(--gold)) !important;
    color: var(--black) !important;
    border-color: var(--gold) !important;
    font-size: 12px !important;
    padding: 10px 22px !important;
    box-shadow: 0 4px 16px var(--gold-glow);
}
.dl-btn:hover { box-shadow: 0 6px 24px rgba(196,162,101,.45) !important; transform: translateY(-1px); }

/* === COPIES BANNER === */
.copies-banner {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--gold-bg);
    border: 1px solid var(--brd);
    border-radius: var(--radius);
    margin-bottom: 18px;
}
.cb-ic { font-size: 22px; flex-shrink: 0; }
.cb-txt { font-size: 12px; color: var(--txt2); line-height: 1.7; }
.cb-txt strong { color: var(--cream2); }

/* === PENDING CARD === */
.pend-card {
    padding: 18px;
    border-radius: var(--radius);
    margin-top: 18px;
    border: 1px solid var(--brd2);
    background: var(--black3);
}
.pend-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--cream);
    font-weight: 500;
}
.pend-card ul { padding-left: 20px; font-size: 12px; color: var(--txt2); line-height: 1.9; }
.pend-card.alldone { background: var(--green-bg); border-color: var(--green-l); }
.pend-card.alldone h3 { color: var(--green); }

/* === INFO CARD === */
.info-card {
    background: var(--black3);
    border: 1px solid var(--brd2);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 18px;
}
.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--cream);
    font-weight: 500;
}
.info-card ul { padding-left: 18px; font-size: 11px; color: var(--txt2); line-height: 2; }
.info-card li strong { color: var(--gold); }

/* === FISCAL CARD === */
.fiscal-card {
    padding: 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    border: 1px solid var(--green-l);
    background: var(--green-bg);
}
.fiscal-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--green);
    margin-bottom: 8px;
    font-weight: 600;
}
.fiscal-card.regime-other { border-color: var(--amber-l); background: var(--amber-bg); }
.fiscal-card.regime-other h4 { color: var(--amber); }
.fiscal-card .fc-steps { list-style: none; counter-reset: fc; padding: 0; margin: 0; }
.fiscal-card .fc-steps li {
    counter-increment: fc;
    padding: 7px 0 7px 32px;
    font-size: 12px;
    color: var(--txt2);
    position: relative;
    line-height: 1.6;
}
.fiscal-card .fc-steps li::before {
    content: counter(fc);
    position: absolute;
    left: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 6px;
}
.fiscal-card.regime-other .fc-steps li::before { background: var(--amber); }

/* === CREDIT INFO CARD === */
.credit-card {
    text-align: left;
    background: rgba(30, 60, 90, 0.12);
    border: 1px solid rgba(100, 160, 220, 0.2);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 8px;
}
.credit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.credit-icon { font-size: 24px; }
.credit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #7eb8e0;
}
.credit-intro {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.7;
    margin-bottom: 18px;
}
.credit-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.credit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.credit-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(100, 160, 220, 0.2);
    color: #7eb8e0;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.credit-item strong {
    display: block;
    font-size: 13px;
    color: var(--cream2);
    margin-bottom: 3px;
}
.credit-item p {
    font-size: 12px;
    color: var(--txt2);
    line-height: 1.6;
    margin: 0;
}
.credit-footer {
    font-size: 12px;
    color: var(--txt2);
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(100, 160, 220, 0.15);
    text-align: center;
}

/* === REFERENCE ITEMS === */
.ref-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--brd2);
    font-size: 12px;
    line-height: 1.6;
}
.ref-item:last-child { border-bottom: none; }
.ref-ic { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.ref-item strong { color: var(--cream); font-weight: 600; font-size: 12px; }
.ref-item span { color: var(--txt2); }

/* === REF SECTION TITLE === */
.ref-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === RESULT BODY === */
.result-body {
    text-align: center;
    padding: 3rem 2rem 2rem;
}
.result-emoji { display: none; }
.result-gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto 1.5rem;
    opacity: 0.7;
}
.result-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--cream2);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 10px;
}
.result-title span { color: var(--gold); font-style: italic; }
.result-sub {
    font-size: 0.8rem;
    color: rgba(245,240,234,0.55);
    letter-spacing: 0.03em;
    margin-bottom: 0;
}
.result-sub strong {
    color: var(--gold);
    font-size: 0.9rem;
}
.result-divider {
    height: 1px;
    background: var(--brd);
    margin: 24px 0;
}

/* === DOWNLOAD BUTTONS === */
.download-main {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all .25s;
    box-shadow: 0 4px 20px var(--gold-glow);
    margin-bottom: 12px;
}
.download-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196,162,101,.4);
}
.download-secondary {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--black3);
    border: 1px solid var(--brd);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    color: var(--txt2);
    transition: all .2s;
}
.download-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-bg);
}

/* === RESULT ACTIONS === */
.result-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

/* === WHATSAPP === */
.wa-text {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.wa-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.wa-btn svg { flex-shrink: 0; }

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 24px;
    font-size: 11px;
    color: var(--txt2);
    letter-spacing: .5px;
    border-top: 1px solid var(--brd2);
    margin-top: 8px;
}
.footer a { color: var(--gold-d); text-decoration: none; }
.footer a:hover { color: var(--gold); }

/* === WHATSAPP FLOATING BUTTON === */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s;
    animation: waFloat 0.6s ease 1.5s both;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0,0,0,0.25);
}
.wa-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: waPulse 2s ease-in-out infinite 2.5s;
}
@keyframes waFloat {
    from { opacity: 0; transform: translateY(30px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
}

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--black4);
    border: 1px solid var(--brd);
    color: var(--gold-l);
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: all .4s ease;
    z-index: 999;
    white-space: nowrap;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* === PDF DOCUMENT TEMPLATE === */
#pdfDoc {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #1a1816;
}
.pdf-letterhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px 20px;
    background: linear-gradient(135deg, #1a1816 0%, #2c2a27 100%);
    color: #F5F0EA;
}
.pdf-lh-left { display: flex; align-items: center; gap: 16px; }
.pdf-lh-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin: 0;
}
.pdf-lh-role {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b89a64;
    margin: 2px 0 0;
}
.pdf-lh-agency {
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(245,240,234,.5);
    margin: 1px 0 0;
}
.pdf-lh-right { text-align: right; }
.pdf-doc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b89a64;
    margin: 0 0 6px;
}
.pdf-meta {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 3px;
}
.pdf-meta-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245,240,234,.55);
    font-weight: 500;
}
.pdf-meta-value {
    font-size: 12px;
    font-weight: 600;
    color: #F5F0EA;
}
.pdf-gold-divider {
    height: 3px;
    background: linear-gradient(90deg, #b89a64, #d4c4a0, #b89a64);
}
.pdf-client-row {
    display: flex;
    gap: 32px;
    padding: 20px 48px;
    border-bottom: 1px solid #eee;
}
.pdf-field { display: flex; flex-direction: column; gap: 2px; }
.pdf-field-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666;
    font-weight: 500;
}
.pdf-field-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1816;
}
/* PDF sections */
.pdf-section {
    margin: 20px 48px 0;
    padding-bottom: 8px;
}
.pdf-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1816;
    padding: 8px 0;
    border-bottom: 2px solid #b89a64;
    margin: 0 0 8px;
}
.pdf-doc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    border-left: 3px solid transparent;
}
.pdf-doc-row:nth-child(even) { background: #faf9f6; }
.pdf-doc-row:hover { border-left-color: #b89a64; }
.pdf-doc-header {
    display: flex;
    align-items: center;
    width: 100%;
}
.pdf-doc-icon { font-size: 18px; margin-right: 12px; flex-shrink: 0; }
.pdf-doc-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1816;
    flex: 1;
}
.pdf-doc-badge {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    background: #b89a64;
    padding: 3px 10px;
    border-radius: 10px;
    margin-left: 10px;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.pdf-doc-detail {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
}
.pdf-doc-tip {
    width: 100%;
    font-size: 11.5px;
    color: #555;
    padding-left: 30px;
    margin-top: 6px;
    line-height: 1.7;
}
/* PDF info box */
.pdf-info-box {
    margin: 20px 48px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f9f7f4, #f0ece5);
    border-radius: 8px;
    border-left: 4px solid #b89a64;
}
.pdf-info-box h4 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1a1816;
}
.pdf-info-box li {
    font-size: 11px;
    color: #555;
    line-height: 1.8;
}
/* PDF doc footer */
.pdf-doc-footer {
    padding: 24px 48px 32px;
    margin-top: 20px;
    background: linear-gradient(135deg, #1a1816 0%, #2c2a27 100%);
    color: rgba(245,240,234,.6);
    text-align: center;
    border-top: 2px solid #b89a64;
}
.pdf-footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #b89a64;
    margin: 0 0 4px;
}
.pdf-footer-address {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(245,240,234,.6);
    margin: 0;
}
.pdf-footer-web {
    font-size: 10px;
    letter-spacing: 0.05em;
    color: rgba(245,240,234,.5);
    margin: 3px 0 0;
}

/* === VEHICLE RESULT DISPLAY === */
.result-vehicle {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

#reqCount { color: var(--green); font-weight: 600; }
#optCount { color: var(--gold); font-weight: 600; }

/* === SAKURA CELEBRATION === */
.sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
    overflow: hidden;
}

.sakura-petal {
    position: absolute;
    top: -20px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 12px 0 12px 0;
    opacity: 0;
    animation: sakuraFall linear forwards;
    pointer-events: none;
}

.sakura-petal:nth-child(odd) {
    background: #c9a84c;
    border-radius: 0 12px 0 12px;
    width: 10px;
    height: 10px;
}

.sakura-petal:nth-child(3n) {
    background: #d4b478;
    width: 8px;
    height: 8px;
}

.sakura-petal:nth-child(5n) {
    background: #e8d5a8;
    width: 6px;
    height: 6px;
    border-radius: 6px 2px 6px 2px;
}

@keyframes sakuraFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(0deg) translateX(0);
    }
    8% {
        opacity: 0.85;
    }
    25% {
        transform: translateY(25vh) rotate(100deg) translateX(40px);
    }
    50% {
        transform: translateY(50vh) rotate(200deg) translateX(-30px);
    }
    75% {
        transform: translateY(75vh) rotate(300deg) translateX(35px);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(105vh) rotate(400deg) translateX(-15px);
    }
}

/* === PRINT === */
@media print {
    .topbar, .prog, .steps, .tb, .skip, .toast, .footer,
    .copies-banner, .info-card, .fiscal-card, #refSection { display: none !important; }
    body { background: white !important; color: #1a1a1a !important; }
    .card { border: none; box-shadow: none; background: white !important; }
    .phase { display: block !important; }
    #p1, #p2 { display: none !important; }
    .doc { break-inside: avoid; }
}
