* {
    box-sizing: border-box;
}

:root {
    --bg: #f4f7fb;
    --card: #ffffff;
    --text: #11324d;
    --muted: #6b7a8c;
    --primary: #153e75;
    --primary-2: #1d4f91;
    --accent: #f4c542;
    --accent-soft: #fff2bf;
    --line: #e6edf5;
    --shadow: 0 14px 40px rgba(17, 50, 77, 0.08);
    --radius: 24px;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
    color: var(--text);
}

body {
    min-height: 100vh;
}

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

img {
    max-width: 100%;
    display: block;
}

.app-shell {
    min-height: 100vh;
    padding-bottom: 96px;
}

.main-content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 16px 32px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 22px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--line);
    padding: 12px 18px;
}

.btn-danger {
    background: #d83b3b;
    color: #fff;
}

.btn-success {
    background: #2e9b57;
    color: #fff;
}

.empty-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    color: var(--muted);
    font-size: 20px;
}

.alert-box {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
}

.error-box {
    background: #fff2f2;
    color: #8a1f1f;
}

.success-box {
    background: #eefbf1;
    color: #1f6b35;
}

.mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(230, 237, 245, 0.96);
    box-shadow: 0 10px 34px rgba(17, 50, 77, 0.16);
    border-radius: 26px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    z-index: 99;
    backdrop-filter: blur(10px);
}

.mobile-nav-item {
    padding: 10px 6px;
    border-radius: 18px;
    color: var(--muted);
    text-align: center;
}

.mobile-nav-item.active {
    background: #eef5ff;
    color: var(--primary);
    font-weight: 800;
}

.mobile-nav-icon {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.mobile-nav-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* LOGIN SIMPLE CON PIN */
.login-simple-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.login-simple-card {
    width: 100%;
    max-width: 560px;
    background: linear-gradient(180deg, #153e75 0%, #1d4f91 100%);
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--shadow);
    color: #fff;
}

.login-simple-header {
    margin-bottom: 16px;
}

.login-simple-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
}

