:root {
    --navy: #061b38;
    --navy2: #0b2f5b;
    --blue: #0b63f6;
    --sky: #eaf3ff;
    --text: #0f1f3a;
    --muted: #64748b;
    --line: #e5eaf2;
    --bg: #f6f9fd;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;
    --purple: #7c3aed;
    --teal: #14b8a6
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: var(--bg)
}

a {
    text-decoration: none;
    color: inherit
}

.top {
    height: 78px;
    background: white;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 42px;
    position: sticky;
    top: 0;
    z-index: 20
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 900
}

.brand:before {
    content: '◈';
    width: 42px;
    height: 42px;
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #f8fbff
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700
}

.top nav a {
    margin-left: 28px;
    font-weight: 700;
    font-size: 14px;
    color: #0b1532
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    border: 0;
    border-radius: 10px;
    padding: 13px 19px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px #0b63f633
}

.btn.light {
    background: white;
    color: var(--blue);
    border: 1px solid #b8d2ff;
    box-shadow: none
}

.btn.block {
    display: flex;
    width: 100%
}

.btn.ok {
    background: var(--green)
}

.btn.warn {
    background: var(--orange)
}

.btn.danger {
    background: var(--red)
}

.btn.ghost {
    background: white;
    color: #102033;
    border: 1px solid var(--line);
    box-shadow: none
}

.footer {
    background: white;
    border-top: 1px solid var(--line);
    padding: 26px 48px;
    color: #334155;
    display: flex;
    justify-content: space-around;
    gap: 30px
}

.container {
    max-width: 1220px;
    margin: 28px auto;
    padding: 0 20px
}

.narrow {
    max-width: 920px
}

.center {
    text-align: center
}

.hero {
    max-width: 1220px;
    margin: 24px auto 0;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(105deg, rgba(3, 17, 42, .55), rgba(6, 37, 78, .35)), radial-gradient(circle at 75% 40%,rgba(37, 99, 235, .15), transparent 4%);
    min-height: 420px;
    color: white;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    padding: 64px;
    box-shadow: 0 18px 44px #0f172a22
}

.hero h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 18px;
    max-width: 610px
}

.hero p {
    font-size: 18px;
    line-height: 1.55;
    color: #dbeafe;
    max-width: 560px
}

.hero-art {
    height: 280px;
    border-radius: 24px;
    background: linear-gradient(145deg, #0b63f633, #ffffff12);
    border: 1px solid #ffffff22;
    display: grid;
    place-items: center;
    font-size: 92px;
    box-shadow: inset 0 0 60px #60a5fa22
}

.floating-stats {
    max-width: 1120px;
    margin: -42px auto 34px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 40px #0f172a12;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px
}

.mini-stat {
    display: flex;
    gap: 14px;
    align-items: center;
    border-right: 1px solid var(--line);
    padding: 8px 22px
}

.mini-stat:last-child {
    border-right: 0
}

.round {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900;
    background: var(--blue);
    font-size: 24px
}

.round.green {
    background: var(--green)
}

.round.orange {
    background: var(--orange)
}

.round.purple {
    background: var(--purple)
}

.mini-stat b {
    font-size: 26px
}

.mini-stat span {
    display: block;
    color: var(--muted);
    font-size: 13px
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin: 36px 0 22px
}

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

.card,
.panel,
.stat,
.notice {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 26px #0f172a0d
}

.software-card {
    transition: .2s
}

.software-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px #0f172a15
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #eaf3ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 26px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #166534;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: capitalize
}

.badge.pendiente,
.badge.en\ evaluación,
.badge.observado {
    background: #fef3c7;
    color: #92400e
}

.badge.aprobado,
.badge.validado,
.badge.activo {
    background: #dcfce7;
    color: #166534
}

.badge.rechazado,
.badge.anulado {
    background: #fee2e2;
    color: #991b1b
}

.badge.en\ subsanación {
    background: #dbeafe;
    color: #1d4ed8
}

