:root {
    --primary: #C0392B;
    --primary-dark: #9f2f25;
    --primary-soft: #fff1ef;
    --text-main: #111827;
    --text-muted: #64748b;
    --border-soft: #e5e7eb;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text-main);
    background: #ffffff;
}

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

.provider-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #B92F25 0%, #D3342A 100%);
    box-shadow: 0 10px 28px rgba(128, 28, 22, 0.18);
}

.provider-header-inner {
    width: min(1180px, calc(100% - 48px));
    height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.provider-brand {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.provider-brand img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.provider-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.provider-nav a {
    opacity: 0.95;
    transition: opacity .18s ease, transform .18s ease;
}

.provider-nav a:hover,
.provider-nav a.active {
    opacity: 1;
    transform: translateY(-1px);
}

.provider-demo-link {
    min-width: 138px;
    height: 38px;
    padding: 0 20px;
    border-radius: 12px;
    background: #fff;
    color: var(--primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(86, 21, 17, 0.16);
}

.public-alert {
    width: min(1180px, calc(100% - 48px));
    margin: 18px auto 0;
    padding: 12px 16px;
    border-radius: 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-weight: 800;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 42%, rgba(255,255,255,0.62) 100%),
        radial-gradient(circle at 80% 40%, rgba(192, 57, 43, 0.16), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #fff 48%, #f4f6f8 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.78) 52%, rgba(255,255,255,0.10) 100%),
        url('/img/info_publi_1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.13;
    pointer-events: none;
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 48px));
    min-height: 405px;
    margin: 0 auto;
    padding: 44px 0 46px;
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    align-items: center;
    gap: 42px;
}

.hero-eyebrow,
.simple-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 17px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.hero-copy h1 {
    margin: 20px 0 16px;
    max-width: 560px;
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    color: #111827;
}

.hero-copy h1 strong {
    color: var(--primary);
}

.hero-copy p {
    max-width: 560px;
    margin: 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.primary-action,
.secondary-action {
    height: 48px;
    padding: 0 24px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-action {
    background: linear-gradient(135deg, var(--primary) 0%, #D6352B 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(192, 57, 43, 0.24);
}

.secondary-action {
    background: rgba(255,255,255,0.74);
    color: var(--primary);
    border: 2px solid rgba(192, 57, 43, 0.80);
}

.primary-action:hover,
.secondary-action:hover {
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    min-height: 330px;
}

.dashboard-card {
    margin-left: 178px;
    width: min(500px, calc(100vw - 72px));
    min-height: 318px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.48);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.20);
    display: grid;
    grid-template-columns: 38px 1fr;
    overflow: hidden;
}

.dashboard-sidebar {
    background: #111827;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.dashboard-sidebar span {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.45);
}

.dashboard-main {
    padding: 17px;
}

.dashboard-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
}

.dashboard-topline strong {
    font-size: 13px;
    font-weight: 900;
}

.dashboard-topline button {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: 1px solid var(--border-soft);
    background: #fff;
    cursor: pointer;
}

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

.kpi-card {
    min-height: 74px;
    padding: 10px;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    background: #fff;
}

.kpi-card span,
.kpi-card small {
    display: block;
    font-size: 9px;
    color: #64748b;
    font-weight: 700;
}

.kpi-card strong {
    display: block;
    margin: 7px 0 3px;
    font-size: 22px;
    line-height: 1;
}

.kpi-card small {
    color: #16a34a;
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 10px;
}

.orders-panel,
.products-panel,
.chart-panel {
    min-height: 170px;
    padding: 11px;
    border-radius: 11px;
    border: 1px solid #edf2f7;
    background: #fff;
}

.orders-panel h3,
.products-panel h3,
.chart-panel h3 {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 900;
}

.order-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 9px;
}

.product-bar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 9px;
}

.product-bar i {
    position: absolute;
    left: 0;
    right: 46px;
    bottom: -3px;
    height: 4px;
    border-radius: 999px;
    background: var(--primary);
}

.chart-line {
    position: relative;
    height: 105px;
    border-left: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: repeating-linear-gradient(to top, transparent, transparent 24px, #f1f5f9 25px);
}

.chart-line::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 6%;
    top: 34%;
    height: 45%;
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    transform: skewY(-12deg);
}

