:root {
    --account-navy: #071f3a;
    --account-blue: #0879de;
    --account-cyan: #55b8ff;
    --account-ink: #17263a;
    --account-muted: #677b91;
    --account-line: #dce6f0;
    --account-soft: #f4f8fc;
    --account-white: #ffffff;
    --account-font: "Montserrat", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--account-soft);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--account-ink);
    font-family: var(--account-font);
    line-height: 1.5;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
    background: #ffffff;
}

.auth-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 40px clamp(34px, 4vw, 72px) 66px;
    color: #ffffff;
    background: #071f3a url("../images/neriatek-team-hero.webp") center / cover no-repeat;
}

.auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 18, 35, .54), rgba(3, 18, 35, .92));
}

.auth-visual--register {
    background-position: 62% center;
}

.auth-wordmark,
.auth-visual__content {
    position: relative;
    z-index: 1;
}

.auth-wordmark {
    position: relative;
    width: fit-content;
    display: inline-grid;
    gap: 5px;
    padding-bottom: 10px;
}

.auth-wordmark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #55b8ff);
}

.auth-wordmark > span {
    color: #ffffff;
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
}

.auth-wordmark strong {
    color: #55b8ff;
    font-weight: 600;
}

.auth-wordmark small {
    color: #a9c0d6;
    font-size: 8px;
    font-weight: 500;
    text-align: right;
}

.auth-visual__content {
    max-width: 570px;
}

.auth-visual__content > span,
.auth-heading > span,
.dashboard-title > div > span,
.dashboard-section__heading > div > span {
    display: block;
    margin-bottom: 12px;
    color: var(--account-cyan);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.auth-visual h1 {
    margin: 0;
    font-size: clamp(36px, 4.3vw, 60px);
    font-weight: 500;
    line-height: 1.08;
}

.auth-visual__content > p {
    max-width: 530px;
    margin: 22px 0 0;
    color: rgba(233, 243, 252, .78);
    font-size: 14px;
    line-height: 1.75;
}

.auth-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 30px;
}

.auth-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7e7f6;
    font-size: 10px;
    font-weight: 500;
}

.auth-points span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #20b7a5;
    border-radius: 50%;
}

.auth-panel {
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 48px clamp(34px, 6vw, 100px);
    background: #ffffff;
}

.auth-form-wrap {
    width: min(100%, 460px);
}

.auth-form-wrap--register {
    width: min(100%, 560px);
}

.auth-back {
    display: inline-flex;
    margin-bottom: 52px;
    color: #6e8094;
    font-size: 11px;
    font-weight: 500;
}

.auth-back:hover,
.auth-back:focus-visible {
    color: var(--account-blue);
    outline: none;
}

.auth-heading {
    margin-bottom: 30px;
}

.auth-heading h2 {
    margin: 0;
    color: #102a49;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.auth-heading p {
    margin: 10px 0 0;
    color: var(--account-muted);
    font-size: 12px;
}

.form-notice {
    display: grid;
    gap: 5px;
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid #c9dceb;
    border-radius: 6px;
    font-size: 11px;
    line-height: 1.5;
}

.form-notice--error {
    color: #8d2f35;
    background: #fff4f4;
    border-color: #efc8ca;
}

.form-notice--success {
    color: #176a5d;
    background: #effaf7;
    border-color: #bee2da;
}

.form-notice--warning {
    color: #72551c;
    background: #fff9e9;
    border-color: #ead9aa;
}

.account-form {
    display: grid;
    gap: 18px;
}

.account-form label {
    display: grid;
    gap: 7px;
}

