:root {
    --tblr-primary: #176b87;
    --tblr-primary-rgb: 23, 107, 135;
    --saas-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --saas-sidebar: #182332;
}

html,
body {
    min-height: 100%;
}

body {
    background: #f5f7fb;
    color: #1f2937;
    font-family: var(--saas-font-sans);
    font-size: 14px;
    letter-spacing: 0;
}

.page {
    min-height: 100vh;
}

.page-body {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.navbar-vertical {
    background: var(--saas-sidebar);
    border-right: 0;
}

.navbar-vertical .navbar-brand {
    justify-content: flex-start;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.saas-sidebar-logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 136px !important;
    height: 136px !important;
    flex: 0 0 136px !important;
    max-width: 136px !important;
    max-height: 136px !important;
}

.saas-sidebar-logo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.24));
}

.navbar-vertical .nav-link {
    min-height: 42px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.navbar-vertical .nav-link:hover,
.navbar-vertical .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.navbar-vertical .nav-link-icon {
    color: inherit;
    opacity: 0.9;
}

.navbar-vertical .nav-section-divider {
    margin: 0.85rem 0.75rem 0.35rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar-vertical .nav-section-label {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-brand .avatar,
.page-center .avatar {
    font-weight: 800;
}

.login-brand-image {
    width: min(380px, 88vw);
    height: auto;
    max-height: 220px;
    object-fit: contain;
    display: inline-block;
}

.login-brand-image-dark {
    display: none;
}

html[data-saas-theme="dark"] .login-brand-image-light {
    display: none;
}

html[data-saas-theme="dark"] .login-brand-image-dark {
    display: inline-block;
}

.page-wrapper > .navbar {
    min-height: 66px;
    border-bottom: 1px solid #dce3ed;
    background: #ffffff;
}

.page-wrapper .navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

.card {
    border-color: #dce3ed;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.card-header {
    min-height: 54px;
}

.saas-create-card .card-header {
    align-items: center;
    gap: 1rem;
}

.saas-create-card:not(.is-open) > .card-body,
.saas-create-card:not(.is-open) > .card-footer {
    display: none;
}

.saas-create-card.is-open > .card-body,
.saas-create-card.is-open > .card-footer {
    animation: saasCreateFormIn 0.18s ease both;
}

@keyframes saasCreateFormIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subheader {
    color: #536170;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
}

.unit-kpi-card {
    height: 100%;
}

.unit-kpi-card .card-body {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unit-kpi-card .avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.unit-kpi-card .h2 {
    line-height: 1.2;
}

.calendar-toolbar .form-select {
    min-width: 220px;
}

.calendar-card {
    overflow: hidden;
}

.calendar-loading .calendar-card,
.calendar-loading #calendar-month-events-card {
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
    border-bottom: 1px solid #dce3ed;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.calendar-weekdays > div {
    padding: 0.75rem;
    text-align: center;
}

.calendar-month {
    background: #dce3ed;
    gap: 1px;
}

.calendar-day {
    min-height: 142px;
    padding: 0.65rem;
    background: #ffffff;
}

.calendar-day.is-muted {
    background: #f8fafc;
    color: #94a3b8;
}

.calendar-day.is-today {
    box-shadow: inset 0 0 0 2px rgba(23, 107, 135, 0.28);
}

.calendar-day.has-events {
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.calendar-day.has-events:hover {
    background: #f8fbff;
    box-shadow: inset 0 0 0 2px rgba(23, 107, 135, 0.16);
}

.calendar-day.is-selected {
    background: #eef7fb;
    box-shadow: inset 0 0 0 2px rgba(23, 107, 135, 0.36);
}

.calendar-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.45rem;
    border-radius: 8px;
    font-weight: 700;
}

.calendar-day.is-today .calendar-day-number {
    background: var(--tblr-primary);
    color: #ffffff;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 102px;
    overflow-y: auto;
    padding-right: 0.1rem;
}

.calendar-event {
    border: 1px solid color-mix(in srgb, var(--event-color) 18%, #dce3ed);
    border-left: 3px solid var(--event-color);
    border-radius: 7px;
    background: color-mix(in srgb, var(--event-color) 8%, #ffffff);
    color: #1f2937;
    padding: 0.4rem 0.5rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.calendar-event-title {
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-event-meta {
    overflow: hidden;
    color: #64748b;
    font-size: 0.68rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-event-list {
    max-height: 520px;
    overflow-y: auto;
}

#calendar-month-events-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#calendar-month-events-card .calendar-event-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
}

.calendar-event-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.35rem;
}

.calendar-event-actions .btn-icon {
    width: 2rem;
    height: 2rem;
}

.calendar-event-dot {
    flex: 0 0 auto;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: 0.35rem;
    border-radius: 999px;
}

.calendar-day-detail .card-header {
    background: #f8fafc;
}

.calendar-day-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
}

.calendar-day-detail-item {
    display: flex;
    gap: 0.65rem;
    min-height: 76px;
    padding: 0.8rem;
    border: 1px solid color-mix(in srgb, var(--event-color) 24%, #dce3ed);
    border-radius: 8px;
    background: color-mix(in srgb, var(--event-color) 8%, #ffffff);
}

.calendar-day-detail-item .calendar-event-dot {
    background: var(--event-color);
}

.calendar-day-detail-description {
    margin-top: 0.35rem;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.35;
}

.badge {
    letter-spacing: 0;
}

.btn {
    border-radius: 8px;
    font-weight: 600;
}

.form-control {
    border-radius: 8px;
}

.ti {
    font-size: 1.15rem;
    line-height: 1;
    vertical-align: -0.15em;
}

.page-center {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.container-tight {
    max-width: 30rem;
}

.report-toolbar {
    margin-bottom: 1.5rem;
}

.report-print {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.report-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding-top: 0.25rem;
}

.report-chart-grid,
.report-table-grid {
    --tblr-gutter-x: 1.25rem;
    --tblr-gutter-y: 1.25rem;
}

.report-card {
    height: 100%;
}

.report-kpi-card .card-body {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.report-chart-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.report-chart {
    min-height: 340px;
}

.report-table-scroll {
    max-height: 360px;
    overflow: auto;
}

.report-table-scroll-lg {
    max-height: 420px;
}

.report-table-scroll thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff;
}

.report-status,
.report-type {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 24px;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.report-status-soft {
    color: color-mix(in srgb, var(--report-status-color) 78%, #111827);
    background: color-mix(in srgb, var(--report-status-color) 16%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--report-status-color) 28%, #ffffff);
}

.report-type-green {
    color: #18794e;
    background: #dff8e8;
}

.report-type-yellow {
    color: #8a5a00;
    background: #fff1c2;
}

.report-type-red {
    color: #b42318;
    background: #ffe1df;
}

.report-type-blue {
    color: #15599e;
    background: #dcebff;
}

.report-type .ti {
    font-size: 0.95rem;
}

.report-money {
    display: inline-flex;
    justify-content: flex-end;
    min-width: 8rem;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    background: #f8fafc;
    font-weight: 500;
}

html[data-saas-theme="dark"] body {
    background: #0b1422;
    color: #e5edf5;
}

html[data-saas-theme="dark"] .page-wrapper > .navbar {
    border-bottom-color: #26364a;
    background: #111c2b;
}

html[data-saas-theme="dark"] .page-header {
    color: #f8fafc;
}

html[data-saas-theme="dark"] .page-pretitle,
html[data-saas-theme="dark"] .text-secondary,
html[data-saas-theme="dark"] .subheader,
html[data-saas-theme="dark"] .form-hint,
html[data-saas-theme="dark"] .calendar-event-meta,
html[data-saas-theme="dark"] .calendar-day-detail-description {
    color: #9fb0c5 !important;
}

html[data-saas-theme="dark"] .card,
html[data-saas-theme="dark"] .dropdown-menu,
html[data-saas-theme="dark"] .modal-content {
    border-color: #26364a;
    background: #111c2b;
    color: #e5edf5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

html[data-saas-theme="dark"] .card-header,
html[data-saas-theme="dark"] .card-footer,
html[data-saas-theme="dark"] .calendar-day-detail .card-header {
    border-color: #26364a;
    background: #111c2b;
}

html[data-saas-theme="dark"] .table {
    --tblr-table-bg: #111c2b;
    --tblr-table-color: #e5edf5;
    --tblr-table-border-color: #26364a;
    color: #e5edf5;
}

html[data-saas-theme="dark"] .table thead,
html[data-saas-theme="dark"] .table thead tr,
html[data-saas-theme="dark"] .table thead th,
html[data-saas-theme="dark"] .report-table-scroll thead th {
    background-color: #0b1422 !important;
    color: #9fb0c5 !important;
}

html[data-saas-theme="dark"] .table tbody tr:hover td {
    background-color: #142235 !important;
}

html[data-saas-theme="dark"] .form-control,
html[data-saas-theme="dark"] .form-select,
html[data-saas-theme="dark"] .form-control-color {
    border-color: #33465f;
    background-color: #0b1422;
    color: #e5edf5;
}

html[data-saas-theme="dark"] .form-control::placeholder {
    color: #7d8fa7;
}

html[data-saas-theme="dark"] .input-group-text,
html[data-saas-theme="dark"] .form-selectgroup-label,
html[data-saas-theme="dark"] .report-money {
    border-color: #33465f;
    background: #0b1422;
    color: #e5edf5;
}

html[data-saas-theme="dark"] .calendar-weekdays,
html[data-saas-theme="dark"] .calendar-day.is-muted {
    background: #0b1422;
    color: #9fb0c5;
}

html[data-saas-theme="dark"] .calendar-month {
    background: #26364a;
}

html[data-saas-theme="dark"] .calendar-day,
html[data-saas-theme="dark"] .calendar-event,
html[data-saas-theme="dark"] .calendar-day-detail-item {
    background: #111c2b;
    color: #e5edf5;
}

html[data-saas-theme="dark"] .calendar-day.has-events:hover,
html[data-saas-theme="dark"] .calendar-day.is-selected {
    background: #142235;
}

html[data-saas-theme="dark"] .calendar-event {
    border-color: var(--event-color);
    border-left-color: var(--event-color);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--event-color) 18%, transparent);
}

html[data-saas-theme="dark"] .calendar-day-detail-item {
    border-color: color-mix(in srgb, var(--event-color) 40%, #26364a);
}

html[data-saas-theme="dark"] .saas-theme-toggle {
    border-color: #38bdf8;
    color: #a5f3fc;
}

html[data-saas-theme="dark"] .saas-theme-toggle:hover {
    background: rgba(56, 189, 248, 0.12);
    color: #ffffff;
}

html[data-saas-theme="dark"] .apexcharts-text,
html[data-saas-theme="dark"] .apexcharts-legend-text,
html[data-saas-theme="dark"] .apexcharts-title-text,
html[data-saas-theme="dark"] .apexcharts-xaxis-label,
html[data-saas-theme="dark"] .apexcharts-yaxis-label {
    fill: #9fb0c5 !important;
    color: #9fb0c5 !important;
}

html[data-saas-theme="dark"] .apexcharts-datalabel,
html[data-saas-theme="dark"] .apexcharts-data-labels text,
html[data-saas-theme="dark"] .apexcharts-pie-label {
    fill: #f8fafc !important;
    color: #f8fafc !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

html[data-saas-theme="dark"] .apexcharts-gridline {
    stroke: #26364a !important;
}

html[data-saas-theme="dark"] .apexcharts-tooltip,
html[data-saas-theme="dark"] .apexcharts-tooltip-title {
    border-color: #33465f !important;
    background: #0b1422 !important;
    color: #e5edf5 !important;
}

@media (min-width: 992px) {
    .navbar-vertical.navbar-expand-lg {
        width: 15rem;
    }
}

@media (max-width: 991.98px) {
    .calendar-toolbar .form-select {
        min-width: 0;
    }

    .calendar-month,
    .calendar-weekdays {
        min-width: 760px;
    }

    .calendar-card {
        overflow-x: auto;
    }
}

@media print {
    body {
        background: #ffffff;
    }

    .navbar,
    .navbar-vertical,
    .page-header,
    .d-print-none {
        display: none !important;
    }

    .page,
    .page-wrapper,
    .page-body,
    .container-xl {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .card {
        break-inside: avoid;
        box-shadow: none;
        border-color: #cfd8e3;
    }

    .report-card {
        height: auto;
    }

    .report-kpi-card .card-body {
        min-height: auto;
    }

    .report-table-scroll,
    .report-table-scroll-lg {
        max-height: none;
        overflow: visible;
    }

    .report-table-scroll thead th {
        position: static;
    }

    .report-print {
        gap: 14px;
    }

    .report-section {
        break-inside: avoid;
        page-break-inside: avoid;
        gap: 8px;
        margin-bottom: 0;
    }

    .report-section-header {
        padding-top: 0;
    }

    .apexcharts-canvas {
        break-inside: avoid;
    }
}

.promo-page {
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #f5f7fb 42%, #ffffff 100%);
    color: #182332;
    -webkit-text-size-adjust: 100%;
}

.promo-scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
    height: 3px;
    background: linear-gradient(90deg, #176b87, #2fb344, #f59f00);
    transform: scaleX(0);
    transform-origin: left;
    box-shadow: 0 0 16px rgba(23, 107, 135, 0.32);
}

.promo-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23, 107, 135, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 107, 135, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

.promo-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #dce3ed;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 26px rgba(24, 35, 50, 0.04);
    animation: promoDropIn 0.45s ease both;
}

.promo-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(23, 107, 135, 0.45), transparent);
}

.promo-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 70px;
}

.promo-brand,
.promo-nav {
    display: flex;
    align-items: center;
}

.promo-brand {
    gap: 0.8rem;
    color: #182332;
    font-size: 1.28rem;
    font-weight: 800;
}

.promo-logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
}

.promo-logo-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(7, 23, 63, 0.16));
}

.promo-logo-mark-sm {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
}

.promo-logo-mark-sm img {
    filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.24));
}

.promo-brand:hover,
.promo-nav a:hover {
    color: #176b87;
    text-decoration: none;
}

.promo-nav {
    gap: 1.2rem;
}

.promo-nav a {
    position: relative;
    color: #536170;
    font-weight: 600;
    transition: color 0.18s ease;
}

.promo-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: #176b87;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.promo-nav a:hover::after {
    transform: scaleX(1);
}

.promo-header-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.promo-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.promo-zpinat-link {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    text-decoration: none;
}

.promo-zpinat-link:hover {
    color: #176b87;
    text-decoration: none;
}

.promo-zpinat-link-header {
    position: relative;
    overflow: hidden;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(220, 227, 237, 0.9);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.84));
    box-shadow: 0 12px 28px rgba(7, 23, 63, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.promo-zpinat-link-header::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -35%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: rotate(18deg);
    transition: left 0.45s ease;
}

.promo-zpinat-link-header:hover {
    border-color: rgba(23, 107, 135, 0.28);
    box-shadow: 0 16px 34px rgba(7, 23, 63, 0.14);
    transform: translateY(-1px);
}

.promo-zpinat-link-header:hover::after {
    left: 110%;
}

.promo-zpinat-link-header img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: 40px;
}

