:root {
    --ivp-blue: #005dcc;
    --ivp-orange: #ff5b12;
    --ivp-green: #21a83b;
    --ivp-ink: #162033;
    --ivp-muted: #667085;
    --ivp-line: #e7edf5;
    --ivp-soft: #f5f8fc;
}

body {
    margin: 0;
    color: var(--ivp-ink);
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--ivp-line);
}

.public-nav {
    padding: 14px 0;
}

.navbar-brand img {
    width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.public-nav .nav-link {
    color: var(--ivp-ink);
    font-weight: 700;
    padding: 10px 14px !important;
}

.public-nav .nav-link.active,
.public-nav .nav-link:hover {
    color: var(--ivp-blue);
}

.navbar-toggler {
    border: 0;
    color: var(--ivp-blue);
}

.public-btn {
    border-radius: 6px;
    font-weight: 800;
    padding: 10px 18px;
}

.public-btn-primary {
    background: var(--ivp-orange);
    border-color: var(--ivp-orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 91, 18, .22);
}

.public-btn-primary:hover {
    background: #e94d09;
    border-color: #e94d09;
    color: #fff;
}

.public-btn-light,
.public-btn-outline {
    background: #fff;
    border: 1px solid var(--ivp-line);
    color: var(--ivp-blue);
}

.public-hero {
    padding: 92px 0 70px;
    background:
        linear-gradient(120deg, rgba(0, 93, 204, .10), rgba(255, 91, 18, .11)),
        #f8fbff;
    border-bottom: 1px solid var(--ivp-line);
}

.public-page-hero {
    padding: 74px 0 58px;
}

.hero-grid,
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    color: var(--ivp-blue);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.public-hero h1 {
    max-width: 760px;
    font-size: 54px;
    line-height: 1.02;
    font-weight: 900;
    margin: 0 0 18px;
}

.public-hero p,
.section-heading p,
.content-panel p {
    color: var(--ivp-muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-dashboard,
.hero-panel,
.content-panel,
.contact-form,
.pricing-card {
    background: #fff;
    border: 1px solid var(--ivp-line);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(22, 32, 51, .08);
}

.hero-dashboard {
    padding: 28px;
}

.dashboard-top {
    height: 12px;
    width: 120px;
    background: linear-gradient(90deg, var(--ivp-blue), var(--ivp-orange));
    border-radius: 999px;
    margin-bottom: 22px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ivp-line);
    font-weight: 800;
}

.metric-row span {
    color: var(--ivp-muted);
}

.dashboard-bars {
    display: grid;
    grid-template-columns: 1fr 1.4fr .8fr;
    gap: 12px;
    align-items: end;
    height: 116px;
    margin-top: 24px;
}

.dashboard-bars span {
    display: block;
    background: var(--ivp-blue);
    border-radius: 6px 6px 0 0;
}

.dashboard-bars span:nth-child(1) { height: 52%; background: var(--ivp-green); }
.dashboard-bars span:nth-child(2) { height: 86%; }
.dashboard-bars span:nth-child(3) { height: 68%; background: var(--ivp-orange); }

.hero-panel {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.signal-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-radius: 8px;
    background: var(--ivp-soft);
}

.signal-card span {
    color: var(--ivp-muted);
    font-weight: 700;
}

.public-section {
    padding: 72px 0;
}

.public-band {
    background: var(--ivp-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.content-panel h2,
.split-grid h2 {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 14px;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    border: 1px solid var(--ivp-line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    min-height: 145px;
}

.feature-card i {
    color: var(--ivp-green);
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-list div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--ivp-line);
    border-radius: 8px;
}

.process-list strong {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ivp-blue);
    color: #fff;
}

.content-panel,
.contact-form,
.pricing-card {
    padding: 30px;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-type {
    color: var(--ivp-blue);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.pricing-card h2 {
    font-size: 26px;
    font-weight: 900;
    margin: 12px 0;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: var(--ivp-orange);
    margin-bottom: 12px;
}

.pricing-card ul,
.public-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card li,
.public-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--ivp-line);
    color: var(--ivp-muted);
}

.contact-form label {
    display: block;
    color: var(--ivp-ink);
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--ivp-line);
    border-radius: 6px;
    padding: 12px 14px;
}

.site-footer {
    background: #111827;
    color: #d4d9e2;
    padding: 54px 0 24px;
}

.footer-logo {
    width: 180px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 16px;
}

.site-footer h6 {
    color: #fff;
    font-weight: 900;
}

.site-footer a {
    display: block;
    color: #d4d9e2;
    margin: 8px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 34px;
    padding-top: 20px;
    color: #aab2c0;
}

@media (max-width: 991px) {
    .hero-grid,
    .split-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .public-hero h1 {
        font-size: 42px;
    }

    .public-nav .nav-item {
        width: 100%;
        margin: 4px 0 !important;
    }
}

@media (max-width: 575px) {
    .public-hero {
        padding: 58px 0 46px;
    }

    .public-hero h1 {
        font-size: 34px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .navbar-brand img {
        width: 155px;
    }
}
