/* =========================================================
   BUNDIVO DYNAMIC CONTENT PAGE
   Full production stylesheet
   ========================================================= */

:root {
    --bvc-navy: #10253f;
    --bvc-navy-mid: #173554;
    --bvc-navy-dark: #0f172a;
    --bvc-blue: #2f6fed;
    --bvc-blue-dark: #2459c7;
    --bvc-blue-soft: #eef4ff;
    --bvc-surface: #ffffff;
    --bvc-background: #f5f7fb;
    --bvc-text: #44556b;
    --bvc-muted: #718096;
    --bvc-border: #d9e1ec;
    --bvc-border-soft: #e8edf5;
    --bvc-success: #218653;
    --bvc-danger: #c53030;
    --bvc-warning: #d97706;
    --bvc-shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.06);
    --bvc-shadow-md: 0 22px 65px rgba(16, 37, 63, 0.10);
    --bvc-shadow-lg: 0 34px 90px rgba(16, 37, 63, 0.22);
}

.bv-content-page {
    overflow: hidden;
    background: var(--bvc-background);
    color: var(--bvc-navy-dark);
    font-family: "DM Sans", Arial, sans-serif;
}

.bv-content-page *,
.bv-content-page *::before,
.bv-content-page *::after {
    box-sizing: border-box;
}

.bv-content-page h1,
.bv-content-page h2,
.bv-content-page h3,
.bv-content-page p {
    margin-top: 0;
}

.bv-content-page h1,
.bv-content-page h2,
.bv-content-page h3 {
    color: var(--bvc-navy);
    font-family: "Playfair Display", Georgia, serif;
}

.bv-content-page a {
    text-decoration: none;
}

.bv-content-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* Breadcrumb */

.bv-content-breadcrumb {
    border-bottom: 1px solid var(--bvc-border-soft);
    background: #ffffff;
}

.bv-content-breadcrumb ol {
    min-height: 52px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    list-style: none;
    color: var(--bvc-muted);
    font-size: 12px;
}

.bv-content-breadcrumb li {
    min-width: 0;
}

.bv-content-breadcrumb li:last-child {
    overflow: hidden;
    color: var(--bvc-navy);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bv-content-breadcrumb a {
    color: var(--bvc-blue);
    font-weight: 800;
}

.bv-content-breadcrumb a:hover {
    text-decoration: underline;
}

/* Light hero, aligned with the index page */

.bv-content-hero {
    position: relative;
    isolation: isolate;
    padding: 92px 0 88px;
    overflow: hidden;
    border-bottom: 1px solid var(--bvc-border);
    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(47, 111, 237, 0.12),
            transparent 31%
        ),
        #ffffff;
    color: var(--bvc-navy);
}

.bv-content-hero-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.42;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(16, 37, 63, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(16, 37, 63, 0.025) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
}

.bv-content-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, 0.92fr);
    gap: 64px;
    align-items: center;
}

.bv-content-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--bvc-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.bv-content-hero h1 {
    max-width: 760px;
    margin-bottom: 23px;
    color: var(--bvc-navy);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.01;
    letter-spacing: -0.052em;
}

.bv-content-hero-text,
.bv-content-hero-text p,
.bv-content-hero-text li,
.bv-content-hero-text span,
.bv-content-hero-text strong,
.bv-content-hero-text em,
.bv-content-hero-text a {
    color: var(--bvc-text) !important;
}

.bv-content-hero-text {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
}

.bv-content-hero-text p:last-child {
    margin-bottom: 0;
}

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

.bv-content-button {
    min-height: 52px;
    padding: 14px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bv-content-button:hover {
    transform: translateY(-1px);
}

.bv-content-button-primary {
    background: var(--bvc-blue);
    color: #ffffff;
    box-shadow: 0 14px 27px rgba(47, 111, 237, 0.22);
}

.bv-content-button-primary:hover {
    background: var(--bvc-blue-dark);
    color: #ffffff;
}

.bv-content-button-secondary {
    border-color: var(--bvc-border);
    background: #ffffff;
    color: var(--bvc-navy);
}

.bv-content-button-secondary:hover {
    border-color: var(--bvc-blue);
    background: #ffffff;
    color: var(--bvc-blue);
}

.bv-content-hero-points {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px 21px;
    color: var(--bvc-muted);
    font-size: 12px;
    font-weight: 700;
}

.bv-content-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bv-content-hero-points svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--bvc-success);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Workflow preview */

.bv-content-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            #10253f 0%,
            #122b49 100%
        );
    box-shadow:
        0 34px 90px rgba(16, 37, 63, 0.24);
}