.promo-hero {
    position: relative;
    padding: 2rem 0 3rem;
}

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

.promo-hero-grid,
.promo-hero-stack {
    display: grid;
    gap: 1.5rem;
}

.promo-hero-grid {
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    align-items: center;
}

.promo-hero-stack {
    grid-template-columns: 1fr;
}

.promo-copy-wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 255px);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    animation: promoRiseIn 0.65s ease 0.08s both;
}

.promo-copy-wide h1,
.promo-copy-wide p {
    max-width: 920px;
}

.promo-copy-wide .promo-actions,
.promo-copy-wide .promo-proof {
    justify-content: flex-start;
}

.promo-hero-brand {
    width: 100%;
    max-width: 240px;
    justify-self: end;
}

.promo-hero-brand img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    filter:
        drop-shadow(0 18px 24px rgba(23, 107, 135, 0.16))
        drop-shadow(0 4px 8px rgba(7, 23, 63, 0.1));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.promo-hero-brand:hover img {
    filter:
        drop-shadow(0 22px 30px rgba(23, 107, 135, 0.2))
        drop-shadow(0 5px 10px rgba(7, 23, 63, 0.12));
    transform: translateY(-3px);
}

.promo-copy h1,
.promo-section-heading h2,
.promo-benefits h2,
.promo-contact h2 {
    margin: 1rem 0;
    color: #182332;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.promo-copy h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    background: linear-gradient(135deg, #182332 0%, #176b87 52%, #2f4858 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.promo-copy p,
.promo-contact p {
    color: #536170;
    font-size: 1rem;
    line-height: 1.65;
}

.promo-copy .badge {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(23, 107, 135, 0.12);
}

.promo-copy .badge::after,
.promo-actions .btn-primary::after,
.promo-contact .btn-primary::after {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    width: 2.75rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: translateX(-6rem) rotate(18deg);
    animation: promoShine 3.6s ease-in-out infinite;
    pointer-events: none;
}

.promo-actions,
.promo-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.promo-actions {
    margin-top: 1.4rem;
}

.promo-actions .btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 107, 135, 0.18);
}