.account-form label > span {
    color: #3c5066;
    font-size: 10px;
    font-weight: 600;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] {
    width: 100%;
    height: 49px;
    padding: 0 13px;
    color: #172a40;
    background: #ffffff;
    border: 1px solid #cfdae5;
    border-radius: 5px;
    outline: none;
    font-size: 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.account-form input:focus {
    border-color: #69b6ef;
    box-shadow: 0 0 0 3px rgba(8, 121, 222, .1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.terms-check {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 9px !important;
    cursor: pointer;
}

.terms-check input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--account-blue);
}

.terms-check > span {
    color: #687b90 !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 1.5;
}

.account-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--account-blue);
    border-radius: 5px;
    box-shadow: 0 12px 26px rgba(8, 121, 222, .18);
    font-size: 12px;
    font-weight: 600;
    transition: background 160ms ease, transform 160ms ease;
}

.account-button:hover,
.account-button:focus-visible {
    background: #075fae;
    outline: none;
    transform: translateY(-1px);
}

.account-button span {
    font-size: 18px;
}

.auth-switch {
    margin: 24px 0 0;
    color: #738599;
    font-size: 11px;
    text-align: center;
}

.auth-switch a {
    color: var(--account-blue);
    font-weight: 600;
}

.auth-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #8797a8;
    font-size: 9px;
}

.auth-security img {
    width: 15px;
    height: 15px;
}

.dashboard-page {
    background: #eef3f8;
}

.dashboard-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 8px 28px;
    background: #ffffff;
    border-bottom: 1px solid var(--account-line);
}

.dashboard-logo img {
    width: 168px;
    height: 53px;
    object-fit: contain;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 11px;
}

.dashboard-user__avatar {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0879de;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-user > span:nth-child(2) {
    display: grid;
    gap: 2px;
}

.dashboard-user strong {
    color: #20354c;
    font-size: 10px;
    font-weight: 600;
}

.dashboard-user small {
    color: #7c8da0;
    font-size: 8px;
}

.dashboard-user > a {
    margin-left: 8px;
    padding-left: 18px;
    color: #65788e;
    border-left: 1px solid #dce5ee;
    font-size: 10px;
    font-weight: 500;
}

.dashboard-shell {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
}

.dashboard-sidebar {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    padding: 28px 18px 22px;
    background: #071f3a;
}

.dashboard-sidebar__label {
    margin: 0 12px 20px;
    color: #728aa3;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.dashboard-sidebar nav {
    display: grid;
    gap: 6px;
}

.dashboard-sidebar nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 12px;
    color: #afc1d3;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
}

.dashboard-sidebar nav a img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
    opacity: .72;
}

.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a:focus-visible,
.dashboard-sidebar nav a.is-active {
    color: #ffffff;
    background: rgba(63, 164, 246, .15);
    outline: none;
}

.dashboard-sidebar nav a.is-active {
    border-left: 3px solid #43b4ff;
    padding-left: 9px;
}

.dashboard-sidebar__site {
    margin-top: auto;
    padding: 18px 12px 0;
    color: #8198af;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 9px;
}

.dashboard-content {
    min-width: 0;
    padding: 42px clamp(24px, 4vw, 58px) 70px;
}

.dashboard-notice {
    margin-bottom: 24px;
    padding: 12px 15px;
    color: #176a5d;
    background: #e9f8f4;
    border: 1px solid #b9ddd4;
    border-radius: 6px;
    font-size: 10px;
}

.dashboard-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.dashboard-title h1 {
    margin: 0;
    color: #102a49;
    font-size: 30px;
    font-weight: 500;
}

.dashboard-title p {
    margin: 7px 0 0;
    color: #6e8196;
    font-size: 11px;
}

.dashboard-title > a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: #ffffff;
    background: #0879de;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
}

.account-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 42px;
}

.account-summary article {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #d8e3ee;
    border-radius: 7px;
}

.account-summary article > span {
    color: #74869a;
    font-size: 9px;
    font-weight: 500;
}

.account-summary strong {
    margin: 8px 0 10px;
    color: #16395d;
    font-size: 22px;
    font-weight: 500;
}

.account-summary .status-active {
    color: #168270;
}

.account-summary small {
    margin-top: auto;
    color: #7f90a2;
    font-size: 9px;
}