.bv-content-preview-toolbar {
    min-height: 56px;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bv-content-preview-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bv-content-preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bv-content-preview-dots span:nth-child(1) {
    background: #ff7b7b;
}

.bv-content-preview-dots span:nth-child(2) {
    background: #f6c65b;
}

.bv-content-preview-dots span:nth-child(3) {
    background: #61d394;
}

.bv-content-preview-status {
    justify-self: end;
    padding: 5px 9px;
    border: 1px solid rgba(97, 211, 148, 0.24);
    border-radius: 999px;
    background: rgba(97, 211, 148, 0.10);
    color: #8ae3b2;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.bv-content-preview-body {
    padding: 28px;
}

.bv-content-preview-title {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.bv-content-preview-title > div {
    min-width: 0;
}

.bv-content-preview-title > div > span {
    display: block;
    margin-bottom: 6px;
    color: #8fa7c2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.bv-content-preview-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.bv-content-preview-title > strong {
    min-width: 48px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(117, 160, 255, 0.24);
    border-radius: 8px;
    background: rgba(47, 111, 237, 0.18);
    color: #c8d8ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.bv-content-workflow-list {
    display: grid;
    gap: 10px;
}

.bv-content-workflow-row {
    min-height: 70px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 12px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.035)
        );
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.bv-content-workflow-row:hover {
    border-color: rgba(117, 160, 255, 0.24);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.045)
        );
    transform: translateY(-1px);
}

.bv-content-workflow-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(117, 160, 255, 0.24);
    border-radius: 11px;
    background:
        linear-gradient(
            145deg,
            rgba(47, 111, 237, 0.28),
            rgba(47, 111, 237, 0.14)
        );
    color: #c3d5ff;
}

.bv-content-workflow-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bv-content-workflow-row > div {
    min-width: 0;
}

.bv-content-workflow-row > div > strong {
    display: block;
    margin-bottom: 4px;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bv-content-workflow-row > div > small {
    display: block;
    overflow: hidden;
    color: #91a5bd;
    font-size: 10px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bv-content-workflow-state {
    min-width: 68px;
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #dbe7f5;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.bv-content-workflow-row:nth-child(1)
.bv-content-workflow-state {
    border-color: rgba(117, 160, 255, 0.22);
    background: rgba(47, 111, 237, 0.13);
    color: #bad0ff;
}

.bv-content-workflow-row:nth-child(2)
.bv-content-workflow-state,
.bv-content-workflow-row:nth-child(3)
.bv-content-workflow-state,
.bv-content-workflow-row:nth-child(4)
.bv-content-workflow-state {
    border-color: rgba(97, 211, 148, 0.22);
    background: rgba(97, 211, 148, 0.09);
    color: #8ae3b2;
}

.bv-content-progress-card {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.035)
        );
}

.bv-content-progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #a9bad0;
    font-size: 11px;
    font-weight: 800;
}

.bv-content-progress-heading strong {
    color: #ffffff;
    font-size: 13px;
}

.bv-content-progress-track {
    position: relative;
    height: 8px;
    margin: 12px 0 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.bv-content-progress-track > span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 86%;
    display: block;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #2f6fed 0%,
            #75a0ff 50%,
            #a9c3ff 100%
        );
    box-shadow:
        0 0 18px rgba(47, 111, 237, 0.34);
}

.bv-content-progress-track > span::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent
        );
    transform: translateX(-100%);
    animation: bvWorkflowShimmer 2.2s ease-in-out infinite;
}

@keyframes bvWorkflowShimmer {
    0% {
        transform: translateX(-100%);
    }

    55%,
    100% {
        transform: translateX(100%);
    }
}

.bv-content-progress-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-content-progress-tags span {
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #b9c7d8;
    font-size: 9px;
    font-weight: 800;
}

.bv-content-progress-tags span::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    content: "";
    border-radius: 50%;
    background: #61d394;
    box-shadow: 0 0 0 3px rgba(97, 211, 148, 0.10);
}

/* Metrics */

.bv-content-metrics {
    padding: 34px 0;
    background: var(--bvc-navy-mid);
}

.bv-content-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bv-content-metric {
    padding: 7px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    text-align: center;
}

.bv-content-metric:last-child {
    border-right: 0;
}

.bv-content-metric strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
}

