:root {
    --mokosh-primary: #3c4c21;
    --mokosh-primary-dark: #253113;
    --mokosh-primary-soft: #e6eadb;
    --mokosh-surface: #fffdf7;
    --mokosh-surface-warm: #f6f2e7;
    --mokosh-border: #ded8c7;
    --mokosh-text: #24281d;
    --mokosh-muted: #69705f;
    --mokosh-accent: #a97638;
    --mokosh-accent-soft: #f2e5d2;
    --mokosh-info: #2f6673;
    --mokosh-danger: #b5432f;
    --bs-primary: var(--mokosh-primary);
    --bs-primary-rgb: 60, 76, 33;
    --bs-link-color: var(--mokosh-primary);
    --bs-link-hover-color: var(--mokosh-primary-dark);
    --bs-body-color: var(--mokosh-text);
    --bs-body-bg: var(--mokosh-surface);
    --bs-border-color: var(--mokosh-border);
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    color: var(--mokosh-text);
    background:
        linear-gradient(180deg, rgba(246, 242, 231, 0.72), rgba(255, 253, 247, 0.98) 280px),
        var(--mokosh-surface);
}

.password-field-control {
    position: relative;
}

.password-field-control .form-control {
    padding-right: 3rem;
}

.password-visibility-mirror {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.password-visibility-mirror[hidden] {
    display: none;
}

.password-visibility-toggle {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    z-index: 4;
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    color: var(--mokosh-muted);
    background: transparent;
    transition: color 150ms ease, background-color 150ms ease;
}

.password-visibility-toggle:hover,
.password-visibility-toggle:focus-visible,
.password-visibility-toggle.is-active {
    color: var(--mokosh-primary);
    background: var(--mokosh-primary-soft);
}

.password-visibility-toggle:focus-visible {
    outline: 2px solid var(--mokosh-primary);
    outline-offset: 1px;
}

.password-visibility-icon {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

a {
    color: var(--mokosh-primary);
}

a:hover {
    color: var(--mokosh-primary-dark);
}

.mokosh-navbar {
    background: var(--mokosh-primary-dark);
    border-bottom: 1px solid rgba(255, 253, 247, 0.14);
    box-shadow: 0 6px 18px rgba(37, 49, 19, 0.16);
}

.mokosh-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    min-height: 42px;
    color: #fffdf7;
    font-weight: 700;
    letter-spacing: 0;
}

.mokosh-brand:hover,
.mokosh-brand:focus {
    color: #fffdf7;
}

.mokosh-brand-mark {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mokosh-surface-warm);
}

.mokosh-brand-mark img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.mokosh-brand-text {
    line-height: 1;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 253, 247, 0.78);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #fffdf7;
}

.mokosh-profile-link {
    max-width: min(18rem, 32vw);
}

.mokosh-profile-name {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .mokosh-profile-link {
        max-width: calc(100vw - 3rem);
    }
}

.dropdown-item:active {
    background-color: var(--mokosh-primary);
}

.bg-light {
    background-color: rgba(246, 242, 231, 0.86) !important;
}

.breadcrumb a {
    color: var(--mokosh-primary);
}

.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.btn-primary {
    --bs-btn-bg: var(--mokosh-primary);
    --bs-btn-border-color: var(--mokosh-primary);
    --bs-btn-hover-bg: var(--mokosh-primary-dark);
    --bs-btn-hover-border-color: var(--mokosh-primary-dark);
    --bs-btn-active-bg: var(--mokosh-primary-dark);
    --bs-btn-active-border-color: var(--mokosh-primary-dark);
    --bs-btn-disabled-bg: #7c856b;
    --bs-btn-disabled-border-color: #7c856b;
    color: #fffdf7;
}

