/* Base styles for BiznesNaGotowo Core. */

:root {
    --bng-navy: #050b1f;
    --bng-gold: #d4b76a;
    --bng-ink: #0b111c;
    --bng-bg: #f6f1e6;
    --bng-border: rgba(5, 11, 31, 0.14);
    --bng-navy-strong: #081229;
    --bng-navy-soft: #0b1733;
    --bng-gold-soft: #ead39a;
    --bng-gold-strong: #c8983f;
    --bng-cream: #fffaf0;
    --bng-gold-veil: rgba(212, 183, 106, 0.24);
    --bng-gold-border: rgba(212, 183, 106, 0.36);

    --bngc-navy: var(--bng-navy);
    --bngc-ink: var(--bng-ink);
    --bngc-stone: #ece3d4;
    --bngc-bone: var(--bng-bg);
    --bngc-gold: var(--bng-gold);
    --bngc-sand: #e1d1b0;
    --bngc-muted: #545d69;
    --bngc-border: var(--bng-border);
    --bngc-radius: 12px;
    --bngc-radius-lg: 18px;
    --bngc-section-gap: clamp(28px, 6vw, 72px);
    --bngc-section-divider: rgba(5, 11, 31, 0.08);
    --bngc-text: var(--bngc-ink);
    --bngc-text-line-height: 1.6;
    --bngc-type-h1: clamp(26px, 3vw, 38px);
    --bngc-type-h2: clamp(20px, 2.2vw, 28px);
    --bngc-type-body: clamp(16px, 0.48vw + 14px, 18px);
    --bngc-type-muted: clamp(14px, 0.35vw + 13px, 15px);
    --bngc-measure: 65ch;
    --bngc-primary: var(--bng-gold);
    --bngc-primary-strong: var(--bng-gold-strong);
    --bngc-surface: #ffffff;
    --bngc-surface-alt: #f9f5ed;
    --bngc-muted-ink: #4a4f59;
    --bngc-focus-ring: 0 0 0 3px rgba(212, 183, 106, 0.26);
    --bngc-shadow: 0 18px 45px rgba(5, 11, 31, 0.18);
    --bngc-shadow-soft: 0 12px 30px rgba(5, 11, 31, 0.12);
    --bngc-font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --bngc-font-serif: "Libre Baskerville", "Playfair Display", Georgia, serif;
    --bngc-font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

    --motion-fast: 140ms;
    --motion-base: 180ms;
    --motion-slow: 220ms;
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.bngc-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.bngc-text,
.bngc-body,
body {
    font-family: var(--bngc-font-sans);
    color: var(--bngc-text);
    font-size: var(--bngc-type-body);
    line-height: var(--bngc-text-line-height);
    letter-spacing: 0.01em;
}

h1,
.bngc-hero h1,
.bngc-hero__title {
    font-size: var(--bngc-type-h1);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h2,
.bngc-section h2,
.bngc-tabs__title {
    font-size: var(--bngc-type-h2);
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: -0.01em;
    font-family: var(--bngc-font-sans);
}

.bngc-eyebrow,
:root {
    /* Brand palette */
    --bng-primary: #1F2A37;
    --bng-primary-soft: #2B3645;
    --bng-accent: #D4A24C;

    /* Text */
    --bng-text-main: #0F172A;
    --bng-text-muted: #475569;
    --bng-text-invert: #FFFFFF;

    /* Backgrounds */
    --bng-bg-main: #FAFAF7;
    --bng-bg-card: #FFFFFF;
    --bng-bg-soft: #F4F5F7;

    /* Borders */
    --bng-border-soft: #E4E7EC;
    --bng-border-strong: #CBD5E1;

    /* States */
    --bng-success: #2F855A;
    --bng-warning: #B45309;

    /* Effects */
    --bng-shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.06);

    /* Legacy tokens mapped to the new palette */
    --bngc-navy: var(--bng-primary);
    --bngc-ink: var(--bng-primary);
    --bngc-stone: var(--bng-bg-soft);
    --bngc-bone: var(--bng-bg-main);
    --bngc-gold: var(--bng-accent);
    --bngc-sand: #E6C784;
    --bngc-muted: var(--bng-text-muted);
    --bngc-border: var(--bng-border-soft);
    --bngc-radius: 12px;
    --bngc-radius-lg: 18px;
    --bngc-section-gap: clamp(28px, 6vw, 72px);
    --bngc-section-divider: rgba(31, 42, 55, 0.08);
    --bngc-text: var(--bng-text-main);
    --bngc-text-line-height: 1.6;
    --bngc-type-h1: clamp(26px, 3vw, 38px);
    --bngc-type-h2: clamp(20px, 2.2vw, 28px);
    --bngc-type-body: clamp(16px, 0.48vw + 14px, 18px);
    --bngc-type-muted: clamp(14px, 0.35vw + 13px, 15px);
    --bngc-measure: 65ch;
    --bngc-primary: var(--bng-primary);
    --bngc-primary-strong: var(--bng-primary-soft);
    --bngc-surface: var(--bng-bg-card);
    --bngc-surface-alt: var(--bng-bg-soft);
    --bngc-muted-ink: var(--bng-text-muted);
    --bngc-focus-ring: 0 0 0 3px rgba(212, 162, 76, 0.28);
    --bngc-shadow: 0 18px 45px rgba(31, 42, 55, 0.16);
    --bngc-shadow-soft: 0 10px 28px rgba(31, 42, 55, 0.12);
    --bngc-font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --bngc-font-serif: "Libre Baskerville", "Playfair Display", Georgia, serif;
    --bngc-font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
    --bng-navy-strong: var(--bng-primary-soft);
    --bng-navy-soft: #344155;
    --bng-gold-soft: #E8C784;
    --bng-gold-strong: #B98635;
    --bng-cream: var(--bng-bg-main);
    --bng-gold-veil: rgba(212, 162, 76, 0.18);
    --bng-gold-border: rgba(212, 162, 76, 0.36);
}

.bngc-badge {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: var(--bngc-type-muted);
}

.bngc-badge--muted {
    background: rgba(5, 11, 31, 0.05);
    color: var(--bngc-muted);
    border-color: var(--bngc-border);
}

.bngc-header,
.bngc-hard-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    color: #0c1a23;
    border-bottom: 1px solid rgba(12, 26, 35, 0.08);
    box-shadow: 0 18px 44px rgba(12, 26, 35, 0.08);
    backdrop-filter: blur(12px);
}

