:root {
    --mp-primary: #7b1111;
    --mp-secondary: #c0392b;
    --mp-accent: #ffb26b;
    --mp-dark: #161616;
    --mp-surface: #ffffff;
    --mp-muted: #667085;
    --mp-border: rgba(15, 23, 42, 0.08);
    --mp-light: #f7f8fa;
    --mp-deep: #190606;
    --shadow-soft: 0 18px 60px rgba(17, 24, 39, 0.08);
    --shadow-strong: 0 24px 80px rgba(10, 10, 10, 0.24);
    --system-topbar-height: 60px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--mp-dark);
    background: var(--mp-surface);
    overflow-x: hidden;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

main {
    display: block;
    width: 100%;
    overflow-x: clip;
}

section {
    padding: 96px 0;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1180px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
}

.brand {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--mp-primary);
}

.brand-with-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    flex: 0 0 36px;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 8px 18px rgba(123, 17, 17, 0.18));
}

.mp-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
    color: #26323f;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.mp-mobile-menu a:hover {
    background: rgba(192, 57, 43, 0.08);
    color: var(--mp-secondary);
}

.nav-link-active {
    color: var(--mp-secondary) !important;
    background: rgba(192, 57, 43, 0.08);
}

.btn-nav-cta,
.btn-primary,
.btn-secondary,
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.btn-nav-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    color: #fff;
    box-shadow: 0 10px 28px rgba(192, 57, 43, 0.28);
}

.btn-nav-cta {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.9rem;
}

.desktop-nav a.btn-nav-cta,
.desktop-nav a.btn-nav-cta:visited,
.desktop-nav a.btn-nav-cta:hover,
.desktop-nav a.btn-nav-cta:focus {
    color: #fff;
}

.btn-secondary,
.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost-light:hover {
    transform: translateY(-2px);
}

.mp-burger {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    color: var(--mp-dark);
    cursor: pointer;
}

.mp-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    z-index: 999;
    background: #fff;
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
}

.mp-mobile-menu.open {
    display: grid;
}

.mp-mobile-menu a {
    padding: 14px 16px;
    border-radius: 14px;
}

.hero {
    min-height: 100vh;
    padding-top: 132px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0505 0%, #3d0a0a 35%, #6e1111 70%, #c0392b 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 42px;
    align-items: center;
}

.hero-copy,
.hero-panel,
.dashboard-card,
.hero-kpis article {
    min-width: 0;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
    color: #fff;
}

.hero-copy h1 span {
    background: linear-gradient(90deg, #ff9861, #ffce72);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.blink {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #45c26b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.52; transform: scale(1.4); }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 52px;
}

.hero-kpis article {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-kpis strong {
    display: block;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.hero-kpis span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.hero-panel {
    display: flex;
    justify-content: flex-end;
}

.dashboard-card {
    width: min(100%, 430px);
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-strong);
    color: #fff;
    backdrop-filter: blur(12px);
}

.dashboard-top {
    display: flex;
    gap: 8px;
}

.dashboard-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
}

.dashboard-card h2 {
    margin: 20px 0 22px;
    font-size: 1.35rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.dashboard-stats div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-stats b {
    display: block;
    font-size: 1.35rem;
}

.dashboard-stats small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.74);
}

.dashboard-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.dashboard-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-card li:last-child {
    border-bottom: 0;
}

.section-light {
    background: #fff;
}

.section-muted {
    background: var(--mp-light);
}

.section-dark {
    background: linear-gradient(135deg, #180606, #6d1111);
    color: #fff;
}

.split-grid,
.contact-grid,
.footer-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: center;
}

.image-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-card img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 240px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.floating-badge strong {
    display: block;
    font-size: 2rem;
    color: var(--mp-primary);
}

.section-head,
.copy-block {
    max-width: 720px;
}