.login-simple-text {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.login-simple-form {
    margin-top: 10px;
}

.login-simple-label {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
}

.country-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.country-compact-option {
    display: block;
    cursor: pointer;
}

.country-compact-option input {
    display: none;
}

.country-compact-option span {
    min-height: 56px;
    border-radius: 16px;
    background: #f8fbff;
    border: 2px solid #dfe8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    transition: 0.2s ease;
    padding: 10px 12px;
}

.country-compact-option span b {
    font-size: 22px;
    line-height: 1;
}

.country-compact-option span small {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.country-compact-option input:checked + span {
    background: linear-gradient(135deg, #ffe27a 0%, #ffc107 100%);
    border-color: #ffb300;
    box-shadow: 0 8px 18px rgba(255, 193, 7, 0.28);
}

.login-simple-input {
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    background: #fff;
}

.login-simple-button {
    width: 100%;
    margin-top: 16px;
    min-height: 58px;
    border: none;
    border-radius: 18px;
    background: var(--accent);
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.login-error-box {
    margin-bottom: 14px;
}

.login-pin-info {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.login-forgot-link {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: #fff7d1;
    font-size: 16px;
    font-weight: 700;
}

/* CAMPOS / FORMULARIOS */
.simple-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.metric-box {
    background: #f8fbff;
    border-radius: 18px;
    padding: 14px;
    border: 1px solid #edf2f8;
}

.metric-label {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.field-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #dbe5ef;
    border-radius: 14px;
    font-size: 18px;
    background: #fff;
    color: var(--text);
}

.field-input-big {
    font-size: 24px;
    font-weight: 800;
}

.species-selector-wrap {
    margin-top: 20px;
}

.species-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.species-option {
    display: block;
    cursor: pointer;
}

.species-option input {
    display: none;
}

.species-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    padding: 16px;
    border-radius: 20px;
    background: #f8fbff;
    border: 2px solid #dfe8f2;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    transition: 0.2s ease;
}

.species-option input:checked + span {
    background: linear-gradient(135deg, #ffe27a 0%, #ffc107 100%);
    border-color: #ffb300;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    transform: scale(1.05);
}

.simple-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* DASHBOARD / LAYOUT V4 */
.dash4-shell {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.dash4-sidebar {
    background: #fff;
    border-right: 1px solid #edf2f7;
    padding: 18px;
}

.dash4-sidebar-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.dash4-side-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
}

.dash4-side-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.dash4-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash4-nav-item {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
}

.dash4-nav-item.active {
    background: #0f4a92;
    color: #fff;
}

.dash4-side-banner {
    margin-top: 22px;
    background: #eef7ff;
    border: 1px solid #dce8f6;
    border-radius: 18px;
    padding: 14px;
    text-align: center;
}

.dash4-side-banner-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 10px;
    object-fit: cover;
}

.dash4-side-banner-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.dash4-side-banner-btn {
    width: 100%;
}

.dash4-main {
    padding: 22px;
    background: #fff;
}

.dash4-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.dash4-title {
    margin: 0;
    font-size: 46px;
    line-height: 1.05;
    color: var(--primary);
    font-weight: 800;
}

.dash4-subtitle {
    margin: 8px 0 0;
    font-size: 18px;
    color: var(--muted);
}

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

.dash4-sun {
    font-size: 48px;
    line-height: 1;
}

.dash4-new-btn {
    background: #0f4a92;
    color: #fff;
    min-height: 56px;
}

.dash4-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.dash4-stat {
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    border: 1px solid #edf2f7;
}

.dash4-stat-icon {
    font-size: 30px;
    margin-bottom: 6px;
}

.dash4-stat-number {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
}

.dash4-stat-label {
    margin-top: 8px;
    font-size: 16px;
    color: #4c5d70;
    font-weight: 700;
}

.stat-blue {
    background: #eef6ff;
}

.stat-yellow {
    background: #fff8df;
}

.stat-green {
    background: #eef9eb;
}

.stat-purple {
    background: #f4edff;
}

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

.dash4-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 18px;
}

.dash4-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.dash4-card-head h2 {
    margin: 0;
    font-size: 32px;
    color: var(--primary);
}

.dash4-table-card {
    overflow: hidden;
}

.dash4-table-wrap {
    overflow-x: auto;
}

.dash4-table {
    width: auto;
    border-collapse: collapse;
    min-width: 0;
}

.dash4-table th,
.dash4-table td {
    text-align: left;
    padding: 14px 12px;
    border-top: 1px solid #edf2f7;
    font-size: 15px;
    vertical-align: middle;
}

.dash4-table th {
    color: var(--muted);
    font-weight: 700;
    background: #fbfcfe;
}

.dash4-table td strong {
    color: var(--primary);
}

.dash4-inline-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash4-inline-progress-bar {
    width: 120px;
    height: 10px;
    background: #e8eef5;
    border-radius: 999px;
    overflow: hidden;
}

.dash4-inline-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8ad05b 0%, #4caf50 100%);
    border-radius: 999px;
}

.dash4-mini-btn {
    background: #0f4a92;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
}

.dash4-mini-btn-outline {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--line);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
}

.dash4-bottom-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.dash4-upcoming-list {
    display: grid;
    gap: 12px;
}

.dash4-upcoming-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #edf2f7;
}

.dash4-upcoming-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.dash4-upcoming-item div div {
    color: var(--muted);
    font-size: 14px;
}

.dash4-upcoming-item span {
    background: #edf7df;
    color: #4a7b22;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.dash4-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dash4-results-grid div {
    background: #f8fbff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
}

.dash4-results-grid strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: var(--primary);
}

.dash4-results-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.dash4-best-result {
    margin-top: 14px;
    background: #fff8df;
    border: 1px solid #f1e3a6;
    border-radius: 14px;
    padding: 12px 14px;
    color: #6a5b14;
    font-size: 15px;
    font-weight: 700;
}

.dash4-muted {
    color: var(--muted);
    margin: 0;
}

/* RESULTADOS */
.dash4-results-table {
    table-layout: auto;
    width: auto;
}

.dash4-date-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 110px;
}