.bngc-header__top {
    padding: 6px 18px;
    border-bottom: 1px solid rgba(12, 26, 35, 0.06);
    background: linear-gradient(90deg, rgba(12, 26, 35, 0.04) 0%, rgba(31, 75, 255, 0.05) 50%, rgba(194, 164, 100, 0.06) 100%);
}

.bngc-header__top-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bngc-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 26, 35, 0.12);
    color: #0c1a23;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    font-size: var(--bngc-type-muted);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.bngc-header__pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1f4bff;
    box-shadow: 0 0 0 6px rgba(31, 75, 255, 0.12);
    border: 1px solid rgba(12, 18, 24, 0.12);
}

.bngc-header__note {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--bngc-type-muted);
    letter-spacing: 0.02em;
    text-transform: none;
    color: #0c1a23;
}

.bngc-header__top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--bngc-type-muted);
    letter-spacing: 0.02em;
    color: #0c1a23;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 26, 35, 0.12);
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bngc-header__top-link:hover,
.bngc-header__top-link:focus-visible {
    color: #1f4bff;
    border-color: rgba(31, 75, 255, 0.26);
    box-shadow: 0 12px 28px rgba(31, 75, 255, 0.18);
    transform: translateY(-1px);
    outline: none;
}

.bngc-header__top-icon {
    font-weight: 700;
}

.bngc-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bngc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.bngc-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0c1a23;
}

.bngc-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1f4bff 100%);
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.bngc-brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.bngc-brand__name {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.bngc-brand__tagline {
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #5f6b75;
}

.bngc-header__mobile-link {
    display: none;
}

.bngc-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.bngc-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.bngc-nav__item {
    margin: 0;
}

.bngc-nav a {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    color: var(--bng-primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: var(--bngc-type-muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, text-decoration-color 0.2s ease;
}

.bngc-nav a:hover,
.bngc-nav a:focus-visible {
    color: var(--bng-accent);
    border-color: rgba(212, 162, 76, 0.5);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    outline: none;
}

.bngc-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--bng-primary) 0%, var(--bng-primary-soft) 100%);
    color: var(--bng-text-invert);
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 18px 36px rgba(31, 42, 55, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
}

.bngc-header__cta:hover,
.bngc-header__cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(31, 42, 55, 0.3);
    filter: brightness(1.02);
    outline: none;
}

.bngc-header__cta-icon {
    font-size: 15px;
    line-height: 1;
}

.bngc-header__spacer {
    height: 14px;
}

.bngc-is-page header#masthead {
    display: none !important;
}
body.bngc-is-product {
    padding-top: 0;
}

body.bngc-is-product .bngc-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

@media (max-width: 1024px) {
    .bngc-header__inner {
        align-items: flex-start;
        gap: 18px;
    }

    .bngc-brand {
        width: 100%;
    }

    .bngc-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .bngc-nav__list {
        justify-content: flex-start;
        gap: 16px;
    }

    .bngc-header__cta {
        order: 2;
    }
}


.bngc-brand__name {
    font-size: 18px;
}

.bngc-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 10px;
}

.bngc-nav__list {
    gap: 12px;
}

.bngc-nav a {
    padding: 8px 0;
    font-size: 12px;
}

.bngc-header__cta {
    width: 100%;
    justify-content: center;
}

.bngc-header__top-inner {
    text-align: center;
}


.bngc-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1vw + 10px, 18px);
    padding: clamp(12px, 1vw + 10px, 20px) 0;
    border-bottom: 1px solid rgba(12, 26, 35, 0.08);
}

.bngc-list-row:last-child {
    border-bottom: none;
}