.promo-proof {
    margin-top: 1.25rem;
    color: #536170;
}

.promo-proof span {
    position: relative;
    padding-right: 0.9rem;
    border-right: 1px solid #dce3ed;
}

.promo-proof strong {
    display: inline-block;
    min-width: 2ch;
    color: #176b87;
    font-size: 1.12rem;
}

.promo-proof span:last-child {
    border-right: 0;
}

.promo-system-shell {
    position: relative;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: min(720px, calc(100vh - 220px));
    overflow: hidden;
    border: 1px solid rgba(220, 227, 237, 0.95);
    border-radius: 10px;
    background: #ffffff;
    box-shadow:
        0 34px 80px rgba(24, 35, 50, 0.22),
        0 14px 34px rgba(24, 35, 50, 0.12),
        0 2px 8px rgba(16, 24, 40, 0.08);
    isolation: isolate;
    animation: promoSystemEnter 0.75s ease 0.18s both;
}

.promo-system-mobile-preview {
    display: none;
}

.promo-system-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.promo-floating-badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(220, 227, 237, 0.84);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #182332;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(24, 35, 50, 0.14);
    backdrop-filter: blur(10px);
    animation: promoFloatBadge 5.5s ease-in-out infinite;
}

.promo-floating-badge i {
    color: #176b87;
}

.promo-floating-badge-one {
    top: 1.1rem;
    right: 1.2rem;
}

.promo-floating-badge-two {
    bottom: 1.2rem;
    left: 14.5rem;
    animation-delay: -2.7s;
}

.promo-system-sidebar {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    background: #182332;
    color: #ffffff;
}

.promo-system-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.promo-sidebar-divider {
    height: 1px;
    margin: 0.9rem 0.2rem 0.55rem;
    background: rgba(255, 255, 255, 0.14);
}

.promo-sidebar-label {
    margin: 0 0.25rem 0.25rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.promo-module {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    text-align: left;
    transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.promo-module:hover,
.promo-module.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.promo-module:hover {
    transform: translateX(2px);
}

.promo-specific-module {
    color: rgba(255, 255, 255, 0.7);
}

.promo-system-main {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 1rem;
    background: #f8fafc;
}

.promo-system-topbar,
.promo-panel-header,
.promo-contact,
.promo-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-system-topbar h2,
.promo-panel-header h3,
.promo-feature h3 {
    margin: 0;
    color: #182332;
    letter-spacing: 0;
}

.promo-system-topbar .badge {
    position: relative;
    overflow: visible;
}

.promo-system-topbar .badge::after {
    content: "";
    position: absolute;
    inset: -0.35rem;
    border: 1px solid rgba(47, 179, 68, 0.28);
    border-radius: 999px;
    animation: promoStatusPulse 2.2s ease-out infinite;
}

.promo-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.promo-kpi,
.promo-panel,
.promo-feature,
.promo-contact {
    position: relative;
    overflow: hidden;
    border: 1px solid #dce3ed;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-kpi {
    min-width: 0;
    height: 100%;
    border-color: #dce3ed;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-kpi .card-body {
    min-height: 118px;
    padding: 1rem;
}

.promo-kpi .avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.promo-unit-dashboard-kpi {
    height: 100%;
    border-color: #dce3ed;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-unit-dashboard-kpi .card-body {
    min-height: 118px;
    padding: 1rem;
}

.promo-unit-dashboard-kpi .avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.promo-kpi > strong {
    display: block;
    margin-top: 0.25rem;
    color: #182332;
    font-size: 1.25rem;
}

.promo-kpi > span {
    color: #64748b;
    font-size: 0.8rem;
}

.promo-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 0.75rem;
}

.promo-workspace.is-wide-demo {
    grid-template-columns: minmax(0, 1fr);
}

.promo-workspace.is-wide-demo > .promo-panel:not(.promo-panel-main) {
    display: none;
}

.promo-panel {
    min-width: 0;
    overflow: hidden;
}

#demo-content.is-switching {
    animation: promoContentSwitch 0.34s ease both;
}