.btn-outline-primary {
    --bs-btn-color: var(--mokosh-primary);
    --bs-btn-border-color: rgba(60, 76, 33, 0.48);
    --bs-btn-hover-bg: var(--mokosh-primary);
    --bs-btn-hover-border-color: var(--mokosh-primary);
    --bs-btn-active-bg: var(--mokosh-primary-dark);
    --bs-btn-active-border-color: var(--mokosh-primary-dark);
}

.btn-outline-secondary {
    --bs-btn-color: #4f5a43;
    --bs-btn-border-color: #b7b09d;
    --bs-btn-hover-bg: #4f5a43;
    --bs-btn-hover-border-color: #4f5a43;
    --bs-btn-hover-color: #fffdf7;
}

.btn-link {
    --bs-btn-color: var(--mokosh-primary);
    --bs-btn-hover-color: var(--mokosh-primary-dark);
}

.form-control,
.form-select {
    border-color: var(--mokosh-border);
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(60, 76, 33, 0.58);
    box-shadow: 0 0 0 0.2rem rgba(60, 76, 33, 0.16);
}

.card,
.login-card,
.info-card {
    border-radius: 8px;
}

.card {
    border-color: var(--mokosh-border);
    box-shadow: 0 10px 24px rgba(37, 49, 19, 0.06);
}

.card-header.bg-primary,
.bg-primary {
    background-color: var(--mokosh-primary) !important;
}

.text-primary {
    color: var(--mokosh-primary) !important;
}

.badge.bg-primary {
    background-color: var(--mokosh-primary) !important;
}

.badge.bg-success {
    background-color: #55723b !important;
}

.progress-bar {
    background-color: var(--mokosh-primary);
}

.table {
    --bs-table-border-color: var(--mokosh-border);
}

.table-light {
    --bs-table-bg: #f3efe4;
    --bs-table-color: var(--mokosh-muted);
    --bs-table-border-color: var(--mokosh-border);
}

.table-primary {
    --bs-table-bg: #e6eadb;
    --bs-table-color: var(--mokosh-text);
    --bs-table-border-color: #cfd6bd;
    --bs-table-striped-bg: #dfe5d2;
    --bs-table-striped-color: var(--mokosh-text);
    --bs-table-active-bg: #d8dfc7;
    --bs-table-active-color: var(--mokosh-text);
    --bs-table-hover-bg: #dfe5d2;
    --bs-table-hover-color: var(--mokosh-text);
}

.table-success {
    --bs-table-bg: #eef4e8;
    --bs-table-color: #24351b;
    --bs-table-border-color: #cddfc1;
}

.table-danger {
    --bs-table-bg: #f2e5d2;
    --bs-table-color: #4d3215;
    --bs-table-border-color: #dfc6a2;
    --bs-table-striped-bg: #ecddc7;
    --bs-table-striped-color: #4d3215;
    --bs-table-active-bg: #e5d4bc;
    --bs-table-active-color: #4d3215;
    --bs-table-hover-bg: #ecddc7;
    --bs-table-hover-color: #4d3215;
}

.alert-info {
    color: #244a52;
    background-color: #e4f0f1;
    border-color: #bed9dd;
}

.alert-success {
    color: #2f4b25;
    background-color: #e8f1df;
    border-color: #c9dab7;
}

.alert-warning {
    color: #5f431c;
    background-color: #fbefd8;
    border-color: #efd39f;
}

.alert-danger {
    color: #6c2419;
    background-color: #f7dfd8;
    border-color: #e8b9ae;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 3.5rem;
    background: var(--mokosh-surface-warm);
    border-bottom: 1px solid var(--mokosh-border);
}

.hero-section::after {
    content: "";
    position: absolute;
    right: max(1rem, calc((100vw - 1200px) / 2));
    bottom: -3rem;
    width: clamp(180px, 24vw, 320px);
    aspect-ratio: 1;
    background: url("../img/mokosh-mark.png") center / contain no-repeat;
    opacity: 0.055;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-brand-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-brand-mark {
    width: 72px;
    height: 72px;
    object-fit: contain;
    padding: 0.625rem;
    border: 1px solid rgba(60, 76, 33, 0.16);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.72);
}