.bv-content-metric span {
    color: #91a5bd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Sections */

.bv-content-section {
    padding: 88px 0;
}

.bv-content-section-light,
.bv-content-benefits {
    background: #ffffff;
}

.bv-content-section-soft,
.bv-content-section-introduction,
.bv-content-faq-section {
    background: var(--bvc-background);
}

.bv-content-section-heading {
    max-width: 830px;
    margin: 0 auto 45px;
    text-align: center;
}

.bv-content-section-heading .bv-content-kicker {
    color: var(--bvc-blue);
}

.bv-content-section-heading h2 {
    margin-bottom: 17px;
    font-size: clamp(36px, 5vw, 53px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.041em;
}

.bv-content-section-heading > p,
.bv-content-section-body {
    margin-bottom: 0;
    color: var(--bvc-text);
    font-size: 16px;
    line-height: 1.82;
}

.bv-content-introduction {
    max-width: 910px;
    margin: 0 auto;
    padding: 38px 42px;
    border: 1px solid var(--bvc-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--bvc-shadow-sm);
    font-size: 17px;
    line-height: 1.9;
}

/* CMS rich text */

.bv-content-rich-text {
    color: var(--bvc-text);
}

.bv-content-rich-text > :first-child {
    margin-top: 0;
}

.bv-content-rich-text > :last-child {
    margin-bottom: 0;
}

.bv-content-rich-text p {
    margin-bottom: 20px;
    color: var(--bvc-text);
    line-height: 1.82;
}

.bv-content-rich-text h2 {
    margin: 38px 0 15px;
    font-size: clamp(28px, 4vw, 40px);
}

.bv-content-rich-text h3 {
    margin: 30px 0 13px;
    font-size: 25px;
}

.bv-content-rich-text h4 {
    margin: 24px 0 11px;
    color: var(--bvc-navy);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.bv-content-rich-text ul,
.bv-content-rich-text ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.bv-content-rich-text li {
    margin-bottom: 9px;
    color: var(--bvc-text);
    line-height: 1.75;
}

.bv-content-rich-text a {
    color: var(--bvc-blue);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bv-content-rich-text blockquote {
    margin: 30px 0;
    padding: 24px 26px;
    border-left: 5px solid var(--bvc-blue);
    border-radius: 0 16px 16px 0;
    background: var(--bvc-blue-soft);
    color: #1e3a8a;
    font-size: 18px;
    line-height: 1.75;
}

.bv-content-rich-text img {
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    display: block;
    border-radius: 16px;
    box-shadow: var(--bvc-shadow-sm);
}

.bv-content-rich-text table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    border: 1px solid var(--bvc-border);
    background: #ffffff;
}

.bv-content-rich-text th,
.bv-content-rich-text td {
    padding: 15px 17px;
    border: 1px solid var(--bvc-border-soft);
    color: var(--bvc-text);
    text-align: left;
    vertical-align: top;
}

.bv-content-rich-text th {
    background: #f8fafc;
    color: var(--bvc-navy);
    font-size: 13px;
    font-weight: 900;
}

/* Cards */

.bv-content-card-grid,
.bv-content-benefit-grid {
    display: grid;
    gap: 22px;
}

.bv-content-card-grid-one {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

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

.bv-content-card-grid-three,
.bv-content-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bv-content-feature-card,
.bv-content-benefit-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--bvc-border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: var(--bvc-shadow-sm);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.bv-content-feature-card:hover,
.bv-content-benefit-card:hover {
    border-color: #b5c7df;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 37, 63, 0.10);
}

.bv-content-feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd9ee;
    border-radius: 14px;
    background: var(--bvc-blue-soft);
    color: var(--bvc-blue);
    font-size: 23px;
}

.bv-content-feature-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bv-content-feature-card h3,
.bv-content-benefit-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 11px;
    font-size: 24px;
    line-height: 1.22;
}

.bv-content-card-body,
.bv-content-benefit-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--bvc-text);
    font-size: 14px;
    line-height: 1.76;
}

.bv-content-card-decoration {
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(47, 111, 237, 0.10);
    border-radius: 50%;
    background: rgba(47, 111, 237, 0.035);
}

/* FAQ */

.bv-content-faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.bv-content-faq-item {
    overflow: hidden;
    border: 1px solid var(--bvc-border);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bv-content-faq-item.is-open {
    border-color: #b4c8e4;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.bv-content-faq-item h3 {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
}

.bv-content-faq-question {
    width: 100%;
    min-height: 68px;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    background: transparent;
    color: var(--bvc-navy);
    font-size: 16px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.bv-content-faq-question:hover {
    color: var(--bvc-blue);
}

.bv-content-faq-toggle {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bvc-blue-soft);
    color: var(--bvc-blue);
    font-size: 21px;
    line-height: 1;
}

.bv-content-faq-answer {
    padding: 0 22px 22px;
}

.bv-content-faq-answer[hidden] {
    display: none;
}

.bv-content-faq-answer .bv-content-rich-text {
    padding-top: 19px;
    border-top: 1px solid var(--bvc-border-soft);
    font-size: 14px;
}

/* Final CTA */

.bv-content-final-cta {
    position: relative;
    isolation: isolate;
    padding: 74px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(47, 111, 237, 0.40),
            transparent 34%
        ),
        var(--bvc-navy);
}