.promo-panel-header {
    min-height: 58px;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #dce3ed;
}

.promo-panel-main {
    min-height: 390px;
}

.promo-panel-main.is-dashboard-main {
    min-height: auto;
}

.promo-panel-main.is-config-main > .promo-panel-header {
    display: none;
}

#demo-extra-content {
    min-width: 0;
}

#demo-extra-content:empty {
    display: none;
}

.promo-demo-table {
    margin-bottom: 0;
}

.promo-demo-table th,
.promo-demo-table td {
    white-space: nowrap;
}

.promo-config-demo {
    min-height: 390px;
}

.promo-config-tabs-header {
    overflow-x: auto;
    padding: 0.75rem 1rem 0;
    scrollbar-width: thin;
}

.promo-config-tabs {
    flex-wrap: nowrap;
    min-width: max-content;
}

.promo-config-tabs .nav-link {
    white-space: nowrap;
}

.promo-config-content {
    padding: 1rem;
}

.promo-activity {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
}

.promo-activity-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.promo-activity-item strong,
.promo-activity-item small {
    display: block;
}

.promo-activity-item small {
    color: #64748b;
}

.promo-unit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1rem;
}

.promo-unit-card {
    display: block;
    min-width: 0;
    min-height: 210px;
    padding: 0;
    border: 1px solid #dce3ed;
    border-radius: 8px;
    background: #ffffff;
    color: inherit;
    text-align: left;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.promo-unit-card .card-body {
    min-height: 210px;
    padding: 1rem;
}

.promo-unit-card .avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.promo-unit-card:hover {
    border-color: #176b87;
    box-shadow: 0 8px 24px rgba(24, 35, 50, 0.12);
    transform: translateY(-1px);
}

.promo-unit-heading {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dce3ed;
    background: #ffffff;
}

.promo-unit-heading strong {
    color: #182332;
    font-size: 1.2rem;
}

.promo-unit-chart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1rem;
    padding: 1rem;
}

.promo-chart {
    min-height: 300px;
}

.promo-unit-tables {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}

.promo-calendar-demo {
    padding: 1rem;
}

.promo-calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.promo-calendar-toolbar strong {
    color: #182332;
    font-size: 1.2rem;
}

.promo-calendar-weekdays,
.promo-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.promo-calendar-weekdays {
    overflow: hidden;
    border: 1px solid #dce3ed;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.promo-calendar-weekdays div {
    padding: 0.55rem;
}

.promo-calendar-grid {
    gap: 1px;
    overflow: hidden;
    border: 1px solid #dce3ed;
    border-radius: 0 0 8px 8px;
    background: #dce3ed;
}

.promo-calendar-day {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 96px;
    padding: 0.5rem;
    border: 0;
    background: #ffffff;
    color: #182332;
    text-align: left;
}

.promo-calendar-day.is-muted {
    background: #f8fafc;
}

.promo-calendar-day.has-events {
    cursor: pointer;
}

.promo-calendar-day.has-events:hover,
.promo-calendar-day.is-selected {
    box-shadow: inset 0 0 0 2px rgba(23, 107, 135, 0.22);
}

.promo-calendar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 999px;
    font-weight: 800;
}

.promo-calendar-events {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.promo-calendar-event {
    display: block;
    overflow: hidden;
    padding: 0.34rem 0.45rem;
    border: 1px solid color-mix(in srgb, var(--event-color) 18%, #dce3ed);
    border-left: 3px solid var(--event-color);
    border-radius: 7px;
    background: color-mix(in srgb, var(--event-color) 8%, #ffffff);
    color: #1f2937;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.25;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-calendar-event small {
    display: block;
    overflow: hidden;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 400;
    text-overflow: ellipsis;
}

.promo-calendar-detail {
    margin-top: 0.85rem;
    padding: 0.85rem;
    border: 1px solid #dce3ed;
    border-radius: 8px;
    background: #f8fafc;
}

.promo-calendar-detail strong {
    display: block;
    color: #182332;
}

.promo-calendar-detail p {
    margin: 0.35rem 0 0;
    color: #64748b;
}

.promo-calendar-detail-item {
    margin-top: 0.55rem;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-reports-demo {
    display: grid;
    gap: 1.1rem;
    padding: 1rem;
}

.promo-report-section {
    display: grid;
    gap: 0.85rem;
}

.promo-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-report-header h3 {
    margin: 0;
    color: #182332;
    font-size: 1.1rem;
}

.promo-report-kpis,
.promo-report-chart-grid,
.promo-report-table-grid {
    display: grid;
    gap: 0.85rem;
}

.promo-report-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promo-report-kpi {
    height: 100%;
    border-color: #dce3ed;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-report-kpi .card-body {
    min-height: 118px;
    padding: 1rem;
}

.promo-report-kpi .avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.promo-report-chart-grid,
.promo-report-table-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promo-report-chart {
    min-height: 300px;
    padding: 0.75rem;
}

.promo-finance-demo,
.promo-flow-demo {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.promo-finance-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.promo-flow-kpis {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
}

.promo-finance-card {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 1rem;
    border: 1px solid #dce3ed;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-dashboard-demo {
    display: grid;
    gap: .9rem;
    padding: 1rem 1rem .8rem;
}

.promo-dashboard-units-panel {
    margin: 0;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}

.promo-dashboard-bars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.promo-dashboard-heading,
.promo-dashboard-block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.promo-dashboard-heading h3,
.promo-dashboard-block-title h3 {
    margin: 0;
}

.promo-dashboard-metric {
    min-width: 0;
    padding: .85rem 1rem;
    border: 1px solid #dce3ed;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-dashboard-progress {
    height: .65rem;
    border-radius: 999px;
}

.promo-dashboard-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 1.25rem;
    align-items: start;
}

.promo-dashboard-split > .promo-dashboard-block:only-child {
    grid-column: 1 / -1;
}

.promo-dashboard-block {
    min-width: 0;
    display: grid;
    gap: .75rem;
    padding-top: 0;
}

.promo-dashboard-block .datagrid {
    padding: .1rem 0;
    row-gap: .75rem;
}

.promo-dashboard-fiscal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promo-flow-kpi {
    height: 100%;
    border-color: #dce3ed;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.promo-flow-kpi .card-body {
    min-height: 118px;
    padding: 1rem;
}

.promo-flow-kpi .avatar {
    width: 2.5rem;
    height: 2.5rem;
}

.promo-flow-concept {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.promo-flow-concept-positivo {
    color: #18794e;
    background: #dff8e8;
}

.promo-flow-concept-negativo {
    color: #15599e;
    background: #dcebff;
}

.promo-flow-concept-resultado {
    color: #8a5a00;
    background: #fff1c2;
}

.promo-form-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1rem;
}

.promo-form-accordion {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-0.25rem);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
}

.promo-form-accordion.is-open {
    max-height: 1600px;
    opacity: 1;
    transform: translateY(0);
}

.promo-field-sm {
    grid-column: span 2;
}

.promo-field-md {
    grid-column: span 3;
}

.promo-field-lg {
    grid-column: span 4;
}

.promo-form-wide {
    grid-column: span 4;
}

.promo-form-footer {
    padding: 0 1rem 1rem;
    text-align: right;
}

.promo-table-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dce3ed;
}

.promo-filter {
    max-width: 360px;
}

.promo-section {
    padding: 4rem 0;
}

.promo-section,
.promo-contact,
.promo-benefits,
.promo-feature,
.promo-section-heading {
    transform: translateY(18px);
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.promo-section.is-visible,
.promo-contact.is-visible,
.promo-benefits.is-visible,
.promo-feature.is-visible,
.promo-section-heading.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.promo-section-muted {
    background: rgba(255, 255, 255, 0.76);
    border-top: 1px solid #dce3ed;
    border-bottom: 1px solid #dce3ed;
    backdrop-filter: blur(8px);
}

.promo-section-heading {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.promo-pricing-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    max-width: none;
}

.promo-pricing-heading > div {
    max-width: 760px;
}

.promo-pricing-heading .btn {
    flex: 0 0 auto;
    margin-bottom: 0.35rem;
}

.promo-section-heading h2,
.promo-benefits h2,
.promo-contact h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.promo-feature {
    position: relative;
    overflow: hidden;
    padding: 1.15rem;
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.promo-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(23, 107, 135, 0.08), transparent 46%);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.promo-feature:hover {
    border-color: rgba(23, 107, 135, 0.35);
    box-shadow: 0 14px 34px rgba(24, 35, 50, 0.1);
    transform: translateY(-3px);
}

.promo-feature:hover::after {
    opacity: 1;
}

.promo-feature i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #e8f3f6;
    color: #176b87;
    font-size: 1.2rem;
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.promo-feature:hover i {
    background: #d7edf3;
    transform: translateY(-2px);
}

.promo-feature p {
    margin: 0.55rem 0 0;
    color: #536170;
}

.promo-plans-section {
    background: #f8fbff;
    border-top: 1px solid #dce3ed;
    border-bottom: 1px solid #dce3ed;
}

.promo-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.promo-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.25rem;
    border: 1px solid #dce3ed;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(24, 35, 50, 0.06);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.3s ease;
}

.promo-plan-card.is-featured {
    border-color: rgba(23, 107, 135, 0.42);
    box-shadow: 0 22px 52px rgba(24, 35, 50, 0.14);
    transform: translateY(-0.35rem);
}

.promo-plan-ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: #176b87;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
}

.promo-plan-header h3,
.promo-membership-card h3 {
    margin: 0.75rem 0 0.4rem;
    color: #182332;
}

.promo-membership-card > div:first-child h3 {
    font-size: 1.05rem;
    line-height: 1.25;
}

.promo-plan-header p,
.promo-membership-card p {
    margin: 0;
    color: #536170;
    line-height: 1.55;
}

.promo-membership-card > div:first-child p {
    font-size: 0.86rem;
    line-height: 1.45;
}

.promo-plan-price {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
    overflow: hidden;
    padding: 0.9rem 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.promo-plan-price::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -45%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(23, 107, 135, 0.16), transparent);
    transform: skewX(-18deg);
    opacity: 0;
}