.dash4-date-stack span {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

.dash4-date-stack strong {
    color: var(--primary);
}

.dash4-status-finished {
    display: inline-block;
    background: #eef9eb;
    color: #2f7d32;
    border: 1px solid #cfe8cf;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.dash4-status-open {
    display: inline-block;
    background: #fff8df;
    color: #8a6a00;
    border: 1px solid #f1e3a6;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.dash4-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    font-size: 16px;
    line-height: 1;
    margin: auto;
}

.dash4-status-icon-finished {
    background: #eef9eb;
    border: 1px solid #cfe8cf;
}

.dash4-status-icon-open {
    background: #fff8df;
    border: 1px solid #f1e3a6;
}

.dash4-action-done {
    color: var(--muted);
    font-weight: 700;
}

/* Columnas compactas resultados */
.dash4-results-table th:nth-child(3),
.dash4-results-table td:nth-child(3) {
    width: 70px;
    text-align: center;
}

.dash4-results-table th:nth-child(4),
.dash4-results-table td:nth-child(4),
.dash4-results-table th:nth-child(5),
.dash4-results-table td:nth-child(5) {
    width: 60px;
    text-align: center;
    padding-left: 8px;
    padding-right: 8px;
}

.dash4-results-table td:nth-child(3),
.dash4-results-table td:nth-child(4),
.dash4-results-table td:nth-child(5) {
    font-weight: 700;
    text-align: center;
}

.dash4-results-table td {
    padding: 10px 8px;
}

.dash4-results-table th.col-estado,
.dash4-results-table td:nth-child(7) {
    width: 50px;
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .dash4-shell {
        grid-template-columns: 1fr;
    }

    .dash4-sidebar {
        display: none;
    }
}

@media (max-width: 900px) {
    .simple-form-grid {
        grid-template-columns: 1fr;
    }

    .species-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 14px 12px 20px;
    }

    .mobile-bottom-nav {
        display: grid;
    }

    .dash4-main {
        padding: 16px;
    }

    .dash4-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .dash4-title {
        font-size: 34px;
    }

    .dash4-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .dash4-new-btn {
        flex: 1;
        justify-content: center;
    }

    .dash4-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash4-bottom-grid {
        grid-template-columns: 1fr;
    }

    .dash4-results-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .btn {
        width: 100%;
    }

    .dash4-title {
        font-size: 30px;
    }

    .dash4-subtitle {
        font-size: 16px;
    }

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

    .dash4-sun {
        align-self: flex-end;
    }

    .dash4-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dash4-stat-number {
        font-size: 34px;
    }

    .dash4-results-grid {
        grid-template-columns: 1fr;
    }

    .species-selector {
        grid-template-columns: 1fr;
    }

    .species-option span {
        min-height: 74px;
        font-size: 20px;
    }

    .simple-action-row {
        flex-direction: column;
    }
}

/* GRUPOS DEL MENU LATERAL */
.dash4-nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash4-nav-separator {
    height: 1px;
    background: #e9eef5;
    margin: 16px 4px;
    border-radius: 999px;
}

.dash4-nav-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7f8da0;
    padding: 0 8px;
    margin-bottom: 2px;
}

.dash4-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dash4-nav-item:hover {
    background: #f4f8fd;
}

.dash4-nav-item.active {
    background: #0f4a92;
    color: #fff;
}

.dash4-nav-item-admin {
    background: #fbfcfe;
}

.dash4-nav-item-admin:hover {
    background: #f1f6fc;
}

.dash4-muted-badge {
    display: inline-block;
    background: #f4f7fb;
    color: #6b7a8c;
    border: 1px solid #dfe7f1;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.dash4-desktop-only {
    display: block;
}