.bngc-list-row__title {
    font-weight: 700;
    color: var(--bngc-ink);
}

.bngc-list-row__meta {
    color: var(--bngc-muted-ink);
    font-size: 14px;
}

.bngc-form-row {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.bngc-input,
.bngc-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(12, 26, 35, 0.16);
    background: #ffffff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--bngc-ink);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.bngc-input::placeholder,
.bngc-textarea::placeholder {
    color: #9aa3ad;
}

.bngc-input:focus-visible,
.bngc-textarea:focus-visible {
    outline: none;
    border-color: rgba(31, 75, 255, 0.45);
    box-shadow: var(--bngc-focus-ring);
    background: #ffffff;
}

.bngc-input:disabled,
.bngc-textarea:disabled {
    background: #f6f7fb;
    color: #94a3b8;
    cursor: not-allowed;
}

.bngc-textarea {
    min-height: 120px;
    resize: vertical;
}

.bngc-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.bngc-cta-label--short {
    display: none;
}

@media (max-width: 640px) {
    .bngc-cta-label--full {
        display: none !important;
    }

    .bngc-cta-label--short {
        display: inline !important;
    }
}

.bngc-cta.is-primary {
    background: var(--bng-accent);
    color: var(--bng-primary);
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(212, 162, 76, 0.28);
}

.bngc-cta.is-primary:hover,
.bngc-cta.is-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.2), 0 16px 34px rgba(31, 42, 55, 0.18);
}

.bngc-cta.is-secondary {
    background: transparent;
    color: var(--bng-primary);
    border-color: var(--bng-border-strong);
}

.bngc-cta.is-secondary:hover,
.bngc-cta.is-secondary:focus-visible {
    color: var(--bng-primary);
    border-color: rgba(212, 162, 76, 0.4);
    background: rgba(212, 162, 76, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.18);
}

.bngc-cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.22), 0 12px 24px rgba(31, 42, 55, 0.1);
}

.bng-btn,
.single_add_to_cart_button,
.bng-buy-now {
    position: relative;
    will-change: transform, box-shadow;
    transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out), background-color var(--motion-base) var(--ease-out), color var(--motion-base) var(--ease-out);
    touch-action: manipulation;
}

.bng-btn:hover,
.single_add_to_cart_button:hover,
.bng-buy-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.bng-btn:active,
.single_add_to_cart_button:active,
.bng-buy-now:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.bng-btn:focus-visible,
.single_add_to_cart_button:focus-visible,
.bng-buy-now:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 162, 76, 0.4), 0 12px 26px rgba(15, 23, 42, 0.12);
}

.bngc-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 10px;
    background: var(--bng-accent);
    color: var(--bng-primary);
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid rgba(212, 162, 76, 0.4);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(212, 162, 76, 0.24);
}

.bngc-header-cta:hover,
.bngc-header-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(12, 18, 24, 0.12), 0 12px 26px rgba(194, 164, 100, 0.32);
}

.bngc-card a:focus-visible,
.bngc-list-item a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(194, 164, 100, 0.26);
    border-radius: 10px;
}

.bngc-card,
.bngc-list-item {
    padding: clamp(20px, 1.3vw + 12px, 28px);
}

.bng-card,
.bngc-card {
    will-change: transform, box-shadow;
    transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out), background-color var(--motion-base) var(--ease-out);
}

.bng-card:hover,
.bng-card:focus-within,
.bngc-card:hover,
.bngc-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    border-color: rgba(212, 162, 76, 0.36);
}

body.bngc-shop-page .site-content,
body.bngc-shop-page .ast-container,
body.bngc-shop-page .content-area {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .bngc-card,
    .bngc-list-item,
    .bngc-cta,
    .bngc-header-cta,
    .bngc-faq-item {
        border: 1px solid var(--bng-border-soft);
        background: var(--bng-bg-soft);
        color: var(--bng-primary);
        font-weight: 700;
        letter-spacing: 0.04em;
    }

    .bngc-card:hover,
    .bngc-card:focus-within,
    .bngc-list-item:hover,
    .bngc-list-item:focus-within,
    .bngc-cta:hover,
    .bngc-cta:focus-visible {
        border-color: var(--bng-accent);
        background: rgba(212, 162, 76, 0.15);
        color: var(--bng-accent);
    }

    .bngc-faq-item:focus-within {
        transform: none !important;
        box-shadow: none;
    }
}

.bngc-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 18px 0 6px;
}