.steps {
    max-width: 1220px;
    margin: 28px auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--line)
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.step-grid div {
    text-align: center;
    position: relative;
    padding-top: 58px;
    font-weight: 800;
    font-size: 13px;
    color: #263953
}

.step-grid div:before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: grid;
    place-items: center
}

.public-shell {
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: calc(100vh - 78px)
}

.public-aside {
    background: linear-gradient(160deg, #03142f, #082b61);
    color: white;
    padding: 42px;
    position: relative;
    overflow: hidden
}

.public-aside:after {
    content: '©';
    position: absolute;
    right: 18px;
    bottom: 40px;
    font-size: 220px;
    color: #ffffff08
}

.public-aside h1 {
    font-size: 36px;
    line-height: 1.1
}

.public-aside h1 span {
    color: #38a3ff
}

.benefit {
    display: flex;
    gap: 18px;
    margin: 28px 0
}

.benefit .bicon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0b63f6;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex: 0 0 auto
}

.public-main {
    padding: 34px
}

.wizard {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 35px #0f172a0c
}

.progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 20px 0 28px
}

.progress div {
    text-align: center;
    position: relative;
    font-weight: 800;
    font-size: 13px;
    color: #334155
}

.progress div:before {
    content: attr(data-n);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border: 2px solid #cbd5e1;
    background: white;
    color: #3b4a66
}

.progress div.done:before {
    content: '✓';
    background: var(--green);
    border-color: var(--green);
    color: white
}

.progress div.active:before {
    background: var(--blue);
    border-color: var(--blue);
    color: white
}

.form label {
    font-weight: 800;
    font-size: 13px
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d6e0ec;
    border-radius: 10px;
    margin: 7px 0 14px;
    background: white;
    color: #172033
}

.form textarea {
    min-height: 115px
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.hint {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700
}

.success {
    width: 92px;
    height: 92px;
    margin: 20px auto;
    border-radius: 50%;
    background: radial-gradient(circle, #10b981, #059669);
    color: white;
    font-size: 58px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 22px #d1fae5
}

.status-shell {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px
}

.account-side {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    height: max-content
}

.account-side a {
    display: block;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    color: #263953
}

.account-side a.active {
    background: #eaf3ff;
    color: var(--blue)
}

.status-hero {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 26px #0f172a0d
}

.track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    margin-top: 28px
}

.track-step {
    text-align: center;
    position: relative
}

.track-step:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: #cbd5e1
}

.track-step:first-child:before {
    display: none
}

.track-step.done:before {
    background: var(--green)
}

.track-step .dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    background: white;
    border: 2px solid #cbd5e1;
    font-weight: 900
}

.track-step.done .dot {
    background: var(--green);
    border-color: var(--green);
    color: white
}

.track-step.active .dot {
    background: var(--orange);
    border-color: var(--orange);
    color: white
}

.timeline {
    border-left: 3px solid #dbeafe;
    margin-left: 16px;
    padding-left: 22px
}

.timeline-item {
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    margin: 14px 0
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -33px;
    top: 20px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue)
}

.admin-body {
    display: flex;
    background: #f6f9fd
}

.sidebar {
    width: 250px;
    background: linear-gradient(180deg, #071b35, #0b294d);
    color: white;
    min-height: 100vh;
    padding: 24px 16px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0
}

.side-logo {
    font-size: 22px;
    font-weight: 900;
    margin: 4px 10px 24px
}

.side-user {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 10px;
    border-top: 1px solid #ffffff14;
    border-bottom: 1px solid #ffffff14;
    margin-bottom: 18px
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    display: grid;
    place-items: center;
    font-weight: 900
}

.sidebar small {
    color: #9fb3cc
}

.side-title {
    font-size: 11px;
    color: #9fb3cc;
    margin: 18px 12px 8px
}

.sidebar a {
    display: flex;
    gap: 12px;
    color: #e5edf7;
    text-decoration: none;
    padding: 13px 14px;
    border-radius: 10px;
    margin: 4px 0;
    font-weight: 800
}

.sidebar a:hover,
.sidebar a.active {
    background: #0b63f6;
    color: white
}

.admin-main {
    margin-left: 250px;
    width: calc(100% - 250px);
    padding: 0 26px 30px
}

.admin-top {
    height: 76px;
    background: white;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    padding: 18px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    box-shadow: 0 8px 22px #0f172a08
}

.page-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px
}