.bv-content-final-cta-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.28;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
}

.bv-content-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.bv-content-final-cta-inner > div:first-child {
    max-width: 740px;
}

.bv-content-final-cta .bv-content-kicker {
    color: #93b5ff;
}

.bv-content-final-cta h2 {
    margin-bottom: 17px;
    color: #ffffff;
    font-size: clamp(35px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.041em;
}

.bv-content-final-cta p {
    margin-bottom: 0;
    color: #b8c5d5;
    line-height: 1.8;
}

.bv-content-final-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.bv-content-button-light {
    background: #ffffff;
    color: var(--bvc-navy);
}

.bv-content-button-light:hover {
    color: var(--bvc-blue);
}

.bv-content-button-outline {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.bv-content-button-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

/* Responsive */

@media (max-width: 1040px) {
    .bv-content-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.88fr);
        gap: 40px;
    }

    .bv-content-card-grid-three,
    .bv-content-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .bv-content-hero {
        padding: 68px 0;
    }

    .bv-content-hero-grid {
        grid-template-columns: 1fr;
    }

    .bv-content-hero-copy {
        text-align: center;
    }

    .bv-content-hero-text {
        margin-inline: auto;
    }

    .bv-content-hero-actions,
    .bv-content-hero-points {
        justify-content: center;
    }

    .bv-content-preview {
        width: min(630px, 100%);
        margin-inline: auto;
    }

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

    .bv-content-metric:nth-child(2) {
        border-right: 0;
    }

    .bv-content-metric:nth-child(-n+2) {
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .bv-content-metric:nth-child(n+3) {
        padding-top: 24px;
    }

    .bv-content-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .bv-content-container {
        width: min(100% - 28px, 1180px);
    }

    .bv-content-hero {
        padding: 54px 0;
    }

    .bv-content-hero h1 {
        font-size: 40px;
    }

    .bv-content-hero-text,
    .bv-content-hero-text p,
    .bv-content-hero-text li {
        font-size: 16px;
    }

    .bv-content-hero-actions,
    .bv-content-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .bv-content-hero-actions .bv-content-button,
    .bv-content-final-actions .bv-content-button {
        width: 100%;
    }

    .bv-content-preview-body {
        padding: 20px;
    }

    .bv-content-preview-title h2 {
        font-size: 21px;
    }

    .bv-content-preview-toolbar {
        grid-template-columns: 1fr 1fr;
    }

    .bv-content-preview-toolbar > span:nth-child(2) {
        display: none;
    }

    .bv-content-workflow-row {
        min-height: 66px;
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .bv-content-workflow-icon {
        width: 38px;
        height: 38px;
    }

    .bv-content-workflow-state {
        display: none;
    }

    .bv-content-progress-card {
        padding: 15px;
    }

    .bv-content-section {
        padding: 62px 0;
    }

    .bv-content-introduction {
        padding: 26px 22px;
    }

    .bv-content-card-grid-two,
    .bv-content-card-grid-three,
    .bv-content-benefit-grid {
        grid-template-columns: 1fr;
    }

    .bv-content-feature-card,
    .bv-content-benefit-card {
        padding: 24px;
    }

    .bv-content-rich-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .bv-content-hero h1 {
        font-size: 35px;
    }

    .bv-content-preview-body {
        padding: 16px;
    }

    .bv-content-preview-title {
        align-items: flex-start;
    }

    .bv-content-preview-title > strong {
        min-width: 42px;
        padding: 7px 8px;
    }

    .bv-content-workflow-row {
        padding: 11px;
        gap: 11px;
    }

    .bv-content-workflow-row > div > strong,
    .bv-content-workflow-row > div > small {
        white-space: normal;
    }

    .bv-content-faq-question {
        padding: 17px;
        font-size: 15px;
    }

    .bv-content-faq-answer {
        padding: 0 17px 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bv-content-page *,
    .bv-content-page *::before,
    .bv-content-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .bv-content-progress-track > span::after {
        animation: none;
    }
}

@media print {
    .bv-content-breadcrumb,
    .bv-content-hero-actions,
    .bv-content-preview,
    .bv-content-metrics,
    .bv-content-final-cta,
    .site-footer,
    .cb-nav {
        display: none !important;
    }

    .bv-content-hero {
        padding: 20px 0;
        background: #ffffff !important;
    }

    .bv-content-hero h1,
    .bv-content-hero-text,
    .bv-content-hero-text p,
    .bv-content-hero-text li {
        color: #000000 !important;
    }

    .bv-content-section {
        padding: 20px 0;
    }

    .bv-content-faq-answer[hidden] {
        display: block !important;
    }
}