.bngc-kpi {
    padding: 14px 16px;
    border: 1px solid var(--bngc-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(12, 26, 35, 0.06);
}

.bngc-kpi-value {
    display: block;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 28px;
    color: var(--bngc-ink);
    letter-spacing: -0.01em;
}

.bngc-kpi-label {
    display: block;
    margin-top: 6px;
    color: var(--bngc-muted);
    font-size: 14px;
}

.bngc-trust-block {
    margin: 40px 0 20px;
    padding: 24px;
    border: 1px solid var(--bngc-border, #e5e7eb);
    border-radius: 16px;
    background: linear-gradient(180deg, #f9fafb 0%, #f1f5f9 100%);
    box-shadow: 0 14px 28px rgba(12, 26, 35, 0.07);
    color: var(--bngc-ink, #0f172a);
}

.bngc-trust-block__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr);
    gap: 22px;
    align-items: center;
}

.bngc-trust-block__content {
    display: grid;
    gap: 10px;
}

.bngc-trust-block__eyebrow {
    margin: 0;
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: var(--bngc-type-muted);
    font-weight: 800;
    color: #475569;
}

.bngc-trust-block__title {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.bngc-trust-block__lead {
    margin: 0;
    font-size: 15px;
    color: #1f2937;
    line-height: 1.7;
}

.bngc-trust-block__label {
    margin: 10px 0 4px;
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
}

.bngc-trust-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.bngc-trust-block__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    font-weight: 700;
    color: #0f172a;
}

.bngc-trust-block__bullet {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #e0e7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bngc-trust-block__bullet::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #1d4ed8;
}

.bngc-trust-block__visual {
    margin: 0;
    display: grid;
    gap: 8px;
    align-content: start;
}

.bngc-trust-block__image {
    border: 1px solid #dfe6f2;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bngc-trust-block__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bngc-trust-block__caption {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 960px) {
    .bngc-trust-block {
        padding: 20px;
    }

    .bngc-trust-block__grid {
        grid-template-columns: 1fr;

        /* --- CRO / Mobile refinements --- */
        .bngc-mobile-cta {
            position: fixed;
            left: 12px;
            right: 12px;
            bottom: calc(12px + env(safe-area-inset-bottom, 0px));
            display: flex;
            align-items: stretch;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 14px;
            background: #0f172a;
            color: #f8fafc;
            box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.32);
            z-index: 30;
            max-width: 960px;
            margin: 0 auto;
        }

        .bngc-mobile-cta__price {
            display: flex;
            flex-direction: column;
            gap: 4px;
            justify-content: center;
            min-width: 0;
            flex: 1;
        }

        .bngc-mobile-cta__value {
            font-weight: 900;
            letter-spacing: -0.01em;
        }

        .bngc-mobile-cta__actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            width: 55%;
        }

        .bngc-mobile-cta__btn {
            width: 100%;
            appearance: none;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 12px;
            padding: 12px;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f97316);
            color: #0f172a;
            box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
            text-align: center;
        }

        .bngc-mobile-cta__btn--ghost {
            background: rgba(255, 255, 255, 0.08);
            color: #f8fafc;
            border-color: rgba(255, 255, 255, 0.18);
            box-shadow: none;
        }

        .bngc-mobile-cta__btn-sub {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: #e2e8f0;
            margin-top: 2px;
        }

        @media (min-width: 961px) {
            .bngc-mobile-cta {
                display: none;
            }
        }

        .bngc-addon--roomy {
            padding: 14px 16px;
            gap: 12px;
        }

        .bngc-addon__price {
            margin-left: auto;
            font-weight: 800;
            color: #0f172a;
            white-space: nowrap;
        }

        .bngc-addons-stack.is-highlighted,
        .bngc-addons-stack.is-highlighted .bngc-addons-card {
            box-shadow: 0 0 0 2px #f59e0b;
            transition: box-shadow 180ms ease;
        }

        .bng-accordion .bng-acc-content {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transform: translateY(2px);
            transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease;
            will-change: max-height, opacity, transform;
        }

        .bng-accordion.is-open .bng-acc-content {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .bng-accordion .bng-acc-content {
                transition: none;
                transform: none;
            }
        }

        .bng-desc__teaser,
        .bngc-materials-card__teaser {
            display: -webkit-box;
            line-clamp: 2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
            color: #475569;
            margin: 8px 0;
        }

        .bng-acc-toggle__action {
            margin-left: 8px;
            font-size: 13px;
            color: #2563eb;
            font-weight: 800;
        }

        .bngc-materials-card.is-expanded .bngc-materials-card__teaser {
            display: none;
        }

        .bngc-checkout-trustlines {
            list-style: none;
            padding: 10px 12px;
            margin: 8px 0 0;
            border-radius: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            display: grid;
            gap: 6px;
            font-weight: 700;
            color: #0f172a;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .bngc-breadcrumbs {
                display: none;
            }

            .woocommerce form .form-row {
                width: 100%;
            }

            .woocommerce-checkout .col2-set .col-1,
            .woocommerce-checkout .col2-set .col-2,
            .woocommerce-checkout .col2-set {
                width: 100%;
                float: none;
                margin: 0;
            }

            .woocommerce-checkout #order_review_heading {
                display: none;
            }

            .bngc-order-summary__panel {
                display: none;
            }

            .bngc-order-summary__panel.is-open {
                display: block;
            }

            .bngc-order-summary__toggle {
                width: 100%;
                text-align: left;
                padding: 12px 14px;
                border-radius: 12px;
                background: #0f172a;
                color: #f8fafc;
                border: 0;
                font-weight: 800;
            }

            .bngc-order-summary__toggle span {
                font-size: 13px;
                font-weight: 700;
                opacity: 0.9;
            }

            .bngc-order-summary {
                margin-bottom: 14px;
            }
        }
    }

    .bngc-trust-block__visual {
        order: -1;
    }
}