.chart-line span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(192,57,43,0.10);
}

.chart-months {
    display: flex;
    justify-content: space-between;
    margin-top: 9px;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    z-index: 2;
    width: 168px;
    min-height: 70px;
    padding: 13px 13px;
    border-radius: 13px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(226,232,240,0.96);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.11);
    display: flex;
    gap: 11px;
    align-items: center;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 11px;
    font-weight: 900;
}

.floating-card small {
    margin-top: 4px;
    font-size: 9px;
    color: #475569;
    line-height: 1.35;
}

.card-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border-radius: 12px;
    background: var(--primary-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-one { top: 0; left: 0; }
.card-two { top: 88px; left: 0; }
.card-three { top: 194px; left: 0; }
.card-four { top: 274px; left: 0; background: #edfff8; }

.hero-badges {
    margin: 15px 0 0 245px;
    display: flex;
    gap: 12px;
}

.hero-badges span {
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid rgba(192,57,43,0.20);
    background: #fff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.process-section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 26px 0 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-card {
    position: relative;
    min-height: 188px;
    padding: 23px 22px;
    border: 1px solid #edf2f7;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15,23,42,0.055);
}

.process-number {
    position: absolute;
    top: 20px;
    left: 78px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.process-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.process-card h2 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.25;
}

.process-card p {
    margin: 0 0 18px;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #111827;
    font-size: 10px;
    font-weight: 700;
}

.process-flow b {
    color: var(--primary);
}

.benefits-strip {
    width: min(1180px, calc(100% - 48px));
    margin: 12px auto 0;
    padding: 19px 20px;
    border-radius: 18px;
    background: linear-gradient(90deg, #fff7f6 0%, #fff 100%);
    border: 1px solid #f4dfdc;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.benefits-strip div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefits-strip strong {
    color: #111827;
    font-size: 13px;
    line-height: 1.25;
}

.benefits-strip span {
    color: #475569;
    font-size: 11px;
    line-height: 1.35;
}

.trust-section {
    width: min(1180px, calc(100% - 48px));
    margin: 22px auto 32px;
    text-align: center;
}

.trust-section strong {
    display: block;
    margin-bottom: 16px;
    color: #475569;
    font-size: 14px;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.provider-footer {
    border-top: 1px solid #edf2f7;
    background: #fff;
}

.provider-footer-inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #64748b;
    font-size: 13px;
}

.provider-footer-inner div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.provider-footer-inner strong {
    color: #111827;
}

.provider-footer-links {
    display: flex;
    gap: 18px;
    font-weight: 800;
}

.simple-page {
    min-height: calc(100vh - 140px);
    padding: 70px 24px;
    background:
        radial-gradient(circle at top left, rgba(192,57,43,0.14), transparent 32%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.simple-page section {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 46px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #edf2f7;
    box-shadow: var(--shadow-soft);
}

.simple-page h1 {
    margin: 22px 0 12px;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.04em;
}

.simple-page p {
    margin: 0;
    max-width: 760px;
    color: #475569;
    font-size: 18px;
    line-height: 1.65;
}

@media (max-width: 1080px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        margin-left: 170px;
    }

    .process-section,
    .benefits-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .provider-header-inner {
        width: calc(100% - 28px);
        height: auto;
        padding: 12px 0;
        align-items: flex-start;
    }

    .provider-brand {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
    }

    .provider-nav {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px 16px;
        font-size: 12px;
    }

    .provider-demo-link {
        min-width: auto;
        height: 34px;
        padding: 0 14px;
    }

    .hero-content,
    .process-section,
    .benefits-strip,
    .trust-section,
    .provider-footer-inner {
        width: calc(100% - 28px);
    }

    .hero-content {
        padding-top: 32px;
        gap: 26px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .floating-card {
        position: static;
        width: 100%;
    }

    .dashboard-card {
        order: 5;
        width: 100%;
        margin-left: 0;
        grid-template-columns: 30px 1fr;
    }

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

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

    .hero-badges {
        order: 6;
        margin: 0;
        flex-wrap: wrap;
    }

    .process-section,
    .benefits-strip {
        grid-template-columns: 1fr;
    }

    .provider-footer-inner {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .simple-page section {
        padding: 30px 22px;
    }
}