.promo-plan-price span,
.promo-plan-price small {
    color: #64748b;
    font-weight: 700;
}

.promo-plan-price strong {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    color: #182332;
    font-size: 2rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.promo-price-currency,
.promo-price-value {
    display: inline-block;
    color: #176b87;
}

.promo-price-value {
    font-variant-numeric: tabular-nums;
}

.promo-plans-section.is-pricing-active .promo-plan-card {
    border-color: rgba(23, 107, 135, 0.18);
    box-shadow: 0 18px 42px rgba(24, 35, 50, 0.1);
}

.promo-plans-section.is-pricing-active .promo-plan-card:nth-child(1) {
    animation: promoPriceLift 0.58s ease both;
}

.promo-plans-section.is-pricing-active .promo-plan-card:nth-child(2) {
    animation: promoPriceLift 0.58s ease 0.1s both;
}

.promo-plans-section.is-pricing-active .promo-plan-card:nth-child(3) {
    animation: promoPriceLift 0.58s ease 0.2s both;
}

.promo-plans-section.is-pricing-active .promo-plan-price::after {
    animation: promoPriceSweep 1.15s ease both;
}

.promo-plans-section.is-pricing-active .promo-price-currency,
.promo-plans-section.is-pricing-active .promo-price-value {
    animation: promoPricePop 0.52s ease 0.7s both;
}

.promo-plan-card ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.promo-plan-card li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: #334155;
}

.promo-plan-card li i {
    color: #2fb344;
    font-size: 1.05rem;
}

.promo-plan-card li.is-no_disponible {
    color: #64748b;
}

.promo-plan-card li.is-no_disponible i {
    color: #d63939;
}

.promo-plan-card li.is-opcional i {
    color: #4299e1;
}

.promo-plan-card li .badge {
    margin-left: auto;
}

.promo-plan-card .btn {
    margin-top: auto;
}

.promo-membership-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
    padding: 1.25rem;
    border: 1px solid #dce3ed;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(24, 35, 50, 0.06);
}

.promo-membership-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: center;
    min-width: 0;
}

.promo-membership-window {
    min-width: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.promo-membership-window::-webkit-scrollbar {
    display: none;
}

.promo-membership-grid {
    display: flex;
    gap: 0.75rem;
}

.promo-membership-item {
    flex: 0 0 calc((100% - 3rem) / 5);
    scroll-snap-align: start;
    display: grid;
    align-content: start;
    min-width: 0;
    min-height: 178px;
    gap: 0.45rem;
    padding: 0.95rem;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    background: #f8fafc;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
}

.promo-membership-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid #dce3ed;
    border-radius: 999px;
    background: #ffffff;
    color: #176b87;
    box-shadow: 0 8px 18px rgba(24, 35, 50, 0.08);
    transition: color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.promo-membership-nav:hover {
    background: #e8f3f6;
    color: #0f5269;
    transform: translateY(-1px);
}

.promo-membership-nav:disabled {
    cursor: default;
    opacity: 0.35;
    transform: none;
}

.promo-plans-section.is-pricing-active .promo-membership-item {
    animation: promoMembershipIn 0.5s ease both;
}

.promo-plans-section.is-pricing-active .promo-membership-item:nth-child(1) {
    animation-delay: 0.2s;
}

.promo-plans-section.is-pricing-active .promo-membership-item:nth-child(2) {
    animation-delay: 0.28s;
}

.promo-plans-section.is-pricing-active .promo-membership-item:nth-child(3) {
    animation-delay: 0.36s;
}

.promo-plans-section.is-pricing-active .promo-membership-item:nth-child(4) {
    animation-delay: 0.44s;
}

.promo-plans-section.is-pricing-active .promo-membership-item:nth-child(5) {
    animation-delay: 0.52s;
}

.promo-plans-section.is-pricing-active .promo-membership-item:nth-child(n + 6) {
    animation-delay: 0.6s;
}

.promo-membership-item i {
    color: #176b87;
    font-size: 1.35rem;
}

.promo-membership-item span {
    color: #182332;
    font-weight: 800;
}

.promo-membership-item strong {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.42;
}

.promo-benefits {
    align-items: flex-start;
}

.promo-benefits > div:first-child,
.promo-benefit-list {
    flex: 1 1 0;
}

.promo-benefit-list {
    display: grid;
    gap: 0.75rem;
}

.promo-benefit-list div {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: #334155;
    font-weight: 600;
    padding: 0.75rem;
    border: 1px solid rgba(220, 227, 237, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-benefit-list div:hover {
    transform: translateX(3px);
    box-shadow: 0 10px 26px rgba(24, 35, 50, 0.08);
}

.promo-benefit-list i {
    color: #2fb344;
    font-size: 1.2rem;
}

.promo-contact {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 243, 246, 0.7));
    box-shadow: 0 16px 38px rgba(24, 35, 50, 0.1);
}

.promo-contact::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: 0;
    left: 45%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #176b87, #2fb344);
    animation: promoLineSweep 4.2s ease-in-out infinite;
}