.bngc-faq {
    display: grid;
    gap: 20px;
    margin: 56px 0 0;
}

.bngc-faq__head {
    display: grid;
    gap: 8px;
}

.bngc-faq__head h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.18;
}

.bngc-faq__items {
    display: grid;
    gap: 14px;
}

.bngc-faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    background: #ffffff;
    padding: 20px 22px;
    box-shadow: 0 14px 32px rgba(14, 42, 71, 0.04);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.bngc-faq-item:hover,
.bngc-faq-item:focus-within {
    border-color: rgba(14, 42, 71, 0.16);
    box-shadow: 0 18px 44px rgba(14, 42, 71, 0.08);
    transform: translateY(-1px);
}

.bngc-faq-item[open] {
    border-color: rgba(14, 42, 71, 0.14);
    background: rgba(14, 42, 71, 0.02);
}

.bngc-faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--bngc-ink);
    padding: 0;
}

.bngc-faq-item__summary::-webkit-details-marker {
    display: none;
}

.bngc-faq-item__q {
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}

.bngc-faq-item__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0e2a47;
    transition: transform 0.24s ease;
}

.bngc-faq-item__icon::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.bngc-faq-item[open] .bngc-faq-item__icon {
    transform: rotate(180deg);
}

.bngc-faq-item__summary:focus-visible {
    outline: none;
}

.bngc-faq-item:focus-within {
    box-shadow: 0 18px 44px rgba(14, 42, 71, 0.08), var(--bngc-focus-ring);
}

.bngc-faq-item__a {
    padding-top: 12px;
    color: var(--bngc-muted-ink);
    font-size: 15px;
    line-height: var(--bngc-text-line-height);
}

.bngc-faq-item__a p {
    margin: 0 0 10px;
}

.bngc-faq-item__a p:last-child {
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .bngc-hero {
        padding: 78px 0 70px;
    }

    .bngc-hero h1 {
        font-size: var(--bngc-type-h1);
    }

    .bngc-list-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bngc-container {
        padding: 0 18px;
    }

    .bngc-hero h1 {
        font-size: var(--bngc-type-h1);
    }

    .bngc-hero-lead {
        font-size: 17px;
    }

    .bngc-card,
    .bngc-list-item {
        padding: clamp(16px, 4vw, 20px);
    }
}

.bngc-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 56px;
    color: #0f172a;
    font-size: var(--bngc-type-body);
    line-height: var(--bngc-text-line-height);
}

.bngc-hero {
    padding: 12px 8px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.bngc-hero.is-motion-prep {
    opacity: 0;
    transform: translateY(6px);
}

.bngc-hero.is-motion-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--motion-slow) var(--ease-out), transform var(--motion-slow) var(--ease-out);
}

.bngc-hero__eyebrow {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 12px;
    font-size: var(--bngc-type-muted);
    letter-spacing: 0.03em;
    text-transform: none;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-weight: 600;
}