.hero-brand-subtitle {
    color: var(--mokosh-muted);
    font-weight: 600;
}

.hero-section h1,
.hero-section h2,
.login-card h3,
.info-card h4 {
    color: var(--mokosh-text);
}

.hero-section h1 {
    font-weight: 700;
}

.hero-section h2 {
    font-weight: 600;
}

.hero-section .lead,
.info-card p {
    color: var(--mokosh-muted);
}

.features-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #3e4634;
    font-weight: 500;
}

.feature-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border: 2px solid var(--mokosh-primary);
    border-radius: 7px;
    transform: rotate(45deg);
    background: rgba(60, 76, 33, 0.08);
}

.login-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: rgba(255, 253, 247, 0.94);
    border: 1px solid rgba(60, 76, 33, 0.14);
    box-shadow: 0 18px 40px rgba(37, 49, 19, 0.12);
}

.login-card::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: url("../img/mokosh-mark.png") center / contain no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.login-form .form-control {
    padding: 0.75rem 1rem;
}

.login-form .btn-primary {
    padding: 0.75rem 1rem;
}

.info-card {
    height: 100%;
    padding: 1.5rem;
    background: #fffdf7;
    border: 1px solid var(--mokosh-border);
    box-shadow: 0 10px 24px rgba(37, 49, 19, 0.06);
}

.info-card-mark {
    display: inline-flex;
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    border-radius: 8px;
    background:
        url("../img/mokosh-mark.png") center / 22px 22px no-repeat,
        var(--mokosh-primary-soft);
}

.marketing-page {
    background: #fffdf7;
}

.marketing-hero {
    padding: 4rem 0;
    border-bottom: 1px solid var(--mokosh-border);
    background:
        linear-gradient(180deg, rgba(230, 234, 219, 0.9), rgba(255, 253, 247, 0.98)),
        #fffdf7;
}

.marketing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.marketing-hero-copy h2,
.marketing-section-heading h2,
.marketing-final-cta h2 {
    font-weight: 700;
    letter-spacing: 0;
}

.marketing-hero-copy h2 {
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.marketing-eyebrow {
    margin-bottom: 0.5rem;
    color: var(--mokosh-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.marketing-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.marketing-demo-shell {
    overflow: hidden;
    border: 1px solid rgba(60, 76, 33, 0.18);
    border-radius: 8px;
    background: #fffdf7;
    box-shadow: 0 20px 44px rgba(37, 49, 19, 0.14);
}

.demo-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--mokosh-border);
    background: var(--mokosh-primary-dark);
    color: rgba(255, 253, 247, 0.88);
}

.demo-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 253, 247, 0.5);
}

.demo-browser-bar strong {
    margin-left: auto;
    font-size: 0.85rem;
}

.demo-dashboard {
    padding: 1rem;
}

.demo-dashboard-header,
.demo-flow-grid,
.demo-invoice-preview {
    border: 1px solid var(--mokosh-border);
    border-radius: 8px;
    background: #fff;
}

.demo-dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.demo-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    margin-bottom: 1rem;
}

.demo-flow-grid > div {
    display: grid;
    gap: 0.3rem;
    padding: 0.9rem;
    border-right: 1px solid var(--mokosh-border);
}

.demo-flow-grid > div:last-child {
    border-right: 0;
}

.demo-flow-grid span {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mokosh-primary-soft);
    color: var(--mokosh-primary-dark);
    font-weight: 700;
}

.demo-flow-grid small,
.demo-meter-row {
    color: var(--mokosh-muted);
}

.demo-invoice-preview {
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
}

.demo-meter-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.marketing-band {
    padding: 4rem 0;
}

.marketing-band-muted {
    background: rgba(246, 242, 231, 0.52);
    border-top: 1px solid var(--mokosh-border);
    border-bottom: 1px solid var(--mokosh-border);
}