.dashboard-section {
    margin-top: 44px;
}

.dashboard-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
    align-items: end;
    gap: 36px;
    margin-bottom: 20px;
}

.dashboard-section__heading h2 {
    margin: 0;
    color: #123151;
    font-size: 22px;
    font-weight: 500;
}

.dashboard-section__heading > p {
    margin: 0;
    color: #718397;
    font-size: 10px;
    line-height: 1.65;
}

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

.dashboard-product-grid article {
    min-width: 0;
    min-height: 160px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-content: start;
    gap: 14px;
    padding: 19px;
    background: #ffffff;
    border: 1px solid #d7e2ed;
    border-radius: 7px;
}

.dashboard-product__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf6ff;
    border: 1px solid #cde3f7;
    border-radius: 6px;
}

.dashboard-product__icon img {
    width: 23px;
    height: 23px;
}

.dashboard-product-grid h3 {
    margin: 2px 0 5px;
    color: #173652;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-product-grid p {
    margin: 0;
    color: #718397;
    font-size: 9px;
    line-height: 1.55;
}

.coming-soon {
    grid-column: 1 / -1;
    align-self: end;
    width: fit-content;
    margin-top: 15px;
    padding: 5px 8px;
    color: #6d7f92;
    background: #f1f5f8;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
}

.service-placeholder {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 20px;
    background: #ffffff;
    border: 1px dashed #b9ccdc;
    border-radius: 7px;
}

.service-placeholder > img {
    width: 25px;
    height: 25px;
}

.service-placeholder strong {
    color: #284661;
    font-size: 11px;
    font-weight: 600;
}

.service-placeholder p {
    margin: 5px 0 0;
    color: #78899b;
    font-size: 9px;
}

@media (max-width: 1050px) {
    .auth-layout {
        grid-template-columns: minmax(350px, .8fr) minmax(480px, 1.2fr);
    }

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

@media (max-width: 820px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        min-height: 420px;
        padding-block: 28px 45px;
    }

    .auth-visual h1 {
        font-size: 38px;
    }

    .auth-panel {
        padding-block: 54px 64px;
    }

    .auth-back {
        margin-bottom: 35px;
    }

    .dashboard-header {
        position: static;
        padding-inline: 18px;
    }

    .dashboard-user > span:nth-child(2) {
        display: none;
    }

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

    .dashboard-sidebar {
        position: static;
        height: auto;
        padding: 12px 16px;
    }

    .dashboard-sidebar__label,
    .dashboard-sidebar__site {
        display: none;
    }

    .dashboard-sidebar nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        overflow-x: auto;
    }

    .dashboard-sidebar nav a {
        justify-content: center;
        min-width: 108px;
    }

    .account-summary {
        grid-template-columns: 1fr;
    }

    .dashboard-section__heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .auth-visual {
        min-height: 360px;
        padding-inline: 22px;
    }

    .auth-visual h1 {
        font-size: 31px;
    }

    .auth-visual__content > p {
        font-size: 12px;
    }

    .auth-points {
        display: none;
    }

    .auth-panel {
        padding: 40px 20px 54px;
    }

    .auth-heading h2 {
        font-size: 27px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-logo img {
        width: 138px;
        height: 44px;
    }

    .dashboard-user__avatar {
        width: 34px;
        height: 34px;
    }

    .dashboard-user > a {
        padding-left: 11px;
    }

    .dashboard-content {
        padding: 30px 16px 50px;
    }

    .dashboard-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-title h1 {
        font-size: 26px;
    }
}