.bngc-hero__title {
    margin: 0 0 12px;
    font-size: var(--bngc-type-h1);
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.bngc-hero__lead {
    margin: 0;
    max-width: 820px;
    font-size: 18px;
    color: #1e293b;
}

.bngc-section {
    margin: var(--bngc-section-gap) 0 0;
    padding: clamp(28px, 4vw + 16px, 72px) clamp(20px, 3vw, 32px);
    background: var(--bngc-surface);
    border: 1px solid var(--bngc-border);
    border-radius: var(--bngc-radius-lg);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.bngc-section--muted {
    background: linear-gradient(135deg, #f6f7fb 0%, #eef2ff 100%);
    border-color: rgba(31, 75, 255, 0.16);
}

.bngc-section__header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.bngc-section__eyebrow {
    display: inline-block;
    font-size: var(--bngc-type-muted);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    color: #475569;
}

.bngc-section h2 {
    margin: 0;
    font-size: var(--bngc-type-h2);
    line-height: 1.2;
    font-family: var(--bngc-font-sans);
    font-weight: 650;
    letter-spacing: -0.01em;
}

.bngc-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px 22px;
}

.bngc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

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

.bngc-kpi {
    padding: 18px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.bngc-kpi:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.bngc-kpi__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.bngc-kpi__title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.bngc-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.bngc-list li {
    padding-left: 6px;
    color: #1f2937;
}

.bngc-disclaimer {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(212, 162, 76, 0.08);
    border: 1px solid rgba(212, 162, 76, 0.28);
    color: var(--bng-text-main);
}

.bngc-cta {
    border: 1px solid var(--bng-border-soft);
    background: var(--bng-bg-card);
}

.bngc-cta__content {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 18px;
    align-items: center;
}

.bngc-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.bngc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.bngc-button--primary {
    color: var(--bng-primary);
    background: var(--bng-accent);
    border: 1px solid rgba(212, 162, 76, 0.4);
    box-shadow: 0 10px 18px rgba(212, 162, 76, 0.24);
}

.bngc-button--primary:hover {
    transform: translateY(-1px);
    background: #e0b86c;
}

.bngc-button--ghost {
    color: var(--bng-primary);
    background: transparent;
    border: 1px solid #cbd5e1;
}

.bngc-button--ghost:hover {
    transform: translateY(-1px);
    background: #f8fafc;
}

@media (max-width: 720px) {
    .bngc-page {
        padding: 32px 16px;
    }

    .bngc-hero__title {
        font-size: 26px;
    }

    .bngc-section {
        margin-top: clamp(28px, 6vw, 44px);
        padding: clamp(24px, 6vw, 44px) clamp(16px, 4vw, 24px);
    }

    .bngc-cta__content {
        grid-template-columns: 1fr;
    }

    .bngc-cta__actions {
        justify-content: flex-start;
    }
}

.bngc-header {
    background: #ffffff;
    color: #0f172a;
    padding: 0;
    border: 0;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.bngc-header__top {
    background: linear-gradient(90deg, rgba(12, 26, 35, 0.04) 0%, rgba(194, 164, 100, 0.08) 100%);
    color: #0f172a;
    padding: 7px 18px;
    border-bottom: 1px solid rgba(12, 26, 35, 0.08);
}

.bngc-header__top-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.bngc-header__note {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--bngc-type-muted);
    color: #0c1a23;
    text-transform: none;
    letter-spacing: 0.02em;
}

.bngc-header__pulse {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--bngc-gold);
    box-shadow: 0 0 0 6px rgba(194, 164, 100, 0.18);
    border: 1px solid rgba(12, 18, 24, 0.12);
}

.bngc-header__top-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 26, 35, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bngc-header__top-link:hover,
.bngc-header__top-link:focus-visible {
    color: #0f766e;
    border-color: rgba(15, 118, 110, 0.36);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.14);
    transform: translateY(-1px);
}

.bngc-header__top-icon {
    font-weight: 700;
}

.bngc-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px 22px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: #ffffff;
}

.bngc-header__brand {
    min-width: 180px;
}

.bngc-header__logo {
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #0f172a;
    text-decoration: none;
    font-size: 20px;
}

.bngc-header__nav {
    flex: 1;
    min-width: 260px;
    display: flex;
    justify-content: center;
}

.bngc-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.bngc-header__menu-item {
    margin: 0;
}

.bngc-header__menu a {
    color: #0f172a;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: var(--bngc-type-muted);
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.bngc-header__menu a:hover,
.bngc-header__menu a:focus {
    color: #0b7285;
    background-color: #f1f5f9;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.bngc-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--bng-primary) 0%, var(--bng-primary-soft) 100%);
    color: var(--bng-text-invert);
    box-shadow: 0 16px 34px rgba(194, 164, 100, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bngc-header__cta:hover,
.bngc-header__cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(31, 42, 55, 0.3);
    filter: brightness(1.02);
}

.bngc-header__cta-icon {
    font-size: 15px;
    line-height: 1;
}

.bngc-is-page header#masthead {
    display: none !important;
}

/* Hide Astra's default page titles on BNGC core pages; hero H1 stays intact. */
.bngc-is-page .entry-header,
.bngc-is-page .page-title,
.bngc-is-page header.entry-header,
.bngc-is-page h1.entry-title {
    display: none;
}

.bngc-hard-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(12, 26, 35, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.bngc-hard-header__topbar {
    background: linear-gradient(90deg, rgba(31, 75, 255, 0.08) 0%, rgba(194, 164, 100, 0.12) 100%);
    border-bottom: 1px solid rgba(12, 26, 35, 0.06);
    padding: 8px 18px;
}

.bngc-hard-header__topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bngc-hard-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.bngc-hard-header__bar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.bngc-hard-header__brand {
    flex: 0 0 auto;
}

.bngc-hard-header__logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--bngc-ink);
    text-decoration: none;

    letter-spacing: 0.08em;
}

.bngc-hard-header__nav {
    flex: 1 1 auto;
}

.bngc-hard-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.bngc-hard-header__menu-item {
    margin: 0;
}

.bngc-hard-header__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--bngc-ink);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: var(--bngc-type-muted);
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.bngc-hard-header__menu-link:hover,
.bngc-hard-header__menu-link:focus-visible {
    color: #0f7ef5;
    background: #f1f5f9;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
    outline: none;
}

.bngc-hard-header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bngc-hard-header__cta {
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 14px 34px rgba(31, 75, 255, 0.24);
    white-space: nowrap;
}

.bngc-hard-header__spacer {
    height: 18px;
}