.promo-contact-form {
    display: grid;
    width: min(420px, 100%);
    gap: 0.75rem;
}

.promo-contact-form .form-control {
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.promo-contact-form .form-control:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 0.25rem rgba(23, 107, 135, 0.12);
}

.promo-contact .btn-primary {
    position: relative;
    overflow: hidden;
}

.promo-footer {
    padding: 2rem 0;
    border-top: 1px solid #dce3ed;
    background: #ffffff;
}

.promo-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.promo-zpinat-link-footer {
    margin-top: 0.5rem;
}

.promo-zpinat-link-footer img {
    display: block;
    width: auto;
    height: 46px;
}

.promo-footer-copy {
    display: grid;
    gap: 0.25rem;
    max-width: 440px;
    color: #64748b;
    text-align: right;
}

.promo-footer-copy strong {
    color: #182332;
}

.promo-specific-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.promo-specific-modal.is-visible {
    pointer-events: auto;
    opacity: 1;
}

.promo-specific-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(6px);
}

.promo-specific-modal-dialog {
    position: relative;
    display: grid;
    justify-items: center;
    width: min(440px, 100%);
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(220, 227, 237, 0.9);
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.18s ease;
}

.promo-specific-modal.is-visible .promo-specific-modal-dialog {
    transform: translateY(0) scale(1);
}

.promo-specific-modal-dialog .btn-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
}

.promo-specific-modal-dialog h3 {
    margin: 0.25rem 0 0.5rem;
    color: #182332;
}

.promo-specific-modal-dialog p {
    margin: 0;
    color: #536170;
    line-height: 1.55;
}

.promo-system-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.promo-system-shell[data-demo-theme="dark"] {
    border-color: #26364a;
    background: #111c2b;
    color: #e5edf5;
    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.42),
        0 14px 34px rgba(0, 0, 0, 0.28);
}

.promo-system-shell[data-demo-theme="dark"] .promo-system-main,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-weekdays,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-day.is-muted {
    background: #0b1422;
}

.promo-system-shell[data-demo-theme="dark"] .promo-system-sidebar {
    background: #070d18;
}

.promo-system-shell[data-demo-theme="dark"] .promo-system-topbar h2,
.promo-system-shell[data-demo-theme="dark"] .promo-panel-header h3,
.promo-system-shell[data-demo-theme="dark"] .promo-report-header h3,
.promo-system-shell[data-demo-theme="dark"] .promo-unit-heading strong,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-toolbar strong,
.promo-system-shell[data-demo-theme="dark"] .promo-kpi > strong,
.promo-system-shell[data-demo-theme="dark"] .promo-report-kpi .h2 {
    color: #f8fafc;
}

.promo-system-shell[data-demo-theme="dark"] .text-secondary,
.promo-system-shell[data-demo-theme="dark"] .subheader,
.promo-system-shell[data-demo-theme="dark"] .promo-kpi > span,
.promo-system-shell[data-demo-theme="dark"] .promo-activity-item small {
    color: #9fb0c5 !important;
}