/* Professional type scale for authentication screens. */
.auth-back { font-size: 13px; }
.auth-heading h2 { font-size: 36px; font-weight: 500; line-height: 1.18; }
.auth-heading p { max-width: 440px; color: #566c82; font-size: 14px; line-height: 1.65; }
.form-notice { font-size: 13px; }
.account-form label > span { color: #2e465d; font-size: 13px; font-weight: 500; }
.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] { height: 54px; padding-inline: 16px; font-size: 14px; }
.terms-check > span { color: #566d83 !important; font-size: 12px !important; line-height: 1.6; }
.account-button { min-height: 54px; padding-inline: 20px; font-size: 14px; font-weight: 600; }
.auth-switch { color: #5e7388; font-size: 13px; }
.auth-security { color: #687d91; font-size: 11px; }
.auth-visual__content > span { font-size: 12px; }
.auth-visual__content h1 { max-width: 660px; font-weight: 500; }
.auth-visual__content > p { color: rgba(239, 247, 253, .86); font-size: 15px; line-height: 1.75; }
.auth-points span { font-size: 12px; }

@media (max-width: 560px) {
    .auth-heading h2 { font-size: 30px; }
    .auth-heading p { font-size: 13px; }
    .account-form label > span { font-size: 12px; }
}

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

.product-access {
    grid-column: 1 / -1;
    align-self: end;
    width: fit-content;
    margin-top: 15px;
    color: #0874d1;
    font-size: 9px;
    font-weight: 600;
}

.coming-soon--assigned {
    color: #176a5d;
    background: #eaf8f4;
}

.assigned-service-list {
    display: grid;
    gap: 9px;
}

.assigned-service-list article {
    min-height: 78px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 14px;
    padding: 14px 17px;
    background: #ffffff;
    border: 1px solid #d7e2ed;
    border-radius: 6px;
}

.assigned-service-list article > img {
    width: 23px;
    height: 23px;
    margin-inline: auto;
}

.assigned-service-list strong {
    color: #24425f;
    font-size: 11px;
    font-weight: 600;
}

.assigned-service-list p {
    margin: 4px 0 0;
    color: #75879a;
    font-size: 9px;
}

.assigned-service-list article > span {
    padding: 5px 8px;
    color: #176a5d;
    background: #eaf8f4;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
}

.support-center {
    display: grid;
    grid-template-columns: minmax(320px, .88fr) minmax(380px, 1.12fr);
    gap: 14px;
    align-items: start;
}

.support-form,
.ticket-history {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #d7e2ed;
    border-radius: 7px;
}

.support-form {
    display: grid;
    gap: 15px;
}

.support-form h3,
.ticket-history h3 {
    margin: 0 0 4px;
    color: #183854;
    font-size: 13px;
    font-weight: 600;
}

.support-form label {
    display: grid;
    gap: 6px;
}

.support-form label > span {
    color: #52677d;
    font-size: 9px;
    font-weight: 600;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    color: #1d344d;
    background: #ffffff;
    border: 1px solid #cedae5;
    border-radius: 5px;
    outline: none;
    font-family: inherit;
    font-size: 10px;
}

.support-form input,
.support-form select {
    height: 43px;
    padding: 0 11px;
}

.support-form textarea {
    min-height: 120px;
    resize: vertical;
    padding: 11px;
    line-height: 1.55;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    border-color: #69b6ef;
    box-shadow: 0 0 0 3px rgba(8, 121, 222, .09);
}

.support-form > button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: #ffffff;
    background: #0879de;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
}

.support-form__errors {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    color: #8d2f35;
    background: #fff4f4;
    border: 1px solid #efc8ca;
    border-radius: 5px;
    font-size: 9px;
}

.ticket-history {
    min-height: 300px;
}

.ticket-list {
    margin-top: 16px;
    border-top: 1px solid #e1e9f1;
}

.ticket-list article {
    min-height: 68px;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid #e1e9f1;
}

.ticket-list__id {
    color: #0874d1;
    font-size: 8px;
    font-weight: 600;
}

.ticket-list article > div {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.ticket-list strong {
    overflow: hidden;
    color: #29445f;
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticket-list small {
    color: #8191a2;
    font-size: 8px;
}

.ticket-status {
    padding: 5px 8px;
    color: #5f7184;
    background: #f0f4f7;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
}

.ticket-status--open,
.ticket-status--in_progress {
    color: #126b91;
    background: #e8f5fb;
}

.ticket-status--resolved {
    color: #176a5d;
    background: #eaf8f4;
}

.ticket-empty {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.ticket-empty img {
    width: 25px;
    height: 25px;
    margin-bottom: 12px;
}

.ticket-empty strong {
    color: #496076;
    font-size: 10px;
    font-weight: 600;
}

.ticket-empty p {
    margin: 5px 0 0;
    color: #8191a2;
    font-size: 9px;
}

@media (max-width: 1050px) {
    .support-center {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .assigned-service-list article {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .assigned-service-list article > span {
        grid-column: 2;
        width: fit-content;
    }

    .ticket-list article {
        grid-template-columns: 1fr max-content;
        gap: 8px 12px;
        padding-block: 12px;
    }

    .ticket-list__id {
        grid-column: 1 / -1;
    }
}

/* Dashboard readability and professional application scale. */
.dashboard-header {
    min-height: 82px;
    padding-inline: 30px;
}

.dashboard-logo img {
    width: 185px;
    height: 58px;
}

.dashboard-user__avatar {
    width: 42px;
    height: 42px;
    font-size: 15px;
}

.dashboard-user strong { font-size: 13px; }
.dashboard-user small { color: #667b90; font-size: 11px; }
.dashboard-user > a { font-size: 12px; }

.dashboard-shell {
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: calc(100vh - 82px);
}

.dashboard-sidebar {
    top: 82px;
    height: calc(100vh - 82px);
    padding: 32px 20px 24px;
}

.dashboard-sidebar__label {
    margin-bottom: 22px;
    color: #90a6bb;
    font-size: 11px;
}

.dashboard-sidebar nav { gap: 8px; }
.dashboard-sidebar nav a {
    min-height: 50px;
    gap: 13px;
    padding-inline: 14px;
    color: #d0dce7;
    font-size: 13px;
}

.dashboard-sidebar nav a.is-active { padding-left: 11px; }
.dashboard-sidebar nav a img { width: 19px; height: 19px; opacity: .9; }
.dashboard-sidebar__site { font-size: 11px; }

.dashboard-content {
    padding: 48px clamp(28px, 4vw, 68px) 82px;
}

.dashboard-notice {
    padding: 15px 18px;
    font-size: 13px;
}

.dashboard-title { margin-bottom: 34px; }
.dashboard-title > div > span,
.dashboard-section__heading > div > span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
}

.dashboard-title h1 { font-size: 36px; line-height: 1.2; }
.dashboard-title p { margin-top: 9px; color: #566d83; font-size: 14px; }
.dashboard-title > a { min-height: 48px; padding-inline: 18px; font-size: 13px; }

.account-summary { gap: 18px; margin-bottom: 50px; }
.account-summary article { min-height: 155px; padding: 24px; }
.account-summary article > span { color: #596f84; font-size: 12px; }
.account-summary strong { margin: 10px 0 13px; font-size: 28px; }
.account-summary small { color: #65798c; font-size: 12px; }

.dashboard-section { margin-top: 52px; }
.dashboard-section__heading { margin-bottom: 25px; }
.dashboard-section__heading h2 { font-size: 28px; }
.dashboard-section__heading > p { color: #5c7287; font-size: 13px; }

.dashboard-product-grid { gap: 17px; }
.dashboard-product-grid article {
    min-height: 190px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 23px;
}

.dashboard-product__icon { width: 52px; height: 52px; }
.dashboard-product__icon img { width: 26px; height: 26px; }
.dashboard-product-grid h3 { margin-top: 3px; font-size: 16px; }
.dashboard-product-grid p { color: #5b7186; font-size: 12px; line-height: 1.65; }
.coming-soon,
.product-access { padding: 7px 10px; font-size: 11px; }

.service-placeholder { min-height: 132px; padding: 24px; }
.service-placeholder strong,
.assigned-service-list strong { font-size: 14px; }
.service-placeholder p,
.assigned-service-list p { color: #5f7488; font-size: 12px; }
.assigned-service-list article { min-height: 92px; padding: 17px 20px; }
.assigned-service-list article > span { font-size: 11px; }

.support-center { gap: 18px; }
.support-form,
.ticket-history { padding: 27px; }
.support-form h3,
.ticket-history h3 { font-size: 17px; }
.support-form label > span { color: #405a70; font-size: 12px; }
.support-form input,
.support-form select,
.support-form textarea { font-size: 14px; }
.support-form input,
.support-form select { height: 50px; padding-inline: 14px; }
.support-form textarea { min-height: 145px; padding: 14px; }
.support-form > button { min-height: 49px; padding-inline: 17px; font-size: 13px; }
.support-form__errors { font-size: 12px; }

.ticket-history { min-height: 340px; }
.ticket-list article { min-height: 78px; }
.ticket-list__id { font-size: 11px; }
.ticket-list strong { font-size: 13px; }
.ticket-list small { font-size: 11px; }
.ticket-status { font-size: 10px; }
.ticket-empty strong { font-size: 14px; }
.ticket-empty p { color: #687c8f; font-size: 12px; }

@media (max-width: 1180px) {
    .dashboard-shell { grid-template-columns: 230px minmax(0, 1fr); }
    .dashboard-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .dashboard-header { min-height: 72px; padding-inline: 16px; }
    .dashboard-user small { display: none; }
    .dashboard-shell { display: block; }
    .dashboard-sidebar { position: static; width: auto; height: auto; padding: 14px 16px; }
    .dashboard-sidebar__label,
    .dashboard-sidebar__site { display: none; }
    .dashboard-sidebar nav { grid-template-columns: repeat(4, 1fr); }
    .dashboard-sidebar nav a { justify-content: center; min-height: 44px; padding: 8px; font-size: 11px; }
    .dashboard-sidebar nav a.is-active { padding-left: 8px; border-left: 0; border-bottom: 3px solid #43b4ff; }
    .dashboard-content { padding: 28px 16px 60px; }
    .dashboard-title h1 { font-size: 30px; }
    .account-summary,
    .dashboard-product-grid { grid-template-columns: 1fr; }
    .dashboard-section__heading { grid-template-columns: 1fr; gap: 10px; }
}

.service-apply { grid-column: 1 / -1; align-self: end; margin-top: 14px; }
.service-apply button { min-height: 38px; padding: 0 13px; color: #0874d1; background: #edf6ff; border: 1px solid #c9e1f4; border-radius: 5px; font-size: 11px; font-weight: 600; }
.service-apply button:hover { color: #fff; background: #0879de; border-color: #0879de; }
.customer-invoices{display:grid;gap:10px}.customer-invoices article{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:24px;min-height:92px;padding:18px 22px;background:#fff;border:1px solid #d3e0ea}.customer-invoices article>div{display:grid;gap:3px}.customer-invoices span{color:#0879de;font-size:10px;font-weight:600}.customer-invoices strong{font-size:14px}.customer-invoices small{color:#657a8e;font-size:11px}.customer-invoices article>b{font-size:16px}.invoice-state{padding:6px 9px;border-radius:4px;background:#eef3f7;color:#526b80;font-size:10px;font-style:normal;font-weight:600}.invoice-state--paid{background:#e7f7f1;color:#15735d}.invoice-state--issued{background:#fff5da;color:#85621a}@media(max-width:650px){.customer-invoices article{grid-template-columns:1fr auto}.customer-invoices .invoice-state{grid-column:1/-1;width:max-content}}
@media(max-width:760px){.dashboard-sidebar nav{grid-template-columns:repeat(auto-fit,minmax(90px,1fr))}}