@media (max-width: 900px) {
    .bngc-hard-header__bar {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .bngc-hard-header__nav {
        order: 3;
        width: 100%;
    }

    .bngc-hard-header__menu {
        justify-content: flex-start;
    }

    .bngc-hard-header__actions {
        order: 2;
        width: 100%;
        justify-content: flex-start;
    }

    .bngc-hard-header__cta {
        width: 100%;
        justify-content: center;
    }
}

.ast-header-search,
.ast-search-menu-icon,
.ast-header-search .search-form,
.ast-site-header-cart .ast-woo-cart-amount,
.ast-site-header-cart .ast-woo-cart-total,
.ast-site-header-cart .amount,
.ast-site-header-cart .count,
.ast-site-header-cart .ast-woo-cart-badge {
    display: none !important;
}

.bngc-footer {
    background: var(--bngc-bg, linear-gradient(135deg, #f9f7f2 0%, #f2eee6 100%));
    color: #0f172a;
    padding: 64px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.04);
}

.bngc-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.bngc-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .bngc-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }
}

@media (min-width: 1024px) {
    .bngc-footer__grid {
        gap: 48px;
    }
}

.bngc-footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bngc-footer__label {
    margin: 0;
    font-size: var(--bngc-type-muted);
    letter-spacing: 0.03em;
    text-transform: none;
    color: #7c8291;
    font-weight: 700;
}

.bngc-footer__stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bngc-footer__stack--meta {
    gap: 12px;
}

.bngc-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bngc-footer__meta {
    font-size: var(--bngc-type-muted);
    letter-spacing: 0.03em;
    text-transform: none;
    color: #8a90a3;
}

.bngc-footer__link {
    color: #1f2737;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
}

.bngc-footer__link:hover,
.bngc-footer__link:focus {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 1;
}

.bngc-footer__link--static {
    pointer-events: none;
}

.bngc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #6b7280;
    font-size: 14px;
}

.bngc-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.bngc-footer__copyright {
    font-weight: 600;
}

.bngc-is-page footer#colophon {
    display: none;
}

@media (max-width: 640px) {
    .bngc-footer {
        padding: 50px 0 26px;
    }

    .bngc-footer__inner {
        padding: 0 18px;
        gap: 32px;
    }

    .bngc-footer__bottom {
        align-items: flex-start;
    }
}

/* UX polish: spacing, separators, and buttons */
.bngc-section {
    position: relative;
    margin: var(--bngc-section-gap) 0 0;
    padding: clamp(28px, 4vw + 16px, 72px) clamp(20px, 3vw, 32px);
    background: var(--bngc-surface);
    border: 1px solid var(--bngc-border);
    border-radius: var(--bngc-radius-lg);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.bngc-section:first-of-type {
    margin-top: calc(var(--bngc-section-gap) * 0.65);
}

.bngc-section+.bngc-section {
    margin-top: calc(var(--bngc-section-gap) + 18px);
}

.bngc-section__sub,
.bngc-hero__lead,
.bngc-hero-lead,
.bngc-card p,
.bngc-list-excerpt,
.bngc-faq-item__a p {
    line-height: var(--bngc-text-line-height);
}

.bngc-kpi__eyebrow {
    color: var(--bngc-gold);
}

.bngc-disclaimer {
    background: rgba(194, 164, 100, 0.08);
    border: 1px solid rgba(194, 164, 100, 0.24);
}

.bngc-cta,
.bngc-btn,
.bngc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--bngc-radius);
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid var(--bng-border-soft);
    background: var(--bng-bg-card);
    color: var(--bng-primary);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    line-height: 1.1;
}

.bngc-cta:focus-visible,
.bngc-btn:focus-visible,
.bngc-button:focus-visible {
    outline: none;
    box-shadow: var(--bngc-focus-ring);
}

.bngc-btn--primary,
.bngc-cta.is-primary {
    background: var(--bng-accent);
    color: var(--bng-primary);
    border-color: rgba(212, 162, 76, 0.4);
    box-shadow: 0 12px 30px rgba(212, 162, 76, 0.26);
}

.bngc-btn--primary:hover,
.bngc-btn--primary:focus-visible,
.bngc-cta.is-primary:hover,
.bngc-cta.is-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(212, 162, 76, 0.3);
}

.bngc-btn--secondary {
    background: var(--bng-bg-card);
    color: var(--bng-primary);
    border-color: var(--bng-border-strong);
    box-shadow: var(--bng-shadow-soft);
}

.bngc-btn--secondary:hover,
.bngc-btn--secondary:focus-visible {
    background: var(--bng-bg-soft);
    border-color: rgba(212, 162, 76, 0.4);
    color: var(--bng-primary);
}

.bngc-btn--ghost,
.bngc-cta.is-secondary {
    background: transparent;
    color: var(--bng-primary);
    border-color: var(--bng-border-strong);
}

.bngc-btn--ghost:hover,
.bngc-btn--ghost:focus-visible,
.bngc-cta.is-secondary:hover,
.bngc-cta.is-secondary:focus-visible {
    background: rgba(212, 162, 76, 0.12);
    color: var(--bng-primary);
    border-color: rgba(212, 162, 76, 0.4);
}