.page-head h1 {
    margin: 0;
    font-size: 29px
}

.page-head p {
    margin: 8px 0 0;
    color: var(--muted)
}

.stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px
}

.stat {
    display: flex;
    gap: 16px;
    align-items: center
}

.stat b {
    font-size: 26px
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 13px
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px
}

.filters {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px
}

.filters input,
.filters select {
    padding: 13px;
    border: 1px solid #d6e0ec;
    border-radius: 10px;
    background: white
}

.filters input {
    flex: 1
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white
}

th,
td {
    text-align: left;
    border-bottom: 1px solid var(--line);
    padding: 14px 12px;
    font-size: 14px
}

th {
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    text-transform: uppercase
}

tr:hover td {
    background: #fbfdff
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.actions form {
    display: flex;
    gap: 8px
}

.side-detail h3 {
    margin-top: 0
}

.detail-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    color: #334155
}

.chart-placeholder {
    height: 245px;
    border-radius: 14px;
    background: linear-gradient(180deg, #eff6ff, #fff);
    border: 1px dashed #cbd5e1;
    display: grid;
    place-items: center;
    color: #64748b;
    font-weight: 800
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 18px
}

.pagination span {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    background: white
}

.pagination .active {
    background: var(--blue);
    color: white
}

@media(max-width:980px) {

    .hero,
    .public-shell,
    .status-shell,
    .admin-grid,
    .grid2 {
        grid-template-columns: 1fr
    }

    .floating-stats,
    .cards,
    .stats {
        grid-template-columns: 1fr 1fr
    }

    .sidebar {
        position: relative;
        width: 100%;
        min-height: auto
    }

    .admin-body {
        display: block
    }

    .admin-main {
        margin-left: 0;
        width: 100%
    }

    .public-aside {
        display: none
    }

    .step-grid,
    .progress,
    .track {
        grid-template-columns: 1fr
    }

    .footer,
    .top {
        display: block;
        height: auto
    }

    .top nav a {
        display: inline-block;
        margin: 8px 14px 0 0
    }
}

@media(max-width:640px) {

    .floating-stats,
    .cards,
    .stats {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 36px 24px
    }

    .hero h1 {
        font-size: 34px
    }
}

/* Ajuste visual v1.1: tipografía más profesional y limpia */
html,
body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body,
input,
select,
textarea,
button,
table,
th,
td {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-head h1,
.section-title {
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.software-page h1,
.software-page h3 {
    color: #0f172a !important;
}

.page-head h1 {
    font-size: 28px;
}

.page-head p,
.stat span,
.mini-stat span,
.sidebar small {
    font-weight: 400;
}

.side-logo {
    font-weight: 800 !important;
    letter-spacing: -0.01em;
}

.sidebar a {
    font-weight: 600 !important;
    font-size: 14px;
}

.side-title {
    font-weight: 600;
    letter-spacing: .03em;
}

.btn,
.badge,
.form label,
.account-side a,
.step-grid div,
.progress div {
    font-weight: 600 !important;
}

.stat b,
.mini-stat b {
    font-weight: 700 !important;
}

th {
    font-weight: 600 !important;
    letter-spacing: .02em;
}

td {
    font-weight: 400 !important;
}

.card,
.panel,
.stat,
.notice,
.admin-top,
.status-hero,
.wizard {
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06) !important;
}

.sidebar {
    background: linear-gradient(180deg, #061b38 0%, #092a50 100%) !important;
}

.nav-ico,
.top-ico {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1;
    background: rgba(255, 255, 255, .08);
    color: #dbeafe;
    flex: 0 0 22px;
    font-family: "Segoe UI Symbol", "Segoe UI", Arial, sans-serif !important;
}

.sidebar a.active .nav-ico,
.sidebar a:hover .nav-ico {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.admin-top .top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-top .top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-weight: 600;
}

.admin-top .mini-badge {
    background: #fee2e2;
    color: #991b1b;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 700;
}

.chart-placeholder {
    font-weight: 600 !important;
}

/* Login administrador SIGPI-SOFT */
.login-body {
    margin: 0;
    min-height: 100vh;
    background: #f4f7fb;
    font-family: Inter, 'Segoe UI', Arial, sans-serif;
    color: #0f1f3d;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 42% 58%;
}

.login-brand {
    padding: 56px 64px;
    background: linear-gradient(150deg, #061b3b, #082957 58%, #0b63f6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-brand:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    right: -130px;
    bottom: -110px;
}

.login-logo {
    position: absolute;
    top: 34px;
    left: 56px;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.1;
}

.login-logo span {
    display: block;
    font-size: 14px;
    color: #a9c7ff;
    letter-spacing: .8px;
    margin-top: 4px
}

.login-brand h1 {
    font-size: 42px;
    line-height: 1.12;
    margin: 0 0 18px;
    max-width: 600px;
    font-weight: 800;
    letter-spacing: -.03em
}

.login-brand p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    color: #dbeafe;
    margin: 0 0 36px
}

.login-benefits {
    display: grid;
    gap: 18px;
    max-width: 540px;
    z-index: 1
}

.login-benefits div {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 18px 20px;
    backdrop-filter: blur(8px)
}

.login-benefits b {
    display: block;
    font-size: 16px;
    margin-bottom: 6px
}

.login-benefits span {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.45
}

.login-card {
    width: min(480px, calc(100% - 48px));
    margin: auto;
    background: white;
    border: 1px solid #e5eaf3;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 24px 70px rgba(15, 31, 61, .12);
}

.login-back {
    display: inline-flex;
    margin-bottom: 28px;
    text-decoration: none;
    color: #0b63f6;
    font-weight: 700;
    font-size: 14px
}

.login-card h2 {
    font-size: 32px;
    margin: 0 0 8px;
    letter-spacing: -.03em
}

.muted {
    color: #64748b;
    margin: 0 0 26px;
    line-height: 1.5
}

.login-form {
    display: grid;
    gap: 12px
}

.login-form label {
    font-weight: 700;
    font-size: 14px;
    color: #253858;
    margin-top: 8px
}

.login-form input {
    height: 50px;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
    background: #fbfdff
}

.login-form input:focus {
    border-color: #0b63f6;
    box-shadow: 0 0 0 4px rgba(11, 99, 246, .10);
    background: #fff
}

.login-form button {
    margin-top: 12px;
    height: 52px;
    border: 0;
    border-radius: 14px;
    background: #0b63f6;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(11, 99, 246, .25)
}

.login-form button:hover {
    background: #084fc7
}

.alert {
    border-radius: 14px;
    padding: 13px 15px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca
}

.alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #bbf7d0
}

.login-demo {
    margin-top: 22px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    padding: 16px;
    color: #475569;
    line-height: 1.65;
    font-size: 14px
}

.login-demo b {
    color: #0f1f3d
}

.logout-link {
    margin-left: 14px;
    color: #ef4444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    background: #fff1f2;
    padding: 8px 12px;
    border-radius: 999px
}

.logout-link:hover {
    background: #ffe4e6
}

.admin-alert.success {
    margin: 20px 28px 0;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #047857;
    border-radius: 14px;
    padding: 13px 16px;
    font-weight: 700
}

@media(max-width:900px) {
    .login-shell {
        grid-template-columns: 1fr
    }

    .login-brand {
        display: none
    }

    .login-card {
        margin: 36px auto
    }
}

.public-top {
    max-width: none;
    width: 100%;
    margin: 0;
    height: 64px;
    background: #06203f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 44px;
    border-radius: 6px 6px 0 0;
}

.public-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.public-brand b,
.footer-brand b {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.public-brand small,
.footer-brand small {
    display: block;
    color: #cbd5e1;
    font-size: 12px;
    margin-top: 4px;
}

.brand-shield {
    width: 34px;
    height: 34px;
    background: #f8fafc;
    color: #06203f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand-shield.small {
    width: 30px;
    height: 30px;
    font-size: 15px;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.public-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.login-btn {
    background: #0b63f6;
    padding: 11px 18px;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(11, 99, 246, .35);
}

.public-hero {
    max-width: 100%;
    margin: 0 auto;
    min-height: 310px;
    background:
        linear-gradient(90deg, rgba(5, 22, 43, .88), rgba(5, 22, 43, .45)),
        url('/assets/img/hero-software.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-overlay {
    padding: 52px 68px 78px;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.12;
    margin: 0 0 16px;
    font-weight: 800;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.45;
    margin: 0;
    color: #f1f5f9;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.btn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 6px;
}

.btn.light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .75);
    color: #fff;
}

.floating-stats {
    max-width: 1090px;
    margin: -43px auto 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .16);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 26px;
    gap: 18px;
    position: relative;
    z-index: 3;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #e5e7eb;
}

.mini-stat:last-child {
    border-right: 0;
}

.mini-stat b {
    font-size: 24px;
    color: #0f172a;
    line-height: 1;
}

.mini-stat span {
    display: block;
    font-size: 13px;
    color: #0f172a;
    font-weight: 700;
    margin-top: 4px;
}

.mini-stat small {
    display: block;
    color: #64748b;
    font-size: 11px;
    margin-top: 3px;
}

.round {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0b63f6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.round.green {
    background: #10b981;
}

.round.orange {
    background: #f97316;
}

.round.purple {
    background: #7c3aed;
}

.public-section {
    padding-top: 12px;
}

.section-title {
    text-align: center;
    font-size: 23px;
    margin: 0 0 24px;
    color: #0f172a;
}

.cards.action-cards {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.action-cards .card {
    min-height: 92px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.action-cards .icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    background: #dbeafe;
    color: #0b63f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.action-cards h3 {
    font-size: 15px;
    margin: 0 0 6px;
}

.action-cards p {
    font-size: 12px;
    margin: 0;
    color: #64748b;
    line-height: 1.35;
}

.steps-section {
    padding: 32px 0 46px;
}

.process-line {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    text-align: center;
}

.process-step {
    position: relative;
    font-size: 12px;
    color: #475569;
}

.process-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #0b63f6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.process-step b {
    display: block;
    color: #0f172a;
    font-size: 12px;
    margin-bottom: 5px;
}

.process-step span {
    display: block;
    font-size: 11px;
    color: #64748b;
    line-height: 1.35;
}

.public-footer {
    max-width: none;
    width: 100%;
    margin: 0;
    background: #04182f;
    color: #fff;
    padding: 36px 72px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 42px;
}

.public-footer h4 {
    margin: 0 0 12px;
    font-size: 15px;
}

.public-footer p,
.public-footer a {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #132f4f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copy {
    max-width: none;
    width: 100%;
    margin: 0;
    background: #04182f;
    color: #cbd5e1;
    text-align: center;
    padding: 0 0 18px;
    font-size: 12px;
}

@media (max-width: 900px) {

    .public-top,
    .public-nav {
        flex-direction: column;
        height: auto;
        gap: 12px;
        padding: 18px;
    }

    .floating-stats,
    .cards.action-cards,
    .process-line,
    .public-footer {
        grid-template-columns: 1fr;
    }

    .mini-stat {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 14px;
    }
}
.btn.light{
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #dbe4f0;
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
    transition: all .25s ease;
}

.btn.light:hover{
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,.15);
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 20px;
    border-radius:12px;
    font-size:.95rem;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
}