.dash4-mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .dash4-desktop-only {
        display: none !important;
    }

    .dash4-mobile-only {
        display: block !important;
    }
}

    .dash4-mobile-only {
        display: block;
    }

    .dash4-mobile-section-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary);
        margin: 4px 0 12px;
    }

    .dash4-mobile-list {
        display: grid;
        gap: 12px;
    }

    .dash4-mobile-item {
        display: grid;
        grid-template-columns: 64px 1fr auto;
        gap: 12px;
        align-items: center;
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 18px;
        padding: 12px;
        box-shadow: 0 6px 16px rgba(17, 50, 77, 0.05);
    }

    .dash4-mobile-item-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: #fff7db;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        line-height: 1;
    }

    .dash4-mobile-item-center {
        min-width: 0;
    }

    .dash4-mobile-item-title {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.15;
        margin-bottom: 4px;
    }

    .dash4-mobile-item-sub {
        font-size: 14px;
        color: #4c5d70;
        margin-top: 2px;
    }

    .dash4-mobile-item-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .dash4-mobile-pill {
        background: #eef9eb;
        color: #4a7b22;
        font-size: 12px;
        font-weight: 800;
        padding: 7px 10px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .dash4-mobile-arrow {
        font-size: 28px;
        color: var(--primary);
        line-height: 1;
    }

    .dash4-mobile-summary-card {
        margin-top: 16px;
        background: #dff0ff;
        border: 1px solid #cfe3f4;
        border-radius: 18px;
        padding: 14px;
    }

    .dash4-mobile-summary-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        text-align: center;
    }

    .dash4-mobile-summary-grid strong {
        display: block;
        font-size: 28px;
        line-height: 1;
        color: var(--primary);
    }

    .dash4-mobile-summary-grid span {
        display: block;
        margin-top: 6px;
        font-size: 12px;
        color: #4c5d70;
        font-weight: 700;
    }
}

@media (max-width: 768px) {

    /* Header solo en móvil */
    .dash4-header-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* El bloque izquierdo (texto) */
    .dash4-header-row > div:first-child {
        max-width: 75%;
    }

    /* El bloque derecho (sol + botón) */
    .dash4-header-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    /* SOL arriba */
    .dash4-sun {
        font-size: 40px;
        margin-bottom: 8px;
    }

    /* Botón abajo */
    .dash4-new-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {

    .dash4-mobile-banner {
        display: block;
        margin: 16px 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .dash4-mobile-banner img {
        width: 100%;
        display: block;
    }
}

.dash4-mobile-only {
    display: none;
}

.dash4-desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .dash4-desktop-only {
        display: none !important;
    }

    .dash4-mobile-only {
        display: block !important;
    }

    .dash4-mobile-header {
        margin-bottom: 14px;
    }

    .dash4-mobile-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

.dash4-mobile-logo img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
}

    .dash4-mobile-hello-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
    }

    .dash4-mobile-title {
        margin: 0;
        font-size: 32px;
        line-height: 1.05;
        color: var(--primary);
        font-weight: 800;
    }

    .dash4-mobile-subtitle {
        margin: 8px 0 0;
        font-size: 16px;
        color: var(--muted);
    }

    .dash4-mobile-sun {
        font-size: 42px;
        line-height: 1;
        margin-top: 2px;
    }

    .dash4-mobile-new-btn {
        width: 100%;
        margin-top: 14px;
    }
}

@media (max-width: 768px) {
    .dash4-mobile-header {
        margin-bottom: 14px;
    }

    .dash4-mobile-logo {
        display: flex;
        justify-content: flex-start;
        padding-bottom: 12px;
        margin-bottom: 14px;
        border-bottom: 1px solid #e6edf5;
    }

    .dash4-mobile-logo img {
        height: 64px;
        width: auto;
        object-fit: contain;
    }

    .dash4-mobile-hello-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
    }

    .dash4-mobile-hello-text {
        flex: 1;
        min-width: 0;
    }

    .dash4-mobile-title {
        margin: 0;
        font-size: 32px;
        line-height: 1.05;
        color: var(--primary);
        font-weight: 800;
    }

    .dash4-mobile-subtitle {
        margin: 10px 0 0;
        font-size: 17px;
        line-height: 1.4;
        color: var(--muted);
    }

    .dash4-mobile-sun {
        font-size: 56px;
        line-height: 1;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .dash4-mobile-new-btn {
        width: 100%;
        margin-top: 16px;
        min-height: 58px;
        font-size: 18px;
        border-radius: 18px;
    }
}

@media (max-width: 520px) {
    .dash4-mobile-logo img {
        height: 56px;
    }

    .dash4-mobile-title {
        font-size: 29px;
    }

    .dash4-mobile-subtitle {
        font-size: 16px;
    }

    .dash4-mobile-sun {
        font-size: 50px;
    }
}

.dash4-mobile-banner-incu {
    display: block;
    margin-top: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dash4-mobile-banner-incu img {
    width: 100%;
    display: block;
}