.marketing-section-heading {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.marketing-section-heading p:last-child,
.marketing-final-cta p {
    color: var(--mokosh-muted);
    font-size: 1.05rem;
}

.marketing-card-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.marketing-card-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-card,
.pricing-card,
.demo-strip article {
    padding: 1.25rem;
    border: 1px solid var(--mokosh-border);
    border-radius: 8px;
    background: #fff;
}

.marketing-card h3,
.pricing-card h3,
.marketing-step h3 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.marketing-card p,
.pricing-card p,
.marketing-step p,
.demo-strip p {
    margin-bottom: 0;
    color: var(--mokosh-muted);
}

.marketing-timeline {
    display: grid;
    gap: 0.85rem;
}

.marketing-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--mokosh-border);
    border-radius: 8px;
    background: #fff;
}

.marketing-step > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mokosh-primary);
    color: #fffdf7;
    font-weight: 700;
}

.tenant-benefit-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    align-items: start;
}

.telegram-preview {
    border: 1px solid var(--mokosh-border);
    border-radius: 8px;
    background: #f4f7ef;
    overflow: hidden;
}

.telegram-preview-header {
    padding: 0.8rem 1rem;
    background: #2f6673;
    color: #fff;
    font-weight: 700;
}

.telegram-message {
    margin: 1rem;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.owner-message {
    background: #fff;
    border: 1px solid var(--mokosh-border);
}

.bot-message {
    margin-left: 2.2rem;
    background: var(--mokosh-primary);
    color: #fffdf7;
}

.demo-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.pricing-card {
    min-height: 180px;
}

.pricing-value {
    margin-bottom: 0.75rem;
    color: var(--mokosh-primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.trust-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-weight: 600;
}

.marketing-final-cta {
    text-align: center;
    background: #fffdf7;
}

.error-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 16% 14%, rgba(169, 118, 56, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(246, 242, 231, 0.96), rgba(255, 253, 247, 0.98) 48%, rgba(230, 234, 219, 0.78)),
        var(--mokosh-surface);
}

.error-shell {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.error-panel {
    width: min(100%, 760px);
    padding: clamp(1.5rem, 5vw, 3.5rem);
    border: 1px solid rgba(60, 76, 33, 0.16);
    border-radius: 8px;
    background: rgba(255, 253, 247, 0.92);
    box-shadow: 0 22px 60px rgba(37, 49, 19, 0.14);
}

.error-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mokosh-primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.error-brand:hover,
.error-brand:focus {
    color: var(--mokosh-primary);
}

.error-brand-mark {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(60, 76, 33, 0.12);
    border-radius: 8px;
    background: var(--mokosh-surface-warm);
}

.error-brand-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.error-content {
    margin-top: clamp(2rem, 5vw, 3rem);
}

.error-kicker {
    margin-bottom: 0.75rem;
    color: var(--mokosh-accent);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-content h1 {
    max-width: 620px;
    margin-bottom: 1rem;
    color: var(--mokosh-primary-dark);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.error-message,
.error-hint {
    max-width: 620px;
    margin-bottom: 0.75rem;
    color: var(--mokosh-muted);
    font-size: 1.05rem;
}

.error-message {
    color: var(--mokosh-text);
}

.error-path {
    display: grid;
    gap: 0.35rem;
    max-width: 620px;
    margin: 1.5rem 0 0;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(60, 76, 33, 0.14);
    border-radius: 8px;
    background: rgba(246, 242, 231, 0.72);
    color: var(--mokosh-muted);
    font-size: 0.92rem;
}

.error-path code {
    overflow-wrap: anywhere;
    color: var(--mokosh-primary-dark);
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .mobile-finance-table-responsive {
        overflow: visible;
    }

    .mobile-finance-table,
    .mobile-finance-table tbody,
    .mobile-finance-table tfoot {
        display: block;
        width: 100%;
    }

    .mobile-finance-table {
        margin-bottom: 0;
        border: 0;
    }

    .mobile-finance-table thead {
        display: none;
    }

    .mobile-finance-table tbody tr {
        display: grid;
        width: 100%;
        margin-bottom: 0.75rem;
        overflow: hidden;
        border: 1px solid var(--bs-border-color);
        border-radius: 8px;
        background: var(--bs-body-bg);
    }

    .mobile-finance-table tbody td,
    .mobile-finance-table tfoot th {
        display: block;
        width: auto;
        max-width: none;
        padding: 0.625rem 0.75rem;
        border: 0;
        overflow-wrap: anywhere;
    }

    .mobile-finance-table td[data-mobile-label]::before {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--bs-secondary-color);
        content: attr(data-mobile-label);
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: left;
    }

    .invoice-line-row,
    .tariff-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .invoice-line-service,
    .invoice-line-calculation,
    .invoice-line-amount,
    .tariff-name,
    .tariff-invoice-toggle,
    .tariff-scope,
    .tariff-preview,
    .tariff-updated,
    .tariff-actions {
        grid-column: 1 / -1;
    }

    .invoice-line-service,
    .tariff-name,
    .reminder-property {
        border-bottom: 1px solid var(--bs-border-color) !important;
    }

    .invoice-line-quantity,
    .tariff-unit {
        border-right: 1px solid var(--bs-border-color) !important;
    }

    .invoice-line-amount,
    .tariff-actions,
    .reminder-actions {
        border-top: 1px solid var(--bs-border-color) !important;
    }

    .invoice-line-amount {
        text-align: left !important;
    }

    .invoice-lines-table tfoot {
        margin-top: 0.25rem;
    }

    .invoice-lines-total {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: baseline;
        padding: 0.75rem;
        border-top: 2px solid var(--bs-border-color);
    }

    .invoice-lines-table tfoot .invoice-lines-total-label,
    .invoice-lines-table tfoot .invoice-lines-total-amount {
        padding: 0;
    }

    .reminder-table tbody tr {
        grid-template-columns: minmax(0, 1fr);
    }

    .reminder-pause .clear-reminder-pause-btn {
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }

    .reminder-duration .form-control,
    .reminder-actions .btn {
        width: 100%;
    }

    .tariff-actions .btn {
        width: 100%;
    }

    .mobile-table-empty {
        grid-column: 1 / -1;
    }

}

@media (max-width: 767.98px) {

    .mokosh-brand {
        min-height: 38px;
    }

    .mokosh-brand-mark {
        width: 32px;
        height: 32px;
    }

    .hero-section {
        padding: 2.5rem 0 2rem;
    }

    .hero-section::after {
        display: none;
    }

    .hero-brand-lockup {
        align-items: flex-start;
    }

    .hero-brand-mark {
        width: 58px;
        height: 58px;
    }

    .login-card {
        margin-top: 0.5rem;
        padding: 1.25rem;
    }

    .info-card {
        margin-bottom: 1rem;
    }

    .marketing-hero {
        padding: 2.5rem 0;
    }

    .marketing-hero-grid,
    .tenant-benefit-layout {
        grid-template-columns: 1fr;
    }

    .marketing-hero-copy h2 {
        font-size: 2rem;
    }

    .demo-flow-grid,
    .marketing-card-grid,
    .marketing-card-grid.two-col,
    .pricing-grid,
    .demo-strip {
        grid-template-columns: 1fr;
    }

    .demo-flow-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--mokosh-border);
    }

    .demo-flow-grid > div:last-child {
        border-bottom: 0;
    }

    .marketing-band {
        padding: 2.5rem 0;
    }

    .error-shell {
        align-items: flex-start;
        padding-top: 1rem;
    }

    .error-panel {
        padding: 1.25rem;
    }

    .error-content h1 {
        font-size: 2rem;
    }

    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .invoice-primary-actions,
    .invoice-primary-actions form,
    .invoice-primary-actions .btn {
        width: 100%;
    }
}