.promo-system-shell[data-demo-theme="dark"] .promo-kpi,
.promo-system-shell[data-demo-theme="dark"] .promo-panel,
.promo-system-shell[data-demo-theme="dark"] .promo-unit-card,
.promo-system-shell[data-demo-theme="dark"] .promo-unit-dashboard-kpi,
.promo-system-shell[data-demo-theme="dark"] .promo-finance-card,
.promo-system-shell[data-demo-theme="dark"] .promo-dashboard-metric,
.promo-system-shell[data-demo-theme="dark"] .promo-flow-kpi,
.promo-system-shell[data-demo-theme="dark"] .card {
    border-color: #26364a;
    background: #111c2b;
    color: #e5edf5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.promo-system-shell[data-demo-theme="dark"] .promo-dashboard-units-panel {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.promo-system-shell[data-demo-theme="dark"] .promo-panel-header,
.promo-system-shell[data-demo-theme="dark"] .promo-unit-heading,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-weekdays,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-grid,
.promo-system-shell[data-demo-theme="dark"] .promo-config-tabs-header {
    border-color: #26364a;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-tab:not(.active) {
    color: #9fb0c5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-tab.active {
    border-color: #26364a #26364a #111c2b;
    background: #111c2b;
    color: #a5f3fc;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-demo,
.promo-system-shell[data-demo-theme="dark"] .promo-config-tabs-header {
    background: #111c2b;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-tabs {
    border-color: #26364a !important;
    background: #111c2b !important;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content {
    background: #0b1422;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card-header,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card-footer,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .list-group-item,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .border {
    border-color: #26364a !important;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card-header,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card-footer,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .list-group-item {
    background: #111c2b;
    color: #e5edf5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card.bg-primary-lt {
    border-color: #28547d;
    background: linear-gradient(135deg, rgba(32, 107, 196, 0.2), rgba(17, 28, 43, 0.96)) !important;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .alert-info {
    border-color: #28547d;
    background: rgba(32, 107, 196, 0.14);
    color: #d9efff;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card-title,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content h2,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content h3,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content h4,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content strong,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .form-label,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .form-check-label {
    color: #f8fafc;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .card-subtitle,
.promo-system-shell[data-demo-theme="dark"] .promo-config-content .form-hint {
    color: #9fb0c5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .form-check-input {
    border-color: #49617e;
    background-color: #0b1422;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .form-check-input:checked {
    border-color: #38bdf8;
    background-color: #206bc4;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .form-check-input:disabled {
    opacity: 0.65;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .btn-outline-primary {
    border-color: #38bdf8;
    color: #a5f3fc;
}

.promo-system-shell[data-demo-theme="dark"] .promo-config-content .btn-outline-primary:hover {
    background: rgba(56, 189, 248, 0.14);
    color: #ffffff;
}

.promo-system-shell[data-demo-theme="dark"] .promo-unit-heading,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-day,
.promo-system-shell[data-demo-theme="dark"] .table,
.promo-system-shell[data-demo-theme="dark"] .datagrid {
    background: #111c2b;
    color: #e5edf5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-grid {
    background: #26364a;
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-detail {
    border-color: #26364a;
    background: #0b1422;
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-detail strong {
    color: #f8fafc;
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-detail p {
    color: #9fb0c5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-detail-item,
.promo-system-shell[data-demo-theme="dark"] .promo-calendar-event {
    background: #111c2b;
    color: #e5edf5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-event {
    border-color: var(--event-color);
    border-left-color: var(--event-color);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--event-color) 18%, transparent);
}

.promo-system-shell[data-demo-theme="dark"] .promo-calendar-event small {
    color: #9fb0c5;
}

.promo-system-shell[data-demo-theme="dark"] .promo-flow-concept {
    border: 1px solid transparent;
}

.promo-system-shell[data-demo-theme="dark"] .promo-flow-concept-positivo {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
}

.promo-system-shell[data-demo-theme="dark"] .promo-flow-concept-negativo {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.14);
    color: #93c5fd;
}

.promo-system-shell[data-demo-theme="dark"] .promo-flow-concept-resultado {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.14);
    color: #fdba74;
}

.promo-system-shell[data-demo-theme="dark"] .table th,
.promo-system-shell[data-demo-theme="dark"] .table td {
    border-color: #26364a;
    color: #e5edf5;
}

.promo-system-shell[data-demo-theme="dark"] .table thead,
.promo-system-shell[data-demo-theme="dark"] .table thead tr,
.promo-system-shell[data-demo-theme="dark"] .table thead th {
    background-color: #0b1422 !important;
    color: #9fb0c5 !important;
}

.promo-system-shell[data-demo-theme="dark"] .table tbody,
.promo-system-shell[data-demo-theme="dark"] .table tbody tr,
.promo-system-shell[data-demo-theme="dark"] .table tbody td {
    background-color: #111c2b !important;
}

.promo-system-shell[data-demo-theme="dark"] .table tbody tr:hover td {
    background-color: #142235 !important;
}

.promo-system-shell[data-demo-theme="dark"] .form-control,
.promo-system-shell[data-demo-theme="dark"] .form-select {
    border-color: #33465f;
    background-color: #0b1422;
    color: #e5edf5;
}

.promo-system-shell[data-demo-theme="dark"] .form-control::placeholder {
    color: #7d8fa7;
}

.promo-system-shell[data-demo-theme="dark"] .promo-theme-toggle {
    border-color: #38bdf8;
    color: #a5f3fc;
}

.promo-system-shell[data-demo-theme="dark"] .promo-theme-toggle:hover {
    background: rgba(56, 189, 248, 0.12);
    color: #ffffff;
}

.promo-system-shell[data-demo-theme="dark"] .apexcharts-text,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-legend-text,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-title-text,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-xaxis-label,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-yaxis-label {
    fill: #9fb0c5 !important;
    color: #9fb0c5 !important;
}

.promo-system-shell[data-demo-theme="dark"] .apexcharts-datalabel,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-data-labels text,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-pie-label {
    fill: #f8fafc !important;
    color: #f8fafc !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.promo-system-shell[data-demo-theme="dark"] .apexcharts-gridline {
    stroke: #26364a !important;
}

.promo-system-shell[data-demo-theme="dark"] .apexcharts-tooltip,
.promo-system-shell[data-demo-theme="dark"] .apexcharts-tooltip-title {
    border-color: #33465f !important;
    background: #0b1422 !important;
    color: #e5edf5 !important;
}

@keyframes promoDropIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes promoRiseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes promoShine {
    0%,
    58% {
        transform: translateX(-7rem) rotate(18deg);
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(18rem) rotate(18deg);
        opacity: 0;
    }
}

@keyframes promoLineSweep {
    0%,
    100% {
        transform: translateX(-28%);
        opacity: 0.35;
    }
    50% {
        transform: translateX(18%);
        opacity: 0.9;
    }
}

@keyframes promoSystemEnter {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes promoFloatBadge {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.55rem);
    }
}

@keyframes promoContentSwitch {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes promoStatusPulse {
    from {
        opacity: 0.7;
        transform: scale(0.92);
    }

    to {
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes promoPriceLift {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes promoPriceSweep {
    0% {
        left: -45%;
        opacity: 0;
    }

    18%,
    72% {
        opacity: 1;
    }

    100% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes promoPricePop {
    0% {
        transform: translateY(8px) scale(0.94);
    }

    64% {
        transform: translateY(-2px) scale(1.04);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes promoMembershipIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes promoGalleryEnter {
    from {
        opacity: 0;
        transform: translateX(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-header,
    .promo-copy-wide,
    .promo-system-shell,
    #demo-content,
    .promo-section,
    .promo-contact,
    .promo-benefits,
    .promo-feature,
    .promo-mobile-gallery-slide,
    .promo-section-heading,
    .promo-floating-badge,
    .promo-system-topbar .badge::after,
    .promo-actions .btn,
    .promo-feature,
    .promo-feature i,
    .promo-benefit-list div,
    .promo-copy .badge::after,
    .promo-actions .btn-primary::after,
    .promo-contact .btn-primary::after,
    .promo-contact::after,
    .promo-plan-card,
    .promo-plan-price::after,
    .promo-price-value,
    .promo-membership-item,
    .promo-system-mobile-preview,
    .promo-system-mobile-preview-toolbar,
    .promo-mobile-gallery-stage,
    .promo-system-mobile-preview figcaption,
    .promo-mobile-gallery-note,
    .promo-system-mobile-preview.is-theme-changing .promo-mobile-gallery-slide.is-active img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .promo-hero-brand img {
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 1199.98px) {
    .promo-hero-grid,
    .promo-workspace {
        grid-template-columns: 1fr;
    }

    .promo-copy-wide {
        grid-template-columns: 1fr;
    }

    .promo-copy-wide .promo-actions,
    .promo-copy-wide .promo-proof {
        justify-content: flex-start;
    }

    .promo-benefits,
    .promo-contact {
        display: grid;
        grid-template-columns: 1fr;
    }

    .promo-header-inner {
        flex-wrap: wrap;
    }

    .promo-system-shell {
        min-height: auto;
    }

    .promo-floating-badge {
        display: none;
    }

    .promo-kpis,
    .promo-module-grid,
    .promo-plan-grid,
    .promo-unit-grid,
    .promo-unit-tables,
    .promo-unit-chart-grid,
    .promo-report-kpis,
    .promo-report-chart-grid,
    .promo-report-table-grid,
    .promo-finance-cards,
    .promo-flow-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-form-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .promo-membership-card {
        grid-template-columns: 1fr;
    }

    .promo-membership-item {
        flex-basis: calc((100% - 0.75rem) / 2);
    }

    .promo-field-sm,
    .promo-field-md {
        grid-column: span 3;
    }

    .promo-field-lg,
    .promo-form-wide {
        grid-column: span 6;
    }

    .promo-unit-chart-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .promo-copy-wide .promo-proof {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.3rem;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .promo-proof span {
        flex: 0 1 auto;
        min-width: 0;
        padding-right: 0.4rem;
    }

    .promo-proof strong {
        min-width: 0;
        font-size: 0.75rem;
    }

    .promo-pricing-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-pricing-heading .btn {
        width: 100%;
    }

    .promo-page {
        color: #182332;
    }

    .promo-header-inner {
        flex-wrap: wrap;
        padding: 0.75rem;
    }

    .promo-brand {
        gap: 0.65rem;
        font-size: 1.08rem;
    }

    .promo-logo-mark {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .promo-header-actions {
        width: 100%;
        justify-content: space-between;
        order: 4;
    }

    .promo-zpinat-link-header img {
        height: 32px;
    }

    .promo-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .promo-nav a {
        color: #334155;
        font-weight: 700;
    }

    .promo-hero {
        padding-top: 1rem;
    }

    .promo-hero-brand {
        width: min(202px, 51vw);
        margin: 0 auto 1.5rem;
    }

    .promo-copy h1 {
        background: none;
        color: #102033;
        -webkit-text-fill-color: #102033;
        font-weight: 900;
    }

    .promo-section-heading h2,
    .promo-benefits h2,
    .promo-contact h2 {
        color: #102033;
        font-weight: 900;
    }

    .promo-copy p,
    .promo-contact p,
    .promo-feature p,
    .promo-plan-header p,
    .promo-membership-card p,
    .promo-benefit-list div {
        color: #334155;
        font-weight: 500;
    }

    .subheader {
        color: #334155;
        font-weight: 800;
    }

    .promo-system-main .subheader,
    .promo-system-sidebar .promo-sidebar-label {
        color: #536170;
    }

    .promo-module {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 700;
    }

    .promo-system-shell {
        display: none;
    }

    .promo-system-mobile-preview {
        display: block;
        overflow: hidden;
        margin: 0;
        border: 1px solid rgba(24, 35, 50, 0.14);
        border-radius: 1rem;
        background: #ffffff;
        box-shadow: 0 18px 44px rgba(24, 35, 50, 0.14);
        transition: background-color 0.35s ease, border-color 0.35s ease;
    }

    .promo-system-mobile-preview-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(24, 35, 50, 0.1);
        transition: border-color 0.35s ease;
    }

    .promo-system-mobile-preview-toolbar > strong {
        color: #182332;
        font-size: 0.82rem;
    }

    .promo-mobile-gallery-stage {
        display: grid;
        aspect-ratio: 1.4;
        overflow: hidden;
        background: #f1f5f9;
        touch-action: pan-y;
        transition: background-color 0.35s ease;
    }

    .promo-mobile-gallery-slide {
        display: none !important;
        width: 100%;
        height: 100%;
    }

    .promo-mobile-gallery-slide.is-active {
        display: block !important;
        animation: promoGalleryEnter 0.25s ease both;
    }

    .promo-mobile-gallery-slide img {
        width: 100%;
        height: 100% !important;
        object-fit: contain;
    }

    .promo-system-mobile-preview.is-theme-changing .promo-mobile-gallery-slide.is-active img {
        animation: promoGalleryThemeFade 0.4s ease both;
    }

    .promo-system-mobile-preview.is-dark {
        border-color: #26364a;
        background: #0b1422;
    }

    .promo-system-mobile-preview.is-dark .promo-system-mobile-preview-toolbar {
        border-color: #26364a;
    }

    .promo-system-mobile-preview.is-dark .promo-system-mobile-preview-toolbar > strong,
    .promo-system-mobile-preview.is-dark .promo-mobile-gallery-status,
    .promo-system-mobile-preview.is-dark figcaption,
    .promo-system-mobile-preview.is-dark .promo-mobile-gallery-note {
        color: #e5edf5;
    }

    .promo-system-mobile-preview.is-dark .promo-mobile-gallery-stage {
        background: #081321;
    }

    .promo-mobile-gallery-controls {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem 0;
    }

    .promo-mobile-gallery-controls > div {
        min-width: 0;
    }

    .promo-mobile-gallery-status {
        overflow: hidden;
        color: #334155;
        font-size: 0.75rem;
        font-weight: 800;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .promo-mobile-gallery-dots {
        display: flex;
        justify-content: center;
        gap: 0.3rem;
        margin-top: 0.45rem;
    }

    .promo-mobile-gallery-dots button {
        width: 0.45rem;
        height: 0.45rem;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: #cbd5e1;
        transition: width 0.2s ease, background-color 0.2s ease;
    }

    .promo-mobile-gallery-dots button.is-active {
        width: 1.1rem;
        background: #176b87;
    }

    .promo-system-mobile-preview a,
    .promo-system-mobile-preview img {
        display: block;
        width: 100%;
    }

    .promo-system-mobile-preview img {
        height: auto;
    }

    .promo-system-mobile-preview figcaption {
        padding: 0.75rem 1rem 0.35rem;
        color: #536170;
        font-size: 0.8rem;
        font-weight: 700;
        text-align: center;
        transition: color 0.35s ease;
    }

    .promo-mobile-gallery-note {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.4rem;
        margin: 0;
        padding: 0 1rem 0.85rem;
        color: #64748b;
        font-size: 0.72rem;
        line-height: 1.4;
        text-align: left;
        transition: color 0.35s ease;
    }

    .promo-mobile-gallery-note i {
        flex: 0 0 auto;
        margin-top: 0.1rem;
        font-size: 0.9rem;
    }

    @keyframes promoGalleryThemeFade {
        from {
            opacity: 0.35;
        }
        to {
            opacity: 1;
        }
    }

    .promo-system-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-system-logo {
        grid-column: 1 / -1;
    }

    .promo-kpis,
    .promo-module-grid,
    .promo-plan-grid,
    .promo-unit-grid,
    .promo-unit-tables,
    .promo-report-kpis,
    .promo-report-chart-grid,
    .promo-report-table-grid,
    .promo-finance-cards,
    .promo-dashboard-bars,
    .promo-dashboard-split,
    .promo-dashboard-fiscal-grid,
    .promo-flow-kpis,
    .promo-form-grid {
        grid-template-columns: 1fr;
    }

    .promo-plan-card.is-featured {
        transform: none;
    }

    .promo-membership-carousel {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .promo-membership-item {
        flex-basis: 100%;
    }

    .promo-form-wide {
        grid-column: auto;
    }

    .promo-field-sm,
    .promo-field-md,
    .promo-field-lg {
        grid-column: auto;
    }

    .promo-table-tools,
    .promo-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-filter {
        max-width: none;
        width: 100%;
    }

    .promo-unit-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-calendar-weekdays,
    .promo-calendar-grid {
        min-width: 760px;
    }

    .promo-calendar-demo {
        overflow-x: auto;
    }

    .promo-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-footer-copy {
        text-align: left;
    }
}