.bngc-btn:disabled,
.bngc-btn[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.bng-disclaimer {
    background: #faf9f7;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: clamp(18px, 2vw, 26px);
    margin-top: clamp(18px, 2vw, 26px);
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    color: #1f2937;
    line-height: 1.65;
    letter-spacing: 0.005em;
    max-width: 76ch;
    box-shadow: none;
}

.bng-disclaimer[data-sticky-safe="true"] {
    scroll-margin-bottom: var(--bngc-sticky-cta-height, 104px);
}

@media (max-width: 768px) {
    .bng-disclaimer[data-sticky-safe="true"] {
        padding-bottom: calc(var(--bngc-sticky-cta-height, 88px) + 8px);
    }
}

.bng-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.bng-disclaimer-header h3 {
    margin: 0;
    font-size: clamp(17px, 1vw + 16px, 20px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111827;
}

.bng-disclaimer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #374151;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bng-disclaimer-content {
    display: grid;
    gap: 10px;
    font-size: var(--bngc-type-body);
    color: #1f2937;
}

.bng-disclaimer-content p {
    margin: 0;
}

.bng-disclaimer-content p + p {
    margin-top: 8px;
}

.bng-disclaimer-micro {
    font-size: 14px;
    color: #4b5563;
    letter-spacing: 0.01em;
    margin: 0 0 6px;
}

@media (min-width: 769px) {
    .bng-disclaimer {
        margin-top: clamp(18px, 2vw, 26px);
        border-radius: 14px;
        font-size: 14px;
    }

    .bng-disclaimer-summary {
        padding: clamp(18px, 2vw, 22px) clamp(18px, 2vw, 26px);
        gap: 12px;
    }

    .bng-disclaimer-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .bng-disclaimer-title {
        font-size: clamp(17px, 1vw + 16px, 20px);
        line-height: 1.4;
    }

    .bng-disclaimer-body {
        padding: 0 clamp(18px, 2vw, 26px) clamp(18px, 2vw, 22px);
    }

    .bng-disclaimer-content {
        gap: 10px;
    }

    .bng-disclaimer-content p + p {
        margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bng-disclaimer,
    .bng-disclaimer * {
        transition: none !important;
        animation: none !important;
    }
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    border-radius: var(--bngc-radius);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce .button.alt {
    background: linear-gradient(135deg, #cbb181 0%, #c2a464 45%, #b0884a 100%);
    color: #0c1218;
    border: 1px solid rgba(12, 18, 24, 0.12);
    box-shadow: 0 12px 24px rgba(194, 164, 100, 0.26);
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button {
    background: #f8f5ee;
    color: #11151a;
    border: 1px solid rgba(12, 26, 35, 0.12);
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: #f1ecdf;
    color: #0c1218;
}

.woocommerce div.product .product_meta,
.woocommerce div.product .sku_wrapper,
.woocommerce div.product form.cart .quantity,
.woocommerce table.shop_table .product-quantity,
.woocommerce table.shop_table thead {
    display: none !important;
}

@media (max-width: 720px) {
    .bngc-section {
        margin-top: 36px;
        padding: calc(var(--bngc-section-gap) - 12px) 20px;
    }

    .bngc-section+.bngc-section {
        padding-top: calc(var(--bngc-section-gap) - 12px);
    }
}

@media (max-width: 960px) {
    .bngc-header__inner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 14px;
    }

    .bngc-header__nav {
        order: 2;
        width: 100%;
        justify-content: flex-start;
    }

    .bngc-header__menu {
        justify-content: flex-start;
    }

    .bngc-header__cta {
        order: 3;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .bngc-header__inner {
        padding: 16px 20px 18px;
    }

    .bngc-header__top-inner {
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .bngc-header__menu {
        gap: 12px;
    }

    .bngc-header__menu a {
        padding: 9px 10px;
    }

    .bngc-header__cta {
        width: 100%;
        justify-content: center;
    }
}

.bngc-shop-page .ast-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 768px) {

    .bngc-header,
    .bngc-hard-header {
        padding: 8px 14px;
        box-shadow: 0 10px 24px rgba(12, 26, 35, 0.12);
    }

    .bngc-header__top {
        display: none;
    }

    .bngc-header__inner {
        padding: 10px 0 12px;
        min-height: auto;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .bngc-brand {
        gap: 10px;
    }

    .bngc-brand__name {
        font-size: 18px;
    }

    .bngc-brand__mark {
        width: 34px;
        height: 34px;
        font-size: 12px;
        border-radius: 10px;
    }

    .bngc-nav {
        display: none !important;
    }

    .bngc-header__mobile-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 0;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: none;
        font-size: var(--bngc-type-muted);
        color: #0c1a23;
        text-decoration: none;
    }

    .bngc-header__mobile-link:focus-visible {
        outline: 2px solid rgba(31, 75, 255, 0.6);
        outline-offset: 3px;
    }

    .bngc-header__cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding: 16px 20px;
        z-index: 1100;
        box-shadow: 0 -6px 24px rgba(12, 26, 35, 0.12);
    }

    body.bngc-is-page,
    body.bngc-is-product {
        padding-bottom: 92px;
    }
}