.section-tag {
    margin: 0 0 10px;
    color: var(--mp-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-head h2,
.copy-block h2,
.contact-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-text,
.copy-block p,
.contact-panel p {
    margin-top: 18px;
    color: var(--mp-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.center-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.light-text,
.section-dark .section-head h2,
.contact-panel,
.contact-panel p {
    color: #fff;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 28px;
}

.check-grid div,
.contact-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-grid .material-icons,
.contact-list .material-icons {
    color: var(--mp-secondary);
}

.card-grid {
    display: grid;
    gap: 22px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.product-card,
.pricing-card,
.contact-form {
    background: #fff;
    border: 1px solid var(--mp-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.feature-card {
    padding: 28px;
}

.feature-card .material-icons {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(123, 17, 17, 0.1), rgba(192, 57, 43, 0.14));
    color: var(--mp-secondary);
    font-size: 1.8rem;
}

.feature-card h3,
.product-card h3 {
    margin: 18px 0 10px;
    font-size: 1.06rem;
}

.feature-card p,
.product-card p,
.pricing-card li,
.footer-inner p {
    color: var(--mp-muted);
    line-height: 1.7;
}

.products-grid,
.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-media {
    min-height: 180px;
    padding: 18px;
    display: grid;
    place-items: center;
    position: relative;
}

.product-media-photo {
    overflow: hidden;
}

.product-media-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-media .material-icons {
    font-size: 4rem;
    color: rgba(22, 22, 22, 0.66);
}

.product-media.hp { background: linear-gradient(135deg, #edf4ff, #d9e9ff); }
.product-media.canon { background: linear-gradient(135deg, #fff0f0, #ffe0e0); }
.product-media.epson { background: linear-gradient(135deg, #edf9f0, #ddf4e2); }
.product-media.kyocera { background: linear-gradient(135deg, #f5efff, #eadfff); }
.product-media.brother-dark { background: linear-gradient(135deg, #eef2f7, #dde5ef); }
.product-media.brother-light { background: linear-gradient(135deg, #f2f4f7, #e9eef5); }
.product-media.canon-light { background: linear-gradient(135deg, #faf6f4, #f3e6e2); }
.product-media.epson-soft { background: linear-gradient(135deg, #eef8f0, #e0f1e4); }

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.product-body {
    padding: 22px;
}

.product-brand {
    margin: 0;
    color: var(--mp-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.product-tags span {
    padding: 4px 10px;
    border-radius: 999px;
    background: #f0f2f6;
    color: var(--mp-muted);
    font-size: 0.74rem;
}

.product-price {
    margin: 18px 0 0;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--mp-primary) !important;
}

.product-price small {
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-card {
    position: relative;
    padding: 32px;
}

.pricing-card.featured {
    border-color: rgba(255, 178, 107, 0.5);
    transform: scale(1.03);
}

.pricing-highlight {
    position: absolute;
    top: -12px;
    left: 24px;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    color: #fff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pricing-name,
.pricing-value {
    margin: 0;
    color: var(--mp-dark);
}

.pricing-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

.pricing-value {
    margin-top: 18px;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.pricing-value.small {
    font-size: 2rem;
    line-height: 1.2;
}

.pricing-card ul {
    padding-left: 18px;
    margin: 22px 0 28px;
}

.full-width {
    width: 100%;
}

.contact-panel {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--mp-primary), var(--mp-secondary));
    box-shadow: var(--shadow-strong);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-form {
    padding: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 16px;
}

.contact-form span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3b4652;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7dbe2;
    border-radius: 16px;
    font: inherit;
    color: var(--mp-dark);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 132px;
}

.form-feedback {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: #e9f8ef;
    color: #1f7a43;
    line-height: 1.6;
}

.login-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff1f0;
    border: 1px solid rgba(192, 57, 43, 0.18);
    color: #9f2f21;
    line-height: 1.6;
}

.site-footer {
    background: #0f0f15;
    color: rgba(255, 255, 255, 0.66);
    padding-top: 56px;
}

.system-page {
    background: linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
}

.system-section {
    min-height: auto;
    padding: 0;
}

.system-shell {
    min-height: auto;
    width: 100%;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #f0f2f5;
    box-shadow: none;
}

.system-shell.rv,
.system-shell.rv.show {
    opacity: 1;
    transform: none;
}

.system-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.system-topbar-compact {
    padding: 8px 20px;
    min-height: var(--system-topbar-height);
}

.system-topbar-left,
.system-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.system-window-controls {
    display: flex;
    gap: 6px;
}

.system-window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
}

.system-overline {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.system-overline-dark {
    color: var(--mp-secondary);
}

.system-topbar h1,
.system-panel h2,
.system-panel h3 {
    margin: 0;
    letter-spacing: -0.03em;
}

.system-topbar h1 {
    font-size: 1.02rem;
    line-height: 1.2;
}

.system-role-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 700;
}

.system-avatar {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.system-body {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: auto;
    align-items: start;
}

.system-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px;
    background: #18202e;
    position: sticky;
    top: var(--system-topbar-height);
    align-self: start;
    height: calc(100vh - var(--system-topbar-height));
    overflow-y: auto;
}

.system-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    font-weight: 500;
}

.system-nav-item.active,
.system-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.system-main {
    min-width: 0;
    background: #f0f2f5;
    align-self: start;
    padding: 0;
}

.system-panel {
    padding: 6px 28px 28px;
}

.system-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.system-panel-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.system-burger {
    display: none;
    color: #fff;
}

.system-mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--system-topbar-height) + 10px);
    left: 12px;
    right: 12px;
    z-index: 120;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: #18202e;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.system-mobile-menu.open {
    display: grid;
    gap: 8px;
}

.system-table-toolbar {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.system-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    min-height: 48px;
    border: 1px solid #d7dbe2;
    border-radius: 16px;
    background: #fff;
}

.system-search-field .material-icons {
    color: var(--mp-muted);
}

.system-search-field input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0;
    font: inherit;
    color: var(--mp-dark);
    background: transparent;
}

.system-active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.system-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f1f5fa;
    color: #415166;
    font-size: 0.82rem;
    font-weight: 700;
}

.system-clear-filters {
    color: var(--mp-secondary);
    font-weight: 700;
}

.system-filter-dropdown {
    position: relative;
}

.system-filter-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(92vw, 760px);
    padding: 20px;
    border: 1px solid #d9e0e8;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    z-index: 90;
}

.system-filter-group-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.system-filter-group {
    padding: 16px;
    border: 1px solid #e3eaf2;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfcfe 0%, #f6f9fc 100%);
}

.system-filter-group-title {
    display: block;
    margin-bottom: 12px;
    color: #324154;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.system-filter-options {
    display: grid;
    gap: 10px;
}

.system-filter-option {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #e3eaf2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    color: #425166;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
}

.system-filter-option:hover {
    border-color: #cfd9e5;
    background: #fff;
}

.system-filter-option input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.system-filter-option-copy {
    min-width: 0;
}

.system-filter-option-copy strong {
    display: block;
    color: #324154;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

.system-filter-option input:checked + .system-filter-option-copy strong {
    color: var(--mp-primary);
}

.system-filter-dropdown-panel .system-form-grid {
    margin-top: 4px;
}

.system-filter-dropdown-panel .system-form-actions {
    margin-top: 2px;
}

.system-search-empty {
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f6f8fb;
    color: var(--mp-muted);
}

.system-modal {
    position: fixed;
    inset: 0;
    z-index: 1800;
}

.system-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.44);
}

.system-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100vw - 24px), 720px);
    margin: 60px auto;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

.system-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.system-modal-head h3 {
    margin: 0;
}

.system-modal-close {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dde3ea;
    border-radius: 12px;
    background: #fff;
    color: #425166;
    cursor: pointer;
}

body.system-modal-open {
    overflow: hidden;
}

.system-panel-head.compact {
    margin-bottom: 18px;
}

.system-back-link {
    color: var(--mp-secondary);
    font-weight: 700;
}

.system-table-link {
    color: var(--mp-primary);
    font-weight: 700;
}

.system-table-link:hover {
    color: var(--mp-secondary);
}

.system-kpi-grid,
.system-content-grid {
    display: grid;
    gap: 18px;
}

.system-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.system-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.sys-card {
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.sys-kpi strong {
    display: block;
    color: var(--mp-primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.sys-kpi span {
    display: block;
    margin-top: 8px;
    color: var(--mp-muted);
    font-size: 0.8rem;
}

.system-metric-note {
    display: block;
    margin-top: 10px;
    color: var(--mp-muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

.system-equipment-list,
.system-timeline {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.system-equipment-item,
.system-timeline-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef1f4;
}

.system-timeline-link {
    border-radius: 16px;
    padding: 10px 12px 14px;
    margin: -10px -12px 0;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.system-timeline-link:hover,
.system-timeline-link:focus-visible {
    background: #f6f8fb;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    outline: 0;
}

.system-timeline-link:focus-visible strong {
    color: var(--mp-primary);
}

.system-equipment-item:last-child,
.system-timeline-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.system-equipment-copy strong,
.system-timeline-item strong {
    display: block;
    color: var(--mp-dark);
}

.system-equipment-copy span,
.system-timeline-item span {
    display: block;
    margin-top: 4px;
    color: var(--mp-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.sys-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-yellow { background: #fff8e1; color: #f57f17; }
.badge-blue { background: #e3f2fd; color: #1565c0; }

.system-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.system-action-secondary {
    background: #eef2f7;
    color: #324154;
}

.system-alert-global {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100vw - 24px), 1180px);
    z-index: 2000;
    pointer-events: none;
}

.system-alert {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    line-height: 1.6;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: auto;
}

.system-alert.is-hiding {
    opacity: 0;
    transform: translateY(-10px);
}

.system-alert-success {
    background: #eaf8ee;
    border: 1px solid rgba(46, 125, 50, 0.18);
    color: #226334;
}

.system-alert-error {
    background: #fff1f0;
    border: 1px solid rgba(192, 57, 43, 0.16);
    color: #8f2f25;
}

.system-form-card {
    width: 100%;
    max-width: none;
    margin: 0;
}

.system-form {
    display: grid;
    gap: 18px;
}

.system-form-grid {
    display: grid;
    gap: 16px;
}

.system-form-grid-double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.system-form-grid-triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-form label > span,
.system-form .system-form-field > span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3b4652;
}

.system-form input,
.system-form select,
.system-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7dbe2;
    border-radius: 16px;
    font: inherit;
    color: var(--mp-dark);
    background: #fff;
}

.system-form input[type="file"] {
    padding: 12px 14px;
    background: #f8fafc;
}

.system-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.system-upload {
    position: relative;
    display: grid;
    gap: 10px;
}

.system-upload-surface {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #d7dbe2;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
}

.system-upload-copy strong {
    display: block;
    color: var(--mp-dark);
    font-size: 0.96rem;
}

.system-upload-copy p {
    margin: 4px 0 0;
    color: var(--mp-muted);
    line-height: 1.55;
    font-size: 0.9rem;
}

.system-upload-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-secondary));
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.system-upload-status {
    color: #465364;
    font-size: 0.84rem;
    line-height: 1.5;
}

.system-upload-list {
    display: grid;
    gap: 8px;
}

.system-upload-empty {
    padding: 10px 14px;
    border: 1px dashed #cfd8e3;
    border-radius: 14px;
    color: var(--mp-muted);
    background: #fafcff;
    font-size: 0.9rem;
}

.system-upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    background: #fff;
}

.system-upload-item-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.system-upload-item-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 10px;
    background: #eef3f9;
    color: var(--mp-secondary);
}

.system-upload-item-icon .material-icons {
    font-size: 1.05rem;
}

.system-upload-item-copy {
    min-width: 0;
}

.system-upload-item-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--mp-dark);
}

.system-upload-item-copy span {
    display: block;
    margin-top: 2px;
    color: var(--mp-muted);
    font-size: 0.78rem;
}

.system-upload-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #e3c5c1;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    background: #fff4f2;
    color: #b23b2d;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.84rem;
}

.system-upload-remove .material-icons {
    font-size: 1rem;
}

.system-upload-remove:hover {
    background: #ffe9e5;
}

.system-upload-compact {
    gap: 8px;
}

.system-upload-compact .system-upload-surface {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 16px;
}

.system-upload-compact .system-upload-copy strong {
    font-size: 0.92rem;
}

.system-upload-compact .system-upload-copy p {
    font-size: 0.84rem;
    line-height: 1.45;
}

.system-upload-compact .system-upload-trigger {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 0.92rem;
}

.system-upload-compact .system-upload-trigger .material-icons {
    font-size: 1rem;
}

.system-upload-compact .system-upload-status,
.system-upload-compact + .system-form-help {
    font-size: 0.8rem;
}

.system-upload-compact .system-upload-list {
    gap: 6px;
}

.system-upload-compact .system-upload-item {
    padding: 10px 12px;
    border-radius: 12px;
}

.system-upload-compact .system-upload-item-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
}

.system-upload-compact .system-upload-item-copy strong {
    font-size: 0.9rem;
}

.system-upload-compact .system-upload-item-copy span {
    font-size: 0.74rem;
}

.system-upload-compact .system-upload-remove {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
}

.system-form textarea {
    resize: vertical;
    min-height: 180px;
}

.system-form input:disabled {
    color: #718096;
    background: #f7f8fa;
}

.system-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.system-form-help {
    display: block;
    margin-top: 8px;
    color: var(--mp-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.system-empty {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f6f8fb;
    color: var(--mp-muted);
    line-height: 1.6;
}

.system-table-wrap {
    overflow-x: auto;
    margin-top: 10px;
}

.system-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.system-table th {
    padding: 12px 14px;
    text-align: left;
    background: #f6f8fb;
    color: #465364;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.system-table td {
    padding: 14px;
    border-top: 1px solid #eef1f4;
    color: #465364;
    font-size: 0.9rem;
}

.system-table small {
    color: var(--mp-muted);
    font-size: 0.76rem;
}

.system-panel-copy {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--mp-muted);
    line-height: 1.7;
}

.system-ticket-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.system-ticket-meta-card strong,
.system-ticket-summary-item strong {
    display: block;
    color: var(--mp-dark);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.system-ticket-meta-card span,
.system-ticket-summary-item span {
    display: block;
    margin-top: 10px;
    color: #465364;
    line-height: 1.6;
}

.system-ticket-detail-grid {
    align-items: start;
}

.system-ticket-side-column {
    display: grid;
    gap: 18px;
}

.system-ticket-summary-list {
    display: grid;
    gap: 16px;
}

.system-history-list {
    display: grid;
    gap: 16px;
}

.system-history-item {
    padding: 18px;
    border: 1px solid #e7ecf2;
    border-radius: 18px;
    background: #fbfcfe;
}

.system-history-meta strong {
    display: block;
    color: var(--mp-dark);
}

.system-history-meta span {
    display: block;
    margin-top: 4px;
    color: var(--mp-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.system-history-body {
    margin-top: 12px;
    color: #3f4c5d;
    line-height: 1.7;
    word-break: break-word;
}

.system-history-body small {
    display: block;
    margin-top: 6px;
    color: var(--mp-muted);
}

.system-history-attachments {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.system-history-attachment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    background: #fcfdff;
}

.system-history-attachment-main {
    min-width: 0;
}

.system-history-attachment-name {
    display: block;
    color: var(--mp-primary);
    font-weight: 700;
    word-break: break-word;
}

.system-history-attachment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.system-file-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--mp-secondary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.system-file-action:hover {
    background: #0b7bc1;
    color: #fff;
}

.system-file-action-secondary {
    background: #eef4fb;
    color: var(--mp-primary);
}

.system-file-action-secondary:hover {
    background: #dfeaf8;
    color: var(--mp-primary);
}

.system-permission-banner {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    line-height: 1.7;
    font-size: 0.92rem;
}

.system-permission-banner-readonly {
    background: #fff6ea;
    border: 1px solid rgba(245, 127, 23, 0.2);
    color: #8b4b09;
}

.system-permission-banner-manage {
    background: #eef8f1;
    border: 1px solid rgba(46, 125, 50, 0.18);
    color: #2c6e34;
}

.system-module-kpi-grid {
    margin-bottom: 18px;
}

.login-page {
    background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.login-section {
    padding-top: 136px;
    min-height: 100vh;
}

.login-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.login-benefits {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.login-benefits div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--mp-border);
    box-shadow: var(--shadow-soft);
}

.login-benefits .material-icons {
    color: var(--mp-secondary);
}

.login-card {
    width: min(100%, 560px);
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--mp-border);
    box-shadow: var(--shadow-soft);
}

.login-card-tag {
    margin: 0 0 12px;
    color: var(--mp-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.login-card h2 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.login-card-copy {
    margin: 14px 0 0;
    color: var(--mp-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.login-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.login-form label span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3b4652;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7dbe2;
    border-radius: 16px;
    font: inherit;
    color: var(--mp-dark);
    background: #fff;
}

.login-form .btn-primary {
    border: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    min-height: 52px;
    box-shadow: 0 10px 28px rgba(192, 57, 43, 0.28);
}

.login-form .btn-primary:hover {
    transform: translateY(-2px);
}

.login-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.login-links a {
    font-size: 0.9rem;
    color: var(--mp-secondary);
}

.login-note {
    margin: 20px 0 0;
    color: var(--mp-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-inner {
    align-items: start;
}

.footer-brand {
    color: #fff;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
}

.footer-links {
    display: grid;
    gap: 12px;
    justify-content: end;
}

.footer-bottom {
    margin-top: 34px;
    padding: 20px 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.84rem;
}

.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.show {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

@media (max-width: 1100px) {
    .system-filter-group-grid {
        grid-template-columns: 1fr;
    }

    .system-ticket-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .footer-inner,
    .services-grid,
    .products-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .system-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .system-content-grid {
        grid-template-columns: 1fr;
    }

    .system-form-grid-double,
    .system-form-grid-triple {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .system-history-attachment {
        flex-direction: column;
        align-items: stretch;
    }

    .system-history-attachment-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .system-file-action {
        width: 100%;
    }

    .system-filter-dropdown {
        width: 100%;
    }

    .system-filter-dropdown-panel {
        right: auto;
        left: 0;
        width: min(calc(100vw - 40px), 520px);
    }

    .system-upload-surface,
    .system-upload-item {
        flex-direction: column;
        align-items: stretch;
    }

    .system-upload-trigger,
    .system-upload-remove {
        width: 100%;
    }

    .system-ticket-meta-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 72px 0;
    }

    .desktop-nav {
        display: none;
    }

    .mp-burger {
        display: inline-flex;
    }

    .system-burger {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    .split-grid,
    .contact-grid,
    .footer-inner,
    .services-grid,
    .products-grid,
    .pricing-grid,
    .check-grid,
    .hero-kpis,
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .system-body {
        grid-template-columns: 1fr;
    }

    .system-sidebar {
        display: none;
    }

    .system-nav-item {
        white-space: nowrap;
    }

    .system-role-badge,
    .system-avatar {
        display: none;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .hero-copy,
    .hero-panel {
        width: 100%;
    }

    .hero-panel {
        display: none;
    }

    .hero-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 32px;
        gap: 12px;
    }

    .hero-kpis article {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-kpis strong {
        font-size: 1.7rem;
    }

    .dashboard-card {
        width: 100%;
        max-width: none;
        padding: 22px;
    }

    .dashboard-card h2 {
        margin: 18px 0;
        font-size: 1.15rem;
    }

    .dashboard-card li {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }

    .dashboard-card,
    .contact-panel,
    .contact-form,
    .feature-card,
    .product-card,
    .pricing-card {
        border-radius: 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-links {
        justify-content: start;
    }

    .login-section {
        padding-top: 112px;
        min-height: auto;
    }

    .system-section {
        padding: 0;
    }
}

@media (max-width: 560px) {
    .container {
        max-width: none;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-grid {
        gap: 18px;
    }

    .nav-inner {
        min-height: 64px;
    }

    .brand {
        font-size: 0.96rem;
        letter-spacing: -0.02em;
    }

    .brand-logo {
        width: 100%;
        height: 100%;
    }

    .brand-mark {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .mp-mobile-menu {
        top: 64px;
    }

    .hero {
        padding-top: 86px;
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: 1.78rem;
        line-height: 1.02;
        letter-spacing: -0.05em;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-copy p {
        margin-top: 16px;
        font-size: 0.92rem;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.86);
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
        padding: 7px 10px;
        font-size: 0.58rem;
        letter-spacing: 0.12em;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        margin-top: 24px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 0.92rem;
        letter-spacing: -0.01em;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost-light {
        width: 100%;
    }

    .hero-kpis {
        grid-template-columns: 1fr 1fr;
        margin-top: 24px;
    }

    .hero-kpis article {
        padding: 14px;
    }

    .hero-kpis strong {
        font-size: 1.32rem;
        letter-spacing: -0.03em;
    }

    .hero-kpis span {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .section-tag {
        font-size: 0.68rem;
        letter-spacing: 0.26em;
    }

    .section-head h2,
    .copy-block h2,
    .contact-panel h2 {
        font-size: 2rem;
        line-height: 1.02;
        letter-spacing: -0.05em;
    }

    .section-text,
    .copy-block p,
    .contact-panel p,
    .feature-card p,
    .product-card p,
    .pricing-card li,
    .footer-inner p {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .feature-card h3,
    .product-card h3 {
        font-size: 1rem;
        line-height: 1.25;
    }

    .product-price {
        font-size: 1.42rem;
    }

    .pricing-name {
        font-size: 0.76rem;
    }

    .pricing-value {
        font-size: 2.4rem;
    }

    .image-card img {
        min-height: 320px;
    }

    .floating-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .contact-panel,
    .contact-form,
    .feature-card,
    .pricing-card,
    .login-card,
    .product-body {
        padding: 22px;
    }

    .system-panel,
    .sys-card {
        padding: 18px;
    }

    .system-topbar {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .system-topbar-compact {
        padding: 10px 16px;
        min-height: 72px;
    }

    .system-topbar-right {
        width: auto;
        justify-content: flex-end;
    }

    .system-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .system-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-links {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .hero-kpis {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 1.58rem;
    }

    .hero-badge {
        font-size: 0.54rem;
    }

    .section-head h2,
    .copy-block h2,
    .contact-panel h2 {
        font-size: 1.76rem;
    }
}