.bizbox-wp {
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --bg-muted: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-dark-inner: #1e293b;
    --text: #0f172a;
    --text-muted: #334155;
    --text-soft: #475569;
    --brand: #2563eb;
    --brand-hover: #1d4ed8;
    --brand-soft: #e0e7ff;
    --accent: #facc15;
    --accent-hover: #eab308;
    --success: #10b981;
    --border: #e2e8f0;
    --chip-blue: #1e40af;
    --radius-sm: 12px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-pill: 999px;
    --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-elevated: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    --container: 1200px;
    --space-section: 64px;
    --focus-ring: 2px solid var(--brand);
    --focus-offset: 2px;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Noto Sans TC', 'Noto Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-page);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.bizbox-wp *,
.bizbox-wp *::before,
.bizbox-wp *::after {
    box-sizing: border-box;
}

.bizbox-wp .bizbox-inner,
.bizbox-wp section,
.bizbox-wp article,
.bizbox-wp aside,
.bizbox-wp nav,
.bizbox-wp header,
.bizbox-wp main,
.bizbox-wp footer {
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .bizbox-wp {
        scroll-behavior: auto;
    }
    .bizbox-wp *,
    .bizbox-wp *::before,
    .bizbox-wp *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.bizbox-wp a:focus-visible,
.bizbox-wp button:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.bizbox-wp .skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    z-index: 100;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--text);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.bizbox-wp .skip-link:focus {
    left: 16px;
    top: 16px;
}

        .bizbox-wp .bizbox-inner,
        .bizbox-wp .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

/* 按鈕 */
.bizbox-wp .btn {
    display: inline-block;
    background-color: var(--brand);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.12s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.bizbox-wp .btn:hover {
    background-color: var(--brand-hover);
}

.bizbox-wp .btn:active {
    transform: translateY(1px);
}

.bizbox-wp .btn-outline {
    background: transparent;
    border: 1px solid var(--brand);
    color: var(--brand);
}

.bizbox-wp .btn-outline:hover {
    background: #eef2ff;
}

.bizbox-wp .btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}

.bizbox-wp .btn-block {
    width: 100%;
    margin-top: 16px;
}

.bizbox-wp .btn--nav {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.bizbox-wp .btn--contact {
    background: var(--accent);
    color: var(--text);
}

.bizbox-wp .btn--contact:hover {
    background: var(--accent-hover);
}

.bizbox-wp .btn-outline--yellow {
    border-color: var(--accent);
    color: var(--accent);
}

.bizbox-wp .btn-outline--yellow:hover {
    background: rgba(250, 204, 21, 0.12);
}

/* 區塊 */
.bizbox-wp section {
    padding: var(--space-section) 0;
}

.bizbox-wp .bg-white {
    background-color: var(--bg-white);
}

.bizbox-wp .bg-light {
    background-color: var(--bg-muted);
}

.bizbox-wp .section-header {
    text-align: center;
}

.bizbox-wp .section-pain .section-title::after {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.bizbox-wp .section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.bizbox-wp .section-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 48px;
}

/* 導航 */
.bizbox-wp .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

        .bizbox-wp .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            gap: 16px;
        }

        .bizbox-wp .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .bizbox-wp .btn--lang {
            padding: 8px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            background: var(--bg-white);
            border: 1px solid var(--border);
            color: var(--text-muted);
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s, background 0.2s;
            line-height: 1.2;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-sizing: border-box;
        }

        .bizbox-wp .btn--lang:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: #eef2ff;
        }

        @media (max-width: 420px) {
            .bizbox-wp .nav-actions {
                gap: 8px;
            }

            .bizbox-wp .btn--lang {
                padding: 8px 12px;
                font-size: 0.8rem;
            }

            .bizbox-wp .btn--nav {
                padding: 8px 14px;
                font-size: 0.85rem;
            }
        }

.bizbox-wp .brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.bizbox-wp .brand span {
    color: var(--brand);
}

/* Hero */
.bizbox-wp .hero {
    padding: 88px 0 56px;
    background: linear-gradient(135deg, var(--bg-page) 0%, #e6edf7 100%);
    position: relative;
    overflow: hidden;
}

.bizbox-wp .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 65% at 72% 18%, rgba(37, 99, 235, 0.09), transparent 58%);
    pointer-events: none;
}

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

.bizbox-wp .hero-grid {
    align-items: center;
}

.bizbox-wp .hero-badge {
    display: inline-block;
    background: var(--brand-soft);
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--chip-blue);
    letter-spacing: 0.04em;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.bizbox-wp .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
    color: var(--text);
}

/* 拉高優先級，避免 WordPress 全域 h1 顏色把主標題首行洗成灰 */
.bizbox-wp #hero-heading.hero-title {
    color: var(--text, #0f172a);
}

.bizbox-wp .hero-highlight {
    color: var(--brand);
    border-bottom: 3px solid var(--accent);
}

.bizbox-wp .hero-lead {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 24px 0;
}

.bizbox-wp .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bizbox-wp .hero-trust {
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.bizbox-wp .hero-visual-wrap {
    text-align: center;
}

.bizbox-wp .hero-visual {
    display: inline-block;
    background: var(--bg-white);
    border-radius: 48px;
    padding: 24px 22px 28px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 24px 48px -14px rgba(15, 23, 42, 0.14),
        0 8px 20px -10px rgba(15, 23, 42, 0.08);
    max-width: 100%;
}

.bizbox-wp .hero-visual-icon {
    font-size: 3rem;
    line-height: 1;
}

.bizbox-wp .hero-visual-title {
    font-weight: 600;
    margin-top: 12px;
}

.bizbox-wp .tag-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.bizbox-wp .tag-pill {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    color: var(--text);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

/* 卡片 */
.bizbox-wp .card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    border: 1px solid rgba(226, 232, 240, 0.95);
    height: 100%;
}

.bizbox-wp .card:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
    border-color: rgba(191, 219, 254, 0.9);
}

.bizbox-wp .card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: var(--text);
}

.bizbox-wp .card p {
    color: var(--text);
}

.bizbox-wp .service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1;
}

/* 價格 */
.bizbox-wp .price-card {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: var(--shadow-elevated);
    text-align: center;
    transition: transform 0.2s ease;
    height: 100%;
    border: 1px solid var(--border);
}

.bizbox-wp .price-card:hover {
    transform: translateY(-4px);
}

.bizbox-wp .price-card.popular {
    border-top: 6px solid var(--accent);
    box-shadow:
        0 22px 44px -18px rgba(37, 99, 235, 0.22),
        var(--shadow-elevated);
}

.bizbox-wp .badge {
    background: var(--accent);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 16px;
}

.bizbox-wp .price-card h3 {
    font-size: 1.25rem;
    color: var(--text);
}

.bizbox-wp .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 16px 0;
}

.bizbox-wp .price small {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-soft);
}

.bizbox-wp .price-desc {
    color: var(--text-muted);
}

.bizbox-wp .feature-list {
    text-align: left;
    margin: 24px 0;
    list-style: none;
}

.bizbox-wp .feature-list li {
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bizbox-wp .check-mark {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1.4;
}

/* Grid */
.bizbox-wp .grid-2,
.bizbox-wp .grid-3,
.bizbox-wp .grid-4 {
    display: grid;
    gap: 28px;
}

.bizbox-wp .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bizbox-wp .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bizbox-wp .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* 提示框 */
.bizbox-wp .callout {
    background: #e6f0ff;
    border-radius: 32px;
    padding: 24px;
    margin-top: 20px;
}

.bizbox-wp .callout strong {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.bizbox-wp .pricing-footnote {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
    background: var(--bg-muted);
    padding: 12px 16px;
    border-radius: var(--radius-pill);
}

/* 表格 */
.bizbox-wp .table-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    overflow-x: auto;
    border: 1px solid var(--border);
}

.bizbox-wp .data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.bizbox-wp .data-table th,
.bizbox-wp .data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.bizbox-wp .data-table thead th {
    border-bottom: 2px solid var(--border);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bizbox-wp .data-table tbody tr:last-child td {
    border-bottom: none;
}

.bizbox-wp .table-note {
    font-size: 0.8rem;
    margin-top: 16px;
    color: var(--text-soft);
}

/* 為什麼選我們 */
.bizbox-wp .quote-box {
    background: #eef2ff;
    border-radius: 32px;
    padding: 28px;
    text-align: center;
}

.bizbox-wp .quote-icon {
    font-size: 2.8rem;
    line-height: 1;
}

.bizbox-wp .check-list {
    list-style: none;
}

.bizbox-wp .check-list li {
    margin: 12px 0;
    padding-left: 0;
}

/* 聯絡 */
.bizbox-wp .section-contact {
    padding: 48px 0;
}

.bizbox-wp .contact-box {
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
}

.bizbox-wp .contact-box h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.bizbox-wp .contact-box > p:first-of-type {
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

.bizbox-wp .contact-inner {
    background: var(--bg-dark-inner);
    border-radius: 60px;
    padding: 28px 24px;
    margin-top: 12px;
}

.bizbox-wp .contact-inner p {
    margin-bottom: 20px;
}

.bizbox-wp .contact-phone {
    color: var(--accent);
    font-weight: 600;
}

.bizbox-wp .contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bizbox-wp .contact-disclaimer {
    font-size: 0.8rem;
    margin-top: 24px;
    color: #94a3b8;
}

.bizbox-wp .contact-email-link {
    color: #93c5fd;
}

/* FAQ */
.bizbox-wp .faq-grid h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text);
}

.bizbox-wp .faq-section {
    padding: 40px 0 var(--space-section);
}

.bizbox-wp .faq-title {
    text-align: center;
}

.bizbox-wp .bizbox-footer {
    padding: 40px 0 36px;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-page) 0%, #eef2f7 100%);
}

.bizbox-wp .bizbox-footer p + p {
    margin-top: 8px;
}

.bizbox-wp .modules-grid {
    margin-bottom: 20px;
}

.bizbox-wp .why-grid {
    align-items: center;
}

.bizbox-wp .why-lead {
    margin-bottom: 16px;
    color: var(--text);
}

.bizbox-wp .quote-text {
    font-weight: 500;
    margin-top: 12px;
    color: var(--text);
}

.bizbox-wp .quote-attrib {
    margin-top: 12px;
}

.bizbox-wp .faq-inner {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .bizbox-wp {
        --space-section: 48px;
    }

    .bizbox-wp .section-title {
        font-size: 1.75rem;
    }

            .bizbox-wp .bizbox-inner,
            .bizbox-wp .container {
                padding: 0 20px;
            }

    .bizbox-wp .contact-box {
        padding: 36px 20px;
    }

    .bizbox-wp .contact-inner {
        border-radius: 28px;
    }

    .bizbox-wp .price-card:hover {
        transform: none;
    }
}

/* WordPress：登入時管理列與 sticky 導航 */
body.admin-bar .bizbox-wp .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .bizbox-wp .site-header {
        top: var(--wp-admin--admin-bar--height, 46px);
    }
}

/* -------------------------------------------------------------------------
 * WordPress：global-styles／區塊 inline 樣式常晚於主題載入，且會直接指定 p、h2 等，
 * 僅依賴 .bizbox-wp { color } 繼承仍會整頁偏灰。以下：
 * - 同時涵蓋「區塊編輯」與「靜態中英落地」（先前只寫 editable，靜態首頁未被套用）
 * - 映寫常用 --wp--preset--color-*，讓依變數著色的區塊一併回復
 * - 落地頁內必要時使用 !important，僅限 .bizbox-wp 落地包裝，避免洗版外站樣式
 * ------------------------------------------------------------------------- */
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) {
    --wp--preset--color--foreground: var(--text, #0f172a);
    --wp--preset--color--contrast: var(--text, #0f172a);
    color: var(--text, #0f172a);
}

body.bizbox-wp.nano-bizbox-theme {
    --wp--preset--color--foreground: var(--text, #0f172a);
    --wp--preset--color--contrast: var(--text, #0f172a);
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .entry-content,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .wp-block-html {
    color: var(--text, #0f172a);
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .entry-content :is(h1, h2, h3, h4, h5, h6),
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .wp-block-html :is(h1, h2, h3, h4, h5, h6),
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--text, #0f172a);
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .hero-lead {
    color: #1e293b !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .hero-badge {
    color: var(--chip-blue) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .hero-trust {
    color: var(--text-soft) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .section-sub {
    color: var(--text-muted) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .faq-inner :is(p),
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .pain-item :is(p),
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .trust-list :is(li) {
    color: var(--text, #0f172a);
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-box {
    color: #fff !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-box h2 {
    color: #fff !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-box > p:first-of-type {
    color: #cbd5e1 !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-inner,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-inner p {
    color: #e2e8f0 !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-phone {
    color: var(--accent) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-disclaimer {
    color: #94a3b8 !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .contact-email-link {
    color: #93c5fd !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .bizbox-footer {
    color: var(--text-soft) !important;
}

/* global-styles 常含 !important；落地頁內強制還原主要閱讀色 */
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .section-title,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) #hero-heading.hero-title,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .card h3,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .card p,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .price-card h3,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .price,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .feature-list li,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .check-list li,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .faq-grid h3,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .faq-inner p,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .callout p,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .callout strong,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .why-lead,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .quote-text,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .tag-pill,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .data-table tbody td {
    color: var(--text, #0f172a) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .data-table thead th {
    color: var(--text-muted) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .pricing-footnote,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .table-note,
.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .price-desc {
    color: var(--text-muted) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .quote-attrib {
    color: var(--text-soft) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .price small {
    color: var(--text-soft) !important;
}

.bizbox-wp:is(.nano-bizbox-static-landing, .nano-bizbox-editable-landing) .hero-highlight {
    color: var(--brand) !important;
}
