/* ============================================================
   Berlin Corporate v3 – Modern Trending Design System
   Inspired by Business Consulting 3 reference demo
   ============================================================ */

/* Default Poppins is loaded from berlin-corporate-show when no tenant Google Font is set. */

/* ─── CSS Custom Properties ─── */
:root {
    --bc-primary:      #0d2040;
    --bc-accent:       #1467c8;
    --bc-gold:         #e8a020;
    --bc-dark:         #0a1628;
    --bc-dark-2:       #111827;
    --bc-text:         #3d3d3d;
    --bc-muted:        #6b7280;
    --bc-surface:      #f4f4f4;
    --bc-surface-2:    #eef0f3;
    --bc-border:       #e0e0e0;
    --bc-white:        #ffffff;
    --bc-shadow-sm:    0 2px 8px rgba(13,32,64,.07);
    --bc-shadow:       0 8px 32px rgba(13,32,64,.12);
    --bc-shadow-lg:    0 16px 56px rgba(13,32,64,.16);
    --bc-radius:       4px;
    --bc-radius-md:    8px;
    --bc-radius-lg:    12px;
    --bc-radius-xl:    20px;
    --bc-ease:         cubic-bezier(.4,0,.2,1);
    --bc-transition:   .24s var(--bc-ease);
    /* Tenant Site settings inject --font-family on :root; keep Poppins as theme default only when unset */
    --bc-font:         var(--font-family, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.tenant-site-root.theme-berlin-corporate {
    /* Re-bind so scoped rules always pick up tenant font from site settings */
    --bc-font: var(--font-family, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-family: var(--bc-font);
    color: var(--bc-text);
    background: var(--bc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Reset / Base ─── */
.tenant-site-root.theme-berlin-corporate *,
.tenant-site-root.theme-berlin-corporate *::before,
.tenant-site-root.theme-berlin-corporate *::after {
    box-sizing: border-box;
}
.tenant-site-root.theme-berlin-corporate img { max-width: 100%; height: auto; }
.tenant-site-root.theme-berlin-corporate a { text-decoration: none; }

/* ─── Typography ─── */
.tenant-site-root.theme-berlin-corporate h1,
.tenant-site-root.theme-berlin-corporate h2,
.tenant-site-root.theme-berlin-corporate h3,
.tenant-site-root.theme-berlin-corporate h4,
.tenant-site-root.theme-berlin-corporate h5,
.tenant-site-root.theme-berlin-corporate h6 {
    font-family: var(--bc-font);
    font-weight: 700;
    line-height: 1.18;
    color: var(--bc-primary);
    margin-bottom: .5rem;
}
.tenant-site-root.theme-berlin-corporate p { line-height: 1.75; color: var(--bc-text); }

/* ─── Section Spacing System ─── */
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-none       { padding-top: 0;        padding-bottom: 0;       }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-compact     { padding-top: 2.5rem;   padding-bottom: 2.5rem;  }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-default     { padding-top: 4.5rem;   padding-bottom: 4.5rem;  }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-comfortable { padding-top: 6rem;     padding-bottom: 6rem;    }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-spacious    { padding-top: 9rem;     padding-bottom: 9rem;    }
@media (min-width: 992px) {
    .tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-default     { padding-top: 6rem;     padding-bottom: 6rem;    }
    .tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-comfortable { padding-top: 8rem;     padding-bottom: 8rem;    }
    .tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-spacing-spacious    { padding-top: 11rem;    padding-bottom: 11rem;   }
}

/* Section background integration */
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-bg-with_color > [id^="section-"] { background-color: var(--section-local-bg-color, transparent) !important; background-image: none !important; }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-bg-without_color > [id^="section-"] { background-color: transparent !important; background-image: none !important; }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-bg-with_image > [id^="section-"] { background-color: transparent !important; background-image: var(--section-local-bg-image, none) !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.tenant-site-root.theme-berlin-corporate .tenant-section-bg-wrapper.section-bg-with_color_image > [id^="section-"] { background-color: var(--section-local-bg-color, transparent) !important; background-image: var(--section-local-bg-image, none) !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }

/* ─── Buttons ─── */
.tenant-site-root.theme-berlin-corporate .btn-bc-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--color-button, var(--bc-primary));
    color: var(--color-button-text, #fff);
    border: 2px solid transparent;
    padding: .72rem 1.85rem;
    font-weight: 600; font-size: .9rem; letter-spacing: .015em;
    border-radius: var(--bc-radius);
    transition: all var(--bc-transition);
    cursor: pointer;
}
.tenant-site-root.theme-berlin-corporate .btn-bc-primary:hover {
    background: var(--color-button-dark, var(--bc-dark));
    color: var(--color-button-dark-text, #fff);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,32,64,.3);
}
.tenant-site-root.theme-berlin-corporate .btn-bc-outline {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent; color: var(--bc-white);
    border: 2px solid rgba(255,255,255,.55);
    padding: .7rem 1.8rem; font-weight: 600; font-size: .9rem;
    border-radius: var(--bc-radius); transition: all var(--bc-transition);
}
.tenant-site-root.theme-berlin-corporate .btn-bc-outline:hover {
    background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.85); color: #fff;
}
.tenant-site-root.theme-berlin-corporate .btn-bc-gold {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--bc-gold); color: var(--bc-primary);
    border: 2px solid transparent; padding: .72rem 1.85rem;
    font-weight: 700; font-size: .9rem; border-radius: var(--bc-radius);
    transition: all var(--bc-transition);
}
.tenant-site-root.theme-berlin-corporate .btn-bc-gold:hover { background: #d4901a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,160,32,.4); color: var(--bc-primary); }
.tenant-site-root.theme-berlin-corporate .btn-bc-gold.btn-bc-gold--sm { padding: .45rem 1.25rem; font-size: .8rem; }
.tenant-site-root.theme-berlin-corporate .btn-bc-primary.btn-bc-primary--sm { padding: .45rem 1.25rem; font-size: .8rem; }

/* Bootstrap .btn overrides */
.tenant-site-root.theme-berlin-corporate .btn-primary { background-color: var(--color-button, var(--bc-primary)) !important; border-color: var(--color-button, var(--bc-primary)) !important; color: var(--color-button-text, #fff) !important; font-weight: 600; border-radius: var(--bc-radius); transition: all var(--bc-transition); }
.tenant-site-root.theme-berlin-corporate .btn-primary:hover { background-color: var(--color-button-dark, var(--bc-dark)) !important; border-color: var(--color-button-dark, var(--bc-dark)) !important; color: #fff !important; box-shadow: 0 4px 16px rgba(13,32,64,.25) !important; }
.tenant-site-root.theme-berlin-corporate form button[type="submit"].btn, .tenant-site-root.theme-berlin-corporate form .btn[type="submit"] { background-color: var(--color-button, var(--bc-primary)) !important; border-color: var(--color-button, var(--bc-primary)) !important; color: var(--color-button-text, #fff) !important; }

/* ─── Section Eyebrow Label ─── */
.bc-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--color-primary, var(--bc-accent));
    margin-bottom: .75rem;
}
.bc-eyebrow::before {
    content: ''; display: inline-block; width: 28px; height: 2.5px;
    background: currentColor; border-radius: 2px; flex-shrink: 0;
}
.bc-eyebrow.bc-eyebrow-light { color: rgba(255,255,255,.7); }
.bc-eyebrow.bc-eyebrow-light::before { background: rgba(255,255,255,.6); }
.bc-eyebrow.bc-eyebrow-gold { color: var(--bc-gold); }
.bc-eyebrow.bc-eyebrow-gold::before { background: var(--bc-gold); }

.bc-section-title { font-size: clamp(1.75rem, 3.8vw, 2.6rem); font-weight: 700; color: var(--bc-primary); line-height: 1.15; margin-bottom: 1rem; }
.bc-section-title.bc-title-light { color: #fff; }
.bc-section-lead { font-size: 1.02rem; color: var(--bc-muted); line-height: 1.75; }
.bc-section-lead.bc-lead-light { color: rgba(255,255,255,.78); }

.bc-divider-line { display: inline-block; width: 48px; height: 3px; background: var(--color-primary, var(--bc-accent)); border-radius: 3px; }
.bc-divider-line.bc-divider-gold { background: var(--bc-gold); }

/* ─── Shape Dividers ─── */
.bc-shape-divider { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; pointer-events: none; z-index: 2; }
.bc-shape-divider.bc-shape-top { bottom: auto; top: 0; }
.bc-shape-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }
@media (min-width: 768px) { .bc-shape-divider svg { height: 90px; } }
@media (min-width: 1200px) { .bc-shape-divider svg { height: 120px; } }

/* ─── Scroll Animations ─── */
.bc-anim { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--bc-ease), transform .6s var(--bc-ease); }
.bc-anim.bc-anim-left  { transform: translateX(-28px); }
.bc-anim.bc-anim-right { transform: translateX(28px); }
.bc-anim.bc-anim-scale { transform: scale(.93); }
.bc-anim.bc-anim-ready { opacity: 1; transform: none; }

/* Legacy / section alias — same reveal as .bc-anim (used by slider, map, video, cards) */
.bc-fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--bc-ease), transform .55s var(--bc-ease); }
.bc-fade-in-right { opacity: 0; transform: translateX(28px); transition: opacity .55s var(--bc-ease), transform .55s var(--bc-ease); }
.bc-fade-in.bc-anim-ready,
.bc-fade-in-right.bc-anim-ready { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .bc-anim,
    .bc-fade-in,
    .bc-fade-in-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .bc-gallery-item,
    .tenant-site-root.theme-berlin-corporate .bc-gallery-item__media img,
    .bc-gallery-item__panel,
    .bc-gallery-item__corners::before,
    .bc-gallery-item__corners::after {
        transition: none !important;
    }
    .bc-gallery-item:hover,
    .tenant-site-root.theme-berlin-corporate .bc-gallery-item:hover .bc-gallery-item__media img {
        transform: none !important;
    }
    .bc-video-gallery-card,
    .bc-video-gallery-card__shine,
    .bc-video-gallery-card__corners::before,
    .bc-video-gallery-card__corners::after,
    .bc-video-stage__shine,
    .bc-video-stage__corners::before,
    .bc-video-stage__corners::after {
        transition: none !important;
    }
    .bc-video-gallery-card:hover {
        transform: none !important;
    }
    .bc-video-poster__btn-play,
    .bc-video-poster__btn-play-bg,
    .bc-video-poster__fill {
        transition: none !important;
    }
    .tenant-site-root.theme-berlin-corporate .bc-video-feature:hover .bc-video-poster__fill {
        transform: none !important;
    }
    .bc-video-poster__btn-play:hover {
        transform: translate(-50%, -50%) !important;
    }
}

/* ─── ════════════════════════════════════
   HEADER
═══════════════════════════════════════ ─── */
.bc-topbar {
    /* Website settings: dark_text_color → --dark / --color-text-dark; else theme token */
    background: var(--dark, var(--color-text-dark, var(--bc-dark)));
    padding: .5rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.8);
}
.bc-topbar a { color: rgba(255,255,255,.8); text-decoration: none; transition: color var(--bc-transition); }
.bc-topbar a:hover { color: #fff; }
.bc-topbar-social a { width: 28px; height: 28px; border-radius: 4px; background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; transition: background var(--bc-transition); }
.bc-topbar-social a:hover { background: rgba(255,255,255,.22); }

.bc-header {
    background: var(--bc-white);
    border-bottom: 1px solid var(--bc-border);
    position: sticky; top: 0; z-index: 1040;
    transition: box-shadow var(--bc-transition), background var(--bc-transition);
}
.bc-header.bc-scrolled { box-shadow: 0 4px 24px rgba(13,32,64,.1); }
.bc-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; padding: .5rem 0; }

.bc-logo-text { font-size: 1.35rem; font-weight: 800; color: var(--bc-primary); letter-spacing: -.01em; }
.bc-logo-text:hover { color: var(--bc-accent); }
.bc-logo-img {
    max-height: var(--tenant-logo-max-height, 44px);
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bc-nav { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.bc-nav-item { position: relative; }
.bc-nav-link {
    display: flex; align-items: center; gap: .3rem;
    padding: .45rem .95rem; font-size: .875rem; font-weight: 500;
    color: var(--bc-primary); border-radius: var(--bc-radius);
    transition: color var(--bc-transition), background var(--bc-transition);
    white-space: nowrap; letter-spacing: .01em;
}
.bc-nav-link:hover, .bc-nav-link.active { color: var(--color-primary, var(--bc-accent)); background: rgba(20,103,200,.06); }
.bc-nav-link .bc-chevron { font-size: .6em; opacity: .6; transition: transform var(--bc-transition); }
.bc-nav-item:hover .bc-chevron { transform: rotate(180deg); }

.bc-dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; background: var(--bc-white); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg); box-shadow: var(--bc-shadow-lg); padding: .5rem; list-style: none; margin: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); transition: opacity .18s var(--bc-ease), transform .18s var(--bc-ease), visibility .18s; z-index: 100; }
/* Only the top-level panel under .bc-nav-item — nested flyouts also use .bc-dropdown and must not open here */
.bc-nav-item:hover > .bc-dropdown,
.bc-nav-item:focus-within > .bc-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.bc-dropdown li, .bc-nav-flyout li { list-style: none; margin: 0; }
.bc-dropdown a, .bc-nav-flyout a { display: block; padding: .5rem .85rem; font-size: .85rem; font-weight: 500; color: var(--bc-text); border-radius: var(--bc-radius); transition: color var(--bc-transition), background var(--bc-transition); }
.bc-dropdown a:hover, .bc-nav-flyout a:hover { color: var(--color-primary, var(--bc-accent)); background: var(--bc-surface); }
.bc-dropdown-parent { position: relative; z-index: 1; }
/* Invisible hover bridge so pointer can reach flyout without closing the gap */
.bc-dropdown-parent::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 14px;
    height: 100%;
    min-height: 2.25rem;
    z-index: 109;
}
.bc-dropdown-parent:hover,
.bc-dropdown-parent:focus-within { z-index: 5; }
/* Nested only: never use .bc-dropdown here — it must not match .bc-nav-item:hover rules */
.bc-nav-flyout {
    position: absolute; top: 0; left: calc(100% - 4px); margin-left: 0; margin-top: 0; min-width: 200px;
    background: var(--bc-white); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg);
    box-shadow: var(--bc-shadow-lg); padding: .5rem; list-style: none;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(4px);
    transition: opacity .18s var(--bc-ease), transform .18s var(--bc-ease), visibility .18s;
    z-index: 120;
}
.bc-dropdown-parent:hover > .bc-nav-flyout,
.bc-dropdown-parent:focus-within > .bc-nav-flyout {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0);
}
.bc-chevron-end { display: inline-flex; align-items: center; justify-content: center; min-width: 1em; }
.bc-chevron-end .fa-solid { font-size: 0.65em; opacity: 0.7; line-height: 1; }

/* Flyouts: beat stray theme/global rules so nested panels stay closed until row hover */
.tenant-site-root.theme-berlin-corporate .bc-nav-item > .bc-dropdown { overflow: visible; }
.tenant-site-root.theme-berlin-corporate .bc-dropdown .bc-nav-flyout {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.tenant-site-root.theme-berlin-corporate .bc-dropdown .bc-dropdown-parent:hover > .bc-nav-flyout,
.tenant-site-root.theme-berlin-corporate .bc-dropdown .bc-dropdown-parent:focus-within > .bc-nav-flyout {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.bc-header-cta { display: inline-flex; align-items: center; gap: .45rem; background: var(--color-button, var(--bc-primary)); color: var(--color-button-text, #fff) !important; padding: .55rem 1.4rem; font-size: .865rem; font-weight: 600; border-radius: var(--bc-radius); transition: all var(--bc-transition); white-space: nowrap; }
.bc-header-cta:hover { background: var(--color-button-dark, var(--bc-dark)); color: #fff !important; box-shadow: var(--bc-shadow); }

.bc-header-phone { display: flex; align-items: center; gap: .4rem; font-size: .855rem; font-weight: 600; color: var(--bc-primary); transition: color var(--bc-transition); }
.bc-header-phone:hover { color: var(--color-primary, var(--bc-accent)); }

.bc-hamburger { background: none; border: 1px solid var(--bc-border); border-radius: var(--bc-radius); padding: .45rem .65rem; cursor: pointer; color: var(--bc-primary); transition: all var(--bc-transition); }
.bc-hamburger:hover { background: var(--bc-surface); border-color: var(--bc-primary); }

/* Offcanvas mobile nav */
.bc-offcanvas-nav a { display: block; padding: .65rem 1rem; font-size: .93rem; font-weight: 500; color: var(--bc-primary); border-radius: var(--bc-radius); transition: background var(--bc-transition), color var(--bc-transition); }
.bc-offcanvas-nav a:hover { background: var(--bc-surface); color: var(--color-primary, var(--bc-accent)); }
.bc-offcanvas-sub { padding-left: 1rem; }
.bc-offcanvas-sub a { font-size: .85rem; color: var(--bc-muted); padding: .4rem .85rem; }

/* ─── ════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ ─── */

/* Force white text inside hero — override global heading/paragraph colors */
.bc-hero-section h1,
.bc-hero-section h2,
.bc-hero-section h3,
.bc-hero-section h4,
.bc-hero-section h5,
.bc-hero-section p,
.bc-hero-section span,
.tenant-site-root.theme-berlin-corporate .bc-hero-section h1,
.tenant-site-root.theme-berlin-corporate .bc-hero-section h2,
.tenant-site-root.theme-berlin-corporate .bc-hero-section p {
    color: #fff !important;
}

.bc-hero-section {
    position: relative; overflow: hidden; min-height: 580px;
    background: var(--bc-primary, #0d2040);
    display: block;
    isolation: isolate;
}
.bc-hero-bg-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center top; z-index: 0;
    display: block; min-width: 100%; min-height: 100%;
}
.bc-hero-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(118deg, rgba(13,32,64,.50) 0%, rgba(20,103,200,.30) 55%, rgba(13,32,64,.48) 100%);
}
.bc-hero-pattern {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.012'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 1200px) { .bc-hero-section { min-height: 640px; } }

.bc-hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--bc-gold); margin-bottom: 1rem; }
.bc-hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bc-gold); flex-shrink: 0; }
.bc-hero-heading {
    font-size: clamp(2.1rem, 5.5vw, 3.75rem); font-weight: 800;
    color: #fff; line-height: 1.1; margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.bc-hero-heading .bc-highlight { color: var(--bc-gold); }
.bc-hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 2rem; max-width: 520px; }
.bc-hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.bc-hero-icon-wrap { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: 10px; font-size: 1.1rem; color: var(--bc-gold); border: 1px solid rgba(255,255,255,.18); margin-bottom: 1.5rem; }

.bc-hero-image-wrap { position: relative; }
.bc-hero-image-wrap img { border-radius: var(--bc-radius-xl); width: 100%; display: block; object-fit: cover; box-shadow: 0 32px 80px rgba(0,0,0,.4); }
.bc-hero-float-badge {
    position: absolute; bottom: 24px; left: -20px;
    background: #fff; border-radius: var(--bc-radius-lg);
    padding: 1rem 1.25rem; box-shadow: 0 12px 36px rgba(13,32,64,.2);
    display: flex; align-items: center; gap: .75rem;
    min-width: 170px;
}
@media (max-width: 575px) { .bc-hero-float-badge { position: static; margin-top: 1rem; display: inline-flex; } }
.bc-hero-float-badge .badge-num { font-size: 1.6rem; font-weight: 800; color: var(--bc-primary); line-height: 1; }
.bc-hero-float-badge .badge-lbl { font-size: .72rem; font-weight: 600; color: var(--bc-muted); text-transform: uppercase; letter-spacing: .05em; }

/* Slider hero — carousel fills the section fully */
.bc-hero-section .carousel { height: 580px; overflow: hidden; }
.bc-hero-section .carousel-inner { height: 100%; }
.bc-hero-section .carousel-item { height: 100%; overflow: hidden; }
@media (max-width: 767px) {
    .bc-hero-section .carousel,
    .bc-hero-section .carousel-inner,
    .bc-hero-section .carousel-item { height: 420px; }
}

/* Hero Shape Divider */
.bc-hero-shape {
    position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 3;
    line-height: 0; pointer-events: none;
}
.bc-hero-shape svg { display: block; width: 100%; }

/* Floating service mini-cards below hero */
.bc-hero-cards {
    position: relative; z-index: 4;
    margin-top: -90px;
    padding-bottom: 1rem;
}
@media (max-width: 767px) { .bc-hero-cards { margin-top: -50px; } }
@media (max-width: 575px) { .bc-hero-cards { margin-top: 0; } }
.bc-hero-mini-card {
    background: var(--bc-white); border-radius: var(--bc-radius-lg);
    padding: 1.5rem 1.25rem; text-align: center;
    box-shadow: 0 12px 40px rgba(13,32,64,.12);
    border: 1px solid rgba(13,32,64,.06);
    transition: transform var(--bc-transition), box-shadow var(--bc-transition);
    height: 100%;
    opacity: 1 !important;
    transform: none;
}
.bc-hero-mini-card:hover { transform: translateY(-4px) !important; box-shadow: 0 20px 52px rgba(13,32,64,.16); }
.bc-hero-mini-card-icon {
    width: 60px; height: 60px; border-radius: var(--bc-radius-md);
    background: rgba(20,103,200,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--color-primary, var(--bc-accent));
    margin: 0 auto .9rem;
    transition: background var(--bc-transition), color var(--bc-transition);
}
.bc-hero-mini-card:hover .bc-hero-mini-card-icon { background: var(--color-primary, var(--bc-accent)); color: #fff; }
.bc-hero-mini-card-icon img { width: 30px; height: 30px; object-fit: contain; }
.bc-hero-mini-card h4 { font-size: .97rem; font-weight: 700; color: var(--bc-primary); margin-bottom: .3rem; }
.bc-hero-mini-card p { font-size: .82rem; color: var(--bc-muted); line-height: 1.55; margin-bottom: 0; }
.bc-hero-mini-card-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 600; color: var(--color-primary, var(--bc-accent)); margin-top: .7rem; transition: gap var(--bc-transition); }
.bc-hero-mini-card-link:hover { gap: .55rem; }

/* ─── ════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ ─── */
/* ─── About Section ─── */
.bc-about-media { position: relative; }

/* Single image with accent border */
.bc-about-single-img-wrap {
    position: relative; border-radius: var(--bc-radius-xl); overflow: hidden;
    box-shadow: 0 24px 64px rgba(13,32,64,.18);
}
.bc-about-single-img-wrap img {
    width: 100%; display: block; object-fit: cover;
    transition: transform .55s var(--bc-ease);
    max-height: 420px;
}
.bc-about-single-img-wrap:hover img { transform: scale(1.03); }
.bc-about-img-accent {
    position: absolute; bottom: -12px; right: -12px; z-index: -1;
    width: 70%; height: 70%;
    border: 3px solid var(--color-primary, var(--bc-accent));
    border-radius: var(--bc-radius-xl);
    opacity: .25;
    pointer-events: none;
}

/* Feature strip below the two-column block */
.bc-about-feature-strip {
    display: flex; flex-wrap: wrap; gap: 0;
    border-top: 1px solid var(--bc-border, #e2e8f0);
    padding-top: 2rem;
}
.bc-about-feature-item {
    display: flex; align-items: center; gap: .75rem;
    flex: 1 1 180px; padding: .75rem 1.25rem .75rem 0;
    border-right: 1px solid var(--bc-border, #e2e8f0);
}
.bc-about-feature-item:last-child { border-right: none; }
.bc-about-feature-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(20,103,200,.09);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--color-primary, var(--bc-accent));
    flex-shrink: 0;
}
.bc-about-feature-label {
    font-size: .9rem; font-weight: 600; color: var(--bc-primary, #0d2040);
    line-height: 1.3;
}
@media (max-width: 767px) {
    .bc-about-feature-item {
        flex: 1 1 calc(50% - 1rem);
        border-right: none;
        border-bottom: 1px solid var(--bc-border, #e2e8f0);
        padding-bottom: 1rem;
    }
    .bc-about-feature-item:nth-last-child(-n+2) { border-bottom: none; }
}

.bc-about-img-wrap {
    border-radius: var(--bc-radius-lg); overflow: hidden;
    box-shadow: 0 8px 32px rgba(13,32,64,.14);
    background: var(--bc-surface-2, #f1f5f9);
}
.bc-about-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .55s var(--bc-ease);
}
.bc-about-img-wrap:hover img { transform: scale(1.04); }

.bc-about-img-tall { min-height: 380px; }
.bc-about-img-wrap:not(.bc-about-img-tall):not(.bc-about-placeholder) { min-height: 172px; }

/* Placeholder blocks */
.bc-about-placeholder {
    display: flex; align-items: center; justify-content: center;
}
.bc-about-img-tall.bc-about-placeholder { min-height: 380px; }
.bc-about-placeholder:not(.bc-about-img-tall) { min-height: 172px; }

/* Experience badge — top-left floating */
.bc-about-exp-badge {
    position: absolute; top: -18px; left: -18px; z-index: 3;
    background: var(--bc-gold, #e8a020);
    color: var(--bc-primary, #0d2040);
    border-radius: var(--bc-radius-lg);
    padding: 1.1rem 1.4rem;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 12px 36px rgba(232,160,32,.35);
    min-width: 110px; text-align: center;
}
.bc-about-exp-num { font-size: 1.65rem; font-weight: 800; line-height: 1; }
.bc-about-exp-lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; opacity: .85; }

/* Stat badge — bottom floating */
.bc-about-stat-badge {
    position: absolute; bottom: -18px; right: 20px; z-index: 3;
    background: #fff;
    border-radius: var(--bc-radius-lg);
    padding: 1rem 1.35rem;
    display: flex; align-items: center; gap: .9rem;
    box-shadow: 0 16px 48px rgba(13,32,64,.16);
    min-width: 200px;
}
.bc-about-stat-badge-icon {
    width: 48px; height: 48px; border-radius: var(--bc-radius-md);
    background: rgba(20,103,200,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--color-primary, var(--bc-accent));
    flex-shrink: 0;
}
.bc-about-stat-badge-num { font-size: 1.6rem; font-weight: 800; color: var(--bc-primary, #0d2040); line-height: 1; }
.bc-about-stat-badge-lbl { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--bc-muted, #64748b); margin-top: .15rem; }

@media (max-width: 575px) {
    .bc-about-exp-badge { top: 0; left: 0; position: static; display: inline-flex; margin-bottom: 1rem; }
    .bc-about-stat-badge { position: static; margin-top: 1rem; display: inline-flex; }
    .bc-about-img-tall { min-height: 240px; }
}

/* Stat block (text column fallback when no image) */
.bc-about-stat { background: var(--color-primary, var(--bc-accent)); color: #fff; border-radius: var(--bc-radius-lg); padding: 1.1rem 1.4rem; display: inline-flex; flex-direction: column; align-items: center; min-width: 110px; }
.bc-about-stat-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.bc-about-stat-lbl { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; opacity: .85; margin-top: .2rem; }

.bc-about-blockquote { border-left: 3px solid var(--color-primary, var(--bc-accent)); padding: .75rem 0 .75rem 1.25rem; font-size: .95rem; color: var(--bc-text); font-style: italic; margin: 0; }

.bc-check-list { list-style: none; padding: 0; margin: 0; }
.bc-check-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .5rem 0; font-size: .93rem; color: var(--bc-text); }
.bc-check-list li .bc-check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--color-primary, var(--bc-accent)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .65rem; flex-shrink: 0; margin-top: .12rem; }

/* ─── ════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ ─── */

/* Image overlay card style (like the reference demo) */
.bc-svc-img-card { position: relative; border-radius: var(--bc-radius-lg); overflow: hidden; box-shadow: var(--bc-shadow); display: block; transition: transform var(--bc-transition), box-shadow var(--bc-transition); background: var(--bc-dark); }
.bc-svc-img-card:hover { transform: translateY(-5px); box-shadow: var(--bc-shadow-lg); }
.bc-svc-img-card-thumb { position: relative; overflow: hidden; height: 260px; }
@media (min-width: 1200px) { .bc-svc-img-card-thumb { height: 280px; } }
.bc-svc-img-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--bc-ease); }
.bc-svc-img-card:hover .bc-svc-img-card-thumb img { transform: scale(1.07); }
.bc-svc-img-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,32,64,0) 25%, rgba(13,32,64,.88) 100%); pointer-events: none; }
.bc-svc-img-card-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1.25rem .75rem; }
.bc-svc-img-card-label h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.bc-svc-img-card-label .bc-svc-line { width: 40px; height: 2.5px; background: var(--bc-gold); border-radius: 2px; }
.bc-svc-img-card-body { padding: 1rem 1.25rem 1.25rem; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.bc-svc-img-card-body p { font-size: .875rem; color: var(--bc-text); line-height: 1.6; margin: 0; flex: 1; }
.bc-svc-img-card-arrow { width: 40px; height: 40px; background: rgba(20,103,200,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--color-primary, var(--bc-accent)); flex-shrink: 0; transition: background var(--bc-transition), color var(--bc-transition); }
.bc-svc-img-card:hover .bc-svc-img-card-arrow { background: var(--color-primary, var(--bc-accent)); color: #fff; }

/* Icon service card style (for mini/carousel) */
.bc-svc-icon-card { background: #fff; border-radius: var(--bc-radius-lg); padding: 2.25rem 1.75rem; text-align: center; border: 1px solid var(--bc-border); transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition); position: relative; overflow: hidden; height: 100%; }
.bc-svc-icon-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--color-primary, var(--bc-accent)); transform: scaleX(0); transition: transform var(--bc-transition); transform-origin: left; }
.bc-svc-icon-card:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow-lg); border-color: transparent; }
.bc-svc-icon-card:hover::after { transform: scaleX(1); }
.bc-svc-icon-card-icon { width: 68px; height: 68px; margin: 0 auto 1rem; background: rgba(20,103,200,.08); border-radius: var(--bc-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--color-primary, var(--bc-accent)); transition: background var(--bc-transition), color var(--bc-transition); }
.bc-svc-icon-card:hover .bc-svc-icon-card-icon { background: var(--color-primary, var(--bc-accent)); color: #fff; }
.bc-svc-icon-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--bc-primary); margin-bottom: .5rem; }
.bc-svc-icon-card p { font-size: .875rem; color: var(--bc-muted); line-height: 1.6; margin-bottom: .85rem; }
.bc-svc-icon-card-link { font-size: .82rem; font-weight: 600; color: var(--color-primary, var(--bc-accent)); display: inline-flex; align-items: center; gap: .3rem; transition: gap var(--bc-transition); }
.bc-svc-icon-card-link:hover { gap: .55rem; }
.bc-svc-icon-card-line { width: 42px; height: 2px; margin: .35rem auto .85rem; }
.bc-svc-icon-card-line img { display: block; width: 100%; height: auto; }

/* ─── ════════════════════════════════════
   WHY US / ABOUT BLOCKS
═══════════════════════════════════════ ─── */
/* Base: no background — controlled by outer wrapper (id="section-...") inline default or tenant override */
.bc-why-section { position: relative; overflow: hidden; }
/* Color-scheme alternating row tints */
.bc-why-section--dark.bc-why-section--alt  { background: rgba(0,0,0,.13); }
.bc-why-section--light.bc-why-section--alt { background: rgba(13,32,64,.04); }
.bc-why-left-img {
    position: absolute; top: 0; left: 0; width: 42%; height: 100%;
    object-fit: cover; display: none;
}
@media (min-width: 992px) { .bc-why-left-img { display: block; } }
.bc-why-overlay {
    position: absolute; top: 0; left: 0; width: 42%; height: 100%;
    background: linear-gradient(160deg, rgba(20,103,200,.92) 0%, rgba(13,32,64,.97) 100%);
    display: none;
}
@media (min-width: 992px) { .bc-why-overlay { display: block; } }

/* Legacy list-style check items */
.bc-why-check { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.bc-why-check-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: #fff; flex-shrink: 0; }
.bc-why-check-text { font-size: .93rem; color: rgba(255,255,255,.82); line-height: 1.65; padding-top: .5rem; }

/* ─── Enhanced card-style blocks ─── */
.bc-why-block-enhanced {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--bc-radius-lg);
    padding: 1.5rem 1.4rem 1.35rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: background var(--bc-transition), border-color var(--bc-transition), transform var(--bc-transition), box-shadow var(--bc-transition);
}
.bc-why-block-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--bc-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s var(--bc-ease);
}
.bc-why-block-enhanced:hover {
    background: rgba(255,255,255,.095);
    border-color: rgba(232,160,32,.28);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.bc-why-block-enhanced:hover::after { transform: scaleX(1); }

.bc-why-block-icon-gold {
    width: 50px; height: 50px;
    border-radius: var(--bc-radius-md);
    background: rgba(232,160,32,.14);
    border: 1px solid rgba(232,160,32,.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: var(--bc-gold);
    flex-shrink: 0;
    transition: background var(--bc-transition), transform var(--bc-transition), border-color var(--bc-transition);
}
.bc-why-block-enhanced:hover .bc-why-block-icon-gold {
    background: rgba(232,160,32,.28);
    border-color: rgba(232,160,32,.45);
    transform: scale(1.08);
}

/* ─── Card content text classes (colour set by scheme below) ─── */
.bc-why-block-title { font-weight: 700; font-size: .92rem; margin-bottom: .38rem; font-family: var(--bc-font); line-height: 1.3; }
.bc-why-block-text  { font-size: .845rem; line-height: 1.68; }
.bc-why-hint        { font-size: .875rem; font-style: italic; margin-bottom: 1rem; display: block; }

/* Dark scheme — text */
.bc-why-section--dark .bc-why-block-title { color: #fff; }
.bc-why-section--dark .bc-why-block-text  { color: rgba(255,255,255,.64); }
.bc-why-section--dark .bc-why-hint        { color: rgba(255,255,255,.5); }
.bc-why-section--dark .bc-section-title   { color: #fff !important; }
.bc-why-section--dark .bc-section-lead    { color: rgba(255,255,255,.75) !important; }
.bc-why-section--dark .bc-divider-line    { background: var(--bc-gold); }
.bc-why-section--dark .bc-eyebrow         { color: var(--bc-gold); }
.bc-why-section--dark .bc-eyebrow::before { background: var(--bc-gold); }

/* Light scheme — text */
.bc-why-section--light .bc-why-block-title { color: #0d2040; font-size: .95rem; }
.bc-why-section--light .bc-why-block-text  { color: #4b5563; }
.bc-why-section--light .bc-why-hint        { color: var(--bc-muted); }
.bc-why-section--light .bc-section-title   { color: var(--bc-primary) !important; }
.bc-why-section--light .bc-section-lead    { color: var(--bc-muted) !important; }
.bc-why-section--light .bc-divider-line    { background: var(--color-primary, var(--bc-accent)); }
.bc-why-section--light .bc-eyebrow         { color: var(--color-primary, var(--bc-accent)); }
.bc-why-section--light .bc-eyebrow::before { background: var(--color-primary, var(--bc-accent)); }

/* Light scheme — cards: premium look with top accent stripe */
.bc-why-section--light .bc-why-block-enhanced {
    background: #fff !important;
    border: 1px solid rgba(13,32,64,.07) !important;
    border-top: 3px solid var(--color-primary, var(--bc-accent)) !important;
    box-shadow: 0 4px 24px rgba(13,32,64,.07), 0 1px 4px rgba(13,32,64,.04) !important;
    border-radius: var(--bc-radius-xl) !important;
}
.bc-why-section--light .bc-why-block-enhanced:hover {
    background: #fff !important;
    border-color: color-mix(in srgb, var(--color-primary, var(--bc-accent)) 22%, white) !important;
    border-top-color: var(--color-primary, var(--bc-accent)) !important;
    box-shadow: 0 20px 56px rgba(13,32,64,.13), 0 4px 16px color-mix(in srgb, var(--color-primary, var(--bc-accent)) 14%, transparent) !important;
    transform: translateY(-6px) !important;
}
.bc-why-section--light .bc-why-block-enhanced::after { background: transparent; }
/* Icon in light mode — uses tenant primary colour */
.bc-why-section--light .bc-why-block-icon-gold {
    color: var(--color-primary, var(--bc-accent)) !important;
    background: color-mix(in srgb, var(--color-primary, var(--bc-accent)) 10%, white) !important;
    border-color: color-mix(in srgb, var(--color-primary, var(--bc-accent)) 24%, white) !important;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary, var(--bc-accent)) 16%, transparent) !important;
    width: 54px !important; height: 54px !important;
    font-size: 1.3rem !important;
}
.bc-why-section--light .bc-why-block-enhanced:hover .bc-why-block-icon-gold {
    background: color-mix(in srgb, var(--color-primary, var(--bc-accent)) 20%, white) !important;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--color-primary, var(--bc-accent)) 28%, transparent) !important;
    transform: scale(1.1) rotate(-3deg) !important;
}

.bc-why-block-num {
    position: absolute; bottom: .5rem; right: .9rem;
    font-size: 3.2rem; font-weight: 900;
    font-family: var(--bc-font); letter-spacing: -.06em; line-height: 1;
    pointer-events: none; user-select: none;
}
.bc-why-section--dark  .bc-why-block-num { color: rgba(255,255,255,.05); }
.bc-why-section--light .bc-why-block-num { color: rgba(13,32,64,.05); }

/* ─── Left panel decorative stat badges ─── */
.bc-why-left-stat {
    position: absolute;
    border-radius: var(--bc-radius-lg);
    padding: 1rem 1.35rem;
    min-width: 148px;
}
.bc-why-left-stat--glass {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
}
.bc-why-left-stat--gold {
    background: var(--bc-gold);
    box-shadow: 0 12px 36px rgba(232,160,32,.35);
}
.bc-why-left-stat-num { font-size: 1.85rem; font-weight: 800; line-height: 1; }
.bc-why-left-stat--glass .bc-why-left-stat-num { color: #fff; }
.bc-why-left-stat--gold .bc-why-left-stat-num { color: var(--bc-primary); }
.bc-why-left-stat-lbl {
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    margin-top: .28rem;
}
.bc-why-left-stat--glass .bc-why-left-stat-lbl { color: rgba(255,255,255,.62); }
.bc-why-left-stat--gold .bc-why-left-stat-lbl  { color: rgba(13,32,64,.68); }

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION ACCORDION  ·  bc-section-acc
   Creative numbered-badge design. All colours driven by ancestor scheme class.
   No class-juggling — guaranteed correct on every re-render.
───────────────────────────────────────────────────────────────────────────── */

/* ── Counter & base structure ── */
.bc-section-acc { counter-reset: bc-acc-step; }
.bc-section-acc .accordion-item {
    counter-increment: bc-acc-step;
    border-radius: var(--bc-radius-lg) !important;
    margin-bottom: .7rem;
    /* NO overflow:hidden — removing it lets Bootstrap's collapse height
       animation run freely; rounded corners are handled on the children. */
    transition: transform .22s var(--bc-ease), box-shadow .22s var(--bc-ease), border-color .2s;
}
.bc-section-acc .accordion-button {
    font-size: .9rem; font-weight: 700; font-family: var(--bc-font);
    box-shadow: none !important;
    padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: .85rem;
    /* Round top corners so card looks right without overflow:hidden on item */
    border-radius: var(--bc-radius-lg) var(--bc-radius-lg) 0 0 !important;
}
.bc-section-acc .accordion-button.collapsed {
    /* Fully round when body is hidden */
    border-radius: var(--bc-radius-lg) !important;
}
/* Circular numbered badge */
.bc-section-acc .accordion-button::before {
    content: counter(bc-acc-step, decimal-leading-zero);
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.8rem; height: 1.8rem; border-radius: 50%;
    font-size: .62rem; font-weight: 800; letter-spacing: -.01em; line-height: 1;
    font-family: var(--bc-font); flex-shrink: 0;
    transition: background .25s var(--bc-ease), color .25s var(--bc-ease),
                border-color .25s, box-shadow .25s;
}
.bc-section-acc .accordion-collapse {
    /* Guarantee Bootstrap show/hide is never clipped */
    overflow: visible !important;
}
.bc-section-acc .accordion-collapse.show {
    display: block !important;
}
.bc-section-acc .accordion-body {
    font-size: .88rem; line-height: 1.78;
    padding: .8rem 1.25rem 1.2rem 3.9rem; /* indent text to align under title */
    /* Round bottom corners to complete the card look */
    border-radius: 0 0 var(--bc-radius-lg) var(--bc-radius-lg);
}
/* Chevron base */
.bc-section-acc .accordion-button::after { transition: transform .28s var(--bc-ease), filter .2s; }

/* ══════════════════════════════════
   DARK SECTION  — glass + gold
══════════════════════════════════ */
.bc-why-section--dark .bc-section-acc .accordion-item {
    background: rgba(255,255,255,.048) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
}
.bc-why-section--dark .bc-section-acc .accordion-item:hover {
    background: rgba(255,255,255,.075) !important;
    border-color: rgba(255,255,255,.18) !important;
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.bc-why-section--dark .bc-section-acc .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: rgba(255,255,255,.075) !important;
    border-color: rgba(232,160,32,.35) !important;
    transform: translateX(5px);
    box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 3px 0 0 var(--bc-gold);
}
/* Button */
.bc-why-section--dark .bc-section-acc .accordion-button {
    background: transparent !important; color: rgba(255,255,255,.8) !important;
}
.bc-why-section--dark .bc-section-acc .accordion-button:not(.collapsed) {
    background: transparent !important; color: var(--bc-gold) !important;
}
/* Badge — dark collapsed */
.bc-why-section--dark .bc-section-acc .accordion-button::before {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.4);
}
/* Badge — dark open */
.bc-why-section--dark .bc-section-acc .accordion-button:not(.collapsed)::before {
    background: var(--bc-gold);
    border-color: var(--bc-gold);
    color: var(--bc-primary);
    box-shadow: 0 0 14px rgba(232,160,32,.45);
}
/* Chevron */
.bc-why-section--dark .bc-section-acc .accordion-button::after              { filter: invert(1); opacity: .45; }
.bc-why-section--dark .bc-section-acc .accordion-button:not(.collapsed)::after { filter: invert(1) sepia(1) saturate(5) hue-rotate(8deg); opacity: 1; }
/* Body */
.bc-why-section--dark .bc-section-acc .accordion-body {
    display: block !important;
    background: rgba(255,255,255,.05) !important;
    color: #d0d8e8 !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    font-size: .88rem !important; line-height: 1.78 !important;
}

/* ══════════════════════════════════
   LIGHT SECTION  — floating cards
══════════════════════════════════ */
.bc-why-section--light .bc-section-acc .accordion-item {
    background: #fff !important;
    border: 1px solid rgba(13,32,64,.08) !important;
    box-shadow: 0 2px 10px rgba(13,32,64,.06);
}
.bc-why-section--light .bc-section-acc .accordion-item:hover {
    transform: translateX(4px);
    border-color: rgba(13,32,64,.14) !important;
    box-shadow: 0 6px 22px rgba(13,32,64,.1);
}
.bc-why-section--light .bc-section-acc .accordion-item:has(.accordion-button:not(.collapsed)) {
    transform: translateX(5px);
    border-color: rgba(20,103,200,.18) !important;
    box-shadow: 0 8px 28px rgba(20,103,200,.12), inset 3px 0 0 var(--color-primary, var(--bc-accent));
}
/* Button */
.bc-why-section--light .bc-section-acc .accordion-button {
    background: transparent !important; color: #0d2040 !important;
}
.bc-why-section--light .bc-section-acc .accordion-button:not(.collapsed) {
    background: rgba(20,103,200,.03) !important;
    color: var(--color-primary, var(--bc-accent)) !important;
}
/* Badge — light collapsed */
.bc-why-section--light .bc-section-acc .accordion-button::before {
    background: rgba(13,32,64,.06);
    border: 1px solid rgba(13,32,64,.14);
    color: rgba(13,32,64,.35);
}
/* Badge — light open */
.bc-why-section--light .bc-section-acc .accordion-button:not(.collapsed)::before {
    background: var(--color-primary, var(--bc-accent));
    border-color: var(--color-primary, var(--bc-accent));
    color: #fff;
    box-shadow: 0 0 14px rgba(20,103,200,.3);
}
/* Chevron */
.bc-why-section--light .bc-section-acc .accordion-button::after              { filter: none; opacity: .45; }
.bc-why-section--light .bc-section-acc .accordion-button:not(.collapsed)::after { filter: none; opacity: 1; }
/* Body — explicit dark gray, no CSS variable risk */
.bc-why-section--light .bc-section-acc .accordion-body {
    display: block !important;
    background: #f3f6fb !important;
    color: #374151 !important;
    border-top: 1px solid rgba(13,32,64,.07) !important;
    font-size: .88rem !important; line-height: 1.78 !important;
}

/* ── Light section: subtle decorative orbs ── */
.bc-why-section--light::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(20,103,200,.055) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.bc-why-section--light::after {
    content: ''; position: absolute; bottom: -40px; left: 10%;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,160,32,.05) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CUSTOM ACCORDION  ·  bca-*
   No Bootstrap Collapse dependency — toggle done via JS class .bca-open.
   Body visibility guaranteed: max-height CSS animation, NO display:none toggling
   by Bootstrap so no height-0 clipping bugs possible.
───────────────────────────────────────────────────────────────────────────── */
.bca { counter-reset: bc-acc-step; }
.bca-item {
    counter-increment: bc-acc-step;
    border-radius: var(--bc-radius-lg);
    margin-bottom: .6rem;
    overflow: hidden;
    transition: transform .22s var(--bc-ease), box-shadow .22s var(--bc-ease), border-color .2s;
}
.bca-btn {
    display: flex; align-items: center; gap: .85rem;
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: .9rem; font-weight: 700; font-family: var(--bc-font);
    text-align: left; border: 0; background: transparent; cursor: pointer;
    position: relative; user-select: none;
}
/* Number badge */
.bca-btn::before {
    content: counter(bc-acc-step, decimal-leading-zero);
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.8rem; height: 1.8rem; border-radius: 50%;
    font-size: .62rem; font-weight: 800; letter-spacing: -.01em; line-height: 1;
    font-family: var(--bc-font); flex-shrink: 0;
    transition: background .25s var(--bc-ease), color .25s, border-color .25s, box-shadow .25s;
}
/* Chevron */
.bca-btn::after {
    content: ''; position: absolute; right: 1.1rem; top: 50%;
    transform: translateY(-50%);
    width: 1.25rem; height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23888' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat; background-size: 1.25rem;
    transition: transform .28s var(--bc-ease), filter .2s, opacity .2s;
}
.bca-item.bca-open > .bca-btn::after {
    transform: translateY(-50%) rotate(-180deg);
}
/* Body — max-height animation, always rendered, never display:none */
.bca-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--bc-ease);
    font-size: .88rem; line-height: 1.78;
}
.bca-item.bca-open > .bca-body { max-height: 500px; }
.bca-body-inner { padding: .8rem 1.25rem 1.2rem 3.9rem; }

/* ── Dark scheme ── */
.bc-why-section--dark .bca-item { background: rgba(255,255,255,.048); border: 1px solid rgba(255,255,255,.1); }
.bc-why-section--dark .bca-item:hover { background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.18); transform: translateX(4px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.bc-why-section--dark .bca-item.bca-open { background: rgba(255,255,255,.075); border-color: rgba(232,160,32,.35); transform: translateX(5px); box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 3px 0 0 var(--bc-gold); }
.bc-why-section--dark .bca-btn { background: transparent; color: rgba(255,255,255,.8); }
.bc-why-section--dark .bca-item.bca-open > .bca-btn { color: var(--bc-gold); }
.bc-why-section--dark .bca-btn::before { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.4); }
.bc-why-section--dark .bca-item.bca-open > .bca-btn::before { background: var(--bc-gold); border-color: var(--bc-gold); color: var(--bc-primary); box-shadow: 0 0 14px rgba(232,160,32,.45); }
.bc-why-section--dark .bca-btn::after { filter: invert(1); opacity: .45; }
.bc-why-section--dark .bca-item.bca-open > .bca-btn::after { filter: invert(1) sepia(1) saturate(5) hue-rotate(8deg); opacity: 1; }
.bc-why-section--dark .bca-body-inner { color: #d0d8e8; background: rgba(255,255,255,.025); border-top: 1px solid rgba(255,255,255,.08); }

/* ── Light scheme ── */
.bc-why-section--light .bca-item { background: #fff; border: 1px solid rgba(13,32,64,.08); box-shadow: 0 2px 10px rgba(13,32,64,.06); }
.bc-why-section--light .bca-item:hover { transform: translateX(4px); border-color: rgba(13,32,64,.14); box-shadow: 0 6px 22px rgba(13,32,64,.1); }
.bc-why-section--light .bca-item.bca-open { transform: translateX(5px); border-color: rgba(20,103,200,.18); box-shadow: 0 8px 28px rgba(20,103,200,.12), inset 3px 0 0 var(--color-primary, var(--bc-accent)); }
.bc-why-section--light .bca-btn { background: transparent; color: #0d2040; }
.bc-why-section--light .bca-item.bca-open > .bca-btn { background: rgba(20,103,200,.03); color: var(--color-primary, var(--bc-accent)); }
.bc-why-section--light .bca-btn::before { background: rgba(13,32,64,.06); border: 1px solid rgba(13,32,64,.14); color: rgba(13,32,64,.35); }
.bc-why-section--light .bca-item.bca-open > .bca-btn::before { background: var(--color-primary, var(--bc-accent)); border-color: var(--color-primary, var(--bc-accent)); color: #fff; box-shadow: 0 0 14px rgba(20,103,200,.3); }
.bc-why-section--light .bca-btn::after { filter: none; opacity: .45; }
.bc-why-section--light .bca-item.bca-open > .bca-btn::after { filter: none; opacity: 1; }
.bc-why-section--light .bca-body-inner { color: #374151; background: #f3f6fb; border-top: 1px solid rgba(13,32,64,.07); }

/* ─── Keep bc-faq-dark for other sections that still use it directly ─── */
.bc-faq-dark .accordion-item   { background: transparent !important; border: 1px solid rgba(255,255,255,.14) !important; border-radius: var(--bc-radius-md) !important; margin-bottom: .55rem; overflow: hidden; }
.bc-faq-dark .accordion-button { background: rgba(255,255,255,.07) !important; color: #fff !important; font-size: .9rem; font-weight: 600; font-family: var(--bc-font); box-shadow: none !important; padding: .95rem 1.2rem; }
.bc-faq-dark .accordion-button:not(.collapsed) { background: rgba(255,255,255,.12) !important; color: var(--bc-gold) !important; box-shadow: none !important; }
.bc-faq-dark .accordion-button::after              { filter: invert(1); opacity: .55; }
.bc-faq-dark .accordion-button:not(.collapsed)::after { filter: invert(1) sepia(1) saturate(4) hue-rotate(10deg); opacity: .9; }
.bc-faq-dark .accordion-body   { background: rgba(255,255,255,.04) !important; color: rgba(255,255,255,.7) !important; font-size: .875rem; line-height: 1.72; padding: .65rem 1.2rem 1.1rem; }

/* ─── Full-width icon grid ─── */
.bc-why-section--dark  .bc-why-full-grid .bc-why-block-enhanced { background: rgba(255,255,255,.045); }
.bc-why-section--dark  .bc-why-full-grid .bc-why-block-enhanced:hover { background: rgba(255,255,255,.08); }
.bc-why-section--light .bc-why-full-grid .bc-why-block-enhanced { background: #fff; }

/* ─── Image wrap (shadow adapts to scheme) ─── */
.bc-why-img-wrap { border-radius: var(--bc-radius-xl); overflow: hidden; position: relative; }
.bc-why-section--dark  .bc-why-img-wrap { box-shadow: 0 28px 72px rgba(0,0,0,.38); }
.bc-why-section--light .bc-why-img-wrap { box-shadow: 0 12px 44px rgba(13,32,64,.13); }
.bc-why-img-wrap img {
    width: 100%; display: block; object-fit: cover;
    transition: transform .55s var(--bc-ease);
}
.bc-why-img-wrap:hover img { transform: scale(1.03); }
.bc-why-img-accent-border {
    position: absolute; bottom: -14px; right: -14px;
    width: 65%; height: 65%;
    border: 2.5px solid var(--bc-gold);
    border-radius: var(--bc-radius-xl);
    opacity: .3; pointer-events: none; z-index: -1;
}
.bc-why-img-badge {
    position: absolute; bottom: 24px; left: -18px;
    background: var(--bc-gold);
    border-radius: var(--bc-radius-lg);
    padding: 1rem 1.35rem;
    box-shadow: 0 12px 36px rgba(232,160,32,.38);
    min-width: 136px;
}
.bc-why-img-badge-num { font-size: 1.65rem; font-weight: 800; color: var(--bc-primary); line-height: 1; }
.bc-why-img-badge-lbl { font-size: .68rem; font-weight: 700; color: rgba(13,32,64,.68); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; }
@media (max-width: 575px) { .bc-why-img-badge { position: static; display: inline-block; margin-top: 1rem; } }

/* ─── Outline button for light-bg sections ─── */
.btn-bc-outline-dark {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent; color: var(--bc-primary);
    border: 2px solid rgba(13,32,64,.28);
    padding: .7rem 1.8rem; font-weight: 600; font-size: .9rem;
    border-radius: var(--bc-radius); transition: all var(--bc-transition);
    text-decoration: none;
}
.btn-bc-outline-dark:hover { background: rgba(13,32,64,.06); border-color: var(--bc-primary); color: var(--bc-primary); }

/* ─── ════════════════════════════════════
   COUNTER SECTION
═══════════════════════════════════════ ─── */
.bc-counter-section { background: var(--bc-surface); }
.bc-counter-card {
    background: #fff; border-radius: var(--bc-radius-lg); padding: 2.25rem 1.5rem;
    text-align: center; border: 1px solid var(--bc-border);
    box-shadow: var(--bc-shadow-sm); position: relative; overflow: hidden;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}
.bc-counter-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--color-primary, var(--bc-accent)); }
.bc-counter-card:hover { transform: translateY(-3px); box-shadow: var(--bc-shadow); }
.bc-counter-icon { width: 52px; height: 52px; background: rgba(20,103,200,.08); border-radius: var(--bc-radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--color-primary, var(--bc-accent)); margin: 0 auto .9rem; }
.bc-counter-num { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 800; color: var(--bc-primary); line-height: 1; display: block; margin-bottom: .35rem; }
.bc-counter-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--bc-muted); }

/* ─── ════════════════════════════════════
   SKILLS / PROGRESS BARS
═══════════════════════════════════════ ─── */
.bc-progress-bar-wrap { margin-bottom: 1.25rem; }
.bc-progress-bar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .45rem; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--bc-primary); }
.bc-progress-track { height: 5px; background: var(--bc-surface-2); border-radius: 9px; overflow: hidden; }
.bc-progress-fill { height: 100%; border-radius: 9px; background: var(--color-primary, var(--bc-accent)); width: 0; transition: width 1.2s var(--bc-ease); }
.bc-progress-divider { border: none; border-top: 1px solid var(--bc-border); margin: .85rem 0; }

/* ─── ════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ ─── */
.bc-testimonials-section { background: var(--bc-dark); position: relative; overflow: hidden; }
.bc-testimonials-section::before { content: '\201C'; position: absolute; top: -20px; right: 60px; font-size: 16rem; font-weight: 900; color: rgba(255,255,255,.04); font-family: Georgia,serif; line-height: 1; pointer-events: none; }
.bc-testimonials-inner { position: relative; z-index: 1; }
.bc-testimonial-text { font-size: 1.1rem; line-height: 1.78; color: rgba(255,255,255,.85); font-style: italic; }
.bc-testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.bc-testimonial-avatar-wrap { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.2); flex-shrink: 0; }
.bc-testimonial-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bc-testimonial-initials-wrap { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.12); border: 3px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.bc-testimonial-name { font-size: .95rem; font-weight: 700; color: #fff; }
.bc-testimonial-role { font-size: .78rem; color: rgba(255,255,255,.55); }
.bc-testimonials-stars { color: var(--bc-gold); font-size: .9rem; margin-bottom: .75rem; letter-spacing: .1em; }
.bc-tst-nav-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; cursor: pointer; transition: all var(--bc-transition); }
.bc-tst-nav-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); color: #fff; }
.bc-tst-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.3); cursor: pointer; transition: background var(--bc-transition), transform var(--bc-transition); padding: 0; }
.bc-tst-dot.active { background: var(--bc-gold); transform: scale(1.3); }

/* ─── ════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════ ─── */
.bc-team-card { position: relative; border-radius: var(--bc-radius-lg); overflow: hidden; background: #fff; box-shadow: var(--bc-shadow-sm); transition: transform var(--bc-transition), box-shadow var(--bc-transition); }
.bc-team-card:hover { transform: translateY(-5px); box-shadow: var(--bc-shadow-lg); }
.bc-team-media { height: 280px; overflow: hidden; position: relative; background: var(--bc-surface-2); }
.bc-team-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s var(--bc-ease); display: block; }
.bc-team-card:hover .bc-team-media img { transform: scale(1.06); }
.bc-team-media-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; font-weight: 800; color: var(--bc-border); background: linear-gradient(135deg, var(--bc-surface) 0%, var(--bc-surface-2) 100%); }
.bc-team-social-overlay { position: absolute; inset: 0; background: rgba(13,32,64,.72); display: flex; align-items: center; justify-content: center; gap: .6rem; opacity: 0; transition: opacity var(--bc-transition); }
.bc-team-card:hover .bc-team-social-overlay { opacity: 1; }
.bc-team-social-overlay a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: background var(--bc-transition), transform var(--bc-transition); }
.bc-team-social-overlay a:hover { background: var(--bc-gold); border-color: var(--bc-gold); transform: scale(1.1); }
.bc-team-body { padding: 1.25rem 1.5rem 1.5rem; }
.bc-team-name { font-size: 1.02rem; font-weight: 700; color: var(--bc-primary); margin-bottom: .2rem; }
.bc-team-role { font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--color-primary, var(--bc-accent)); }
.bc-team-bio { font-size: .85rem; color: var(--bc-muted); line-height: 1.6; margin-top: .5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── ════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ ─── */
.bc-cta-section { position: relative; overflow: hidden; }

/* Default corporate dark gradient – only when no custom background is set */
.bc-cta-section.bc-cta--gradient::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(118deg, rgba(13,32,64,.99) 0%, rgba(20,103,200,.92) 100%);
}

/* Dark overlay for photo backgrounds (background-image applied via CSS var by the outer wrapper) */
.bc-cta-section.bc-cta--photo-bg::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(160deg, rgba(0,0,0,.52) 0%, rgba(13,32,64,.72) 100%);
}

/* Decorative glow rings (shown on dark / gradient backgrounds) */
.bc-cta-deco-ring { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.bc-cta-deco-ring--1 { width: 520px; height: 520px; top: -200px; right: -80px; background: radial-gradient(circle, rgba(20,103,200,.38) 0%, transparent 68%); }
.bc-cta-deco-ring--2 { width: 280px; height: 280px; bottom: -110px; left: -50px; background: radial-gradient(circle, rgba(232,160,32,.16) 0%, transparent 68%); }

/* Dot-grid texture overlay */
.bc-cta-deco-dots { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .07;
    background-image: radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 1px);
    background-size: 28px 28px; }

.bc-cta-inner { position: relative; z-index: 2; }

/* Legacy class names kept for backward compat */
.bc-cta-heading { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.bc-cta-text { font-size: 1.02rem; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 1.75rem; }

/* ─── ════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ ─── */
.bc-contact-icon-box { width: 50px; height: 50px; border-radius: var(--bc-radius-md); background: rgba(20,103,200,.1); color: var(--color-primary, var(--bc-accent)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.bc-contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--bc-border); }
.bc-contact-info-item:last-child { border-bottom: none; }
.bc-contact-label-sm { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--bc-muted); margin-bottom: .1rem; }
.bc-contact-value-lg { font-size: .97rem; font-weight: 600; color: var(--bc-primary); }
.bc-contact-value-lg a { color: inherit; text-decoration: none; transition: color var(--bc-transition); }
.bc-contact-value-lg a:hover { color: var(--color-primary, var(--bc-accent)); }
.bc-form-label { font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--bc-primary); margin-bottom: .35rem; display: block; }
.bc-form-input { width: 100%; border: 1.5px solid var(--bc-border); border-radius: var(--bc-radius-md); padding: .7rem 1rem; font-size: .92rem; color: var(--bc-primary); background: #fff; font-family: var(--bc-font); transition: border-color var(--bc-transition), box-shadow var(--bc-transition); }
.bc-form-input:focus { outline: none; border-color: var(--color-primary, var(--bc-accent)); box-shadow: 0 0 0 3px rgba(20,103,200,.12); }
.bc-form-input.form-control:focus { border-color: var(--color-primary, var(--bc-accent)) !important; box-shadow: 0 0 0 3px rgba(20,103,200,.12) !important; }

/* ─── ════════════════════════════════════
   SECTION EYEBROW (alias for bc-eyebrow used across sections)
═══════════════════════════════════════ ─── */
.bc-section-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--color-primary, var(--bc-accent));
    margin-bottom: .75rem;
}
.bc-section-eyebrow::before {
    content: ''; display: inline-block; width: 28px; height: 2.5px;
    background: currentColor; border-radius: 2px; flex-shrink: 0;
}
.bc-section-eyebrow.justify-content-center { justify-content: center; }

/* ─── ════════════════════════════════════
   CONTACT INFO LIST (shared: contact_form + contact)
═══════════════════════════════════════ ─── */
.bc-cinfo-list { display: flex; flex-direction: column; gap: 0; }
.bc-cinfo-list--bordered .bc-cinfo-item { border-bottom: 1px solid var(--bc-border); }
.bc-cinfo-list--bordered .bc-cinfo-item:last-child { border-bottom: none; }
.bc-cinfo-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0;
}
.bc-cinfo-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    border-radius: var(--bc-radius-md);
    background: linear-gradient(135deg, var(--color-primary, var(--bc-accent)) 0%, var(--bc-primary) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.bc-cinfo-text {}
.bc-cinfo-label {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .09em; color: var(--bc-primary); margin-bottom: .1rem;
}
.bc-cinfo-value { font-size: .95rem; font-weight: 500; color: var(--bc-text); line-height: 1.5; }
.bc-cinfo-value a { color: inherit; text-decoration: none; transition: color var(--bc-transition); }
.bc-cinfo-value a:hover { color: var(--color-primary, var(--bc-accent)); }

/* contact_form: note block */
.bc-cform-note {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .86rem; color: var(--bc-muted); line-height: 1.65;
    margin-bottom: 1.5rem;
}
.bc-cform-note i { color: var(--color-primary, var(--bc-accent)); font-size: .95rem; margin-top: .05rem; flex-shrink: 0; }

/* contact_form: right panel sub-heading */
.bc-cform-right-heading {
    font-size: 1.1rem; font-weight: 700; color: var(--bc-primary);
    margin-bottom: 1.25rem; line-height: 1.35;
}

/* contact_form: privacy footer note */
.bc-cform-privacy-footer {
    font-size: .78rem; color: var(--bc-muted); text-align: center;
    margin-top: 1rem; line-height: 1.6;
}
.bc-cform-privacy-footer a { color: var(--color-primary, var(--bc-accent)); text-decoration: underline; }
.bc-privacy-link { color: var(--color-primary, var(--bc-accent)); text-decoration: underline; }
.bc-privacy-link:hover { opacity: .8; }

/* ─── ════════════════════════════════════
   CONTACT SECTION (info + form combined)
═══════════════════════════════════════ ─── */
.bc-contact-section {}
.bc-contact-form {}

/* Empty state placeholder (contact_details when no image is configured) */
.bc-cd2-empty-state {
    min-height: 280px;
    border-radius: var(--bc-radius-lg);
    border: 2px dashed var(--bc-border);
    background: var(--bc-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: .65rem;
    color: var(--bc-muted);
}
.bc-cd2-empty-state i { font-size: 2rem; opacity: .3; }
.bc-cd2-empty-state p { font-size: .9rem; margin: 0; }

/* Sidebar overrides for contact_form */
.bc-cform-section--sidebar .bc-anim { animation: none !important; opacity: 1 !important; transform: none !important; }
.bc-sidebar-col .bc-cform-section--sidebar .row > [class*="col-"] { flex: 0 0 100% !important; max-width: 100% !important; margin-left: 0 !important; }
.bc-cform-section--sidebar .bc-cform-right-heading { font-size: .95rem; margin-bottom: 1rem; }
.bc-cform-section--sidebar .bc-cform-panel { background: transparent !important; border: none !important; box-shadow: none !important; }
.bc-cform-section--sidebar .bc-cform-accent-bar { display: none !important; }
.bc-cform-section--sidebar .bc-cform-body { padding: 0 !important; }

/* ─── ════════════════════════════════════
   CONTACT IMAGE SLIDER (contact.blade.php)
═══════════════════════════════════════ ─── */
.bc-contact-img-section {}
.bc-contact-img-subtitle {
    font-size: .97rem; color: var(--bc-muted); line-height: 1.7;
    margin: 0; text-align: right;
}
@media (max-width: 991px) {
    .bc-contact-img-subtitle { text-align: left; margin-top: .5rem; }
}

.bc-cimg-slider-wrap { position: relative; }
.bc-cimg-owl.owl-carousel .owl-stage-outer {
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
}
.bc-cimg-slide {
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bc-surface-2);
}
.bc-cimg-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Dot navigation */
.bc-cimg-dots {
    display: flex; align-items: center; justify-content: center;
    gap: .45rem; margin-top: 1rem;
}
.bc-cimg-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(13,32,64,.2);
    border: none; padding: 0; cursor: pointer;
    transition: all var(--bc-transition);
}
.bc-cimg-dot.bc-cimg-dot--active {
    background: var(--color-primary, var(--bc-accent));
    width: 20px; border-radius: 4px;
}

/* sidebar overrides */
.bc-sidebar-col .bc-cinfo-icon { width: 40px; height: 40px; font-size: .85rem; }
.bc-sidebar-col .bc-cinfo-value { font-size: .85rem; }
.bc-sidebar-col .bc-cinfo-label { font-size: .64rem; }
.bc-sidebar-col .bc-cimg-slide { aspect-ratio: 16/9; }
.bc-sidebar-col .bc-contact-img-subtitle { text-align: left; font-size: .86rem; }

/* ─── ════════════════════════════════════
   CONTACT DETAILS (card slider)
═══════════════════════════════════════ ─── */
.bc-cdetails-section {}
.bc-cdetails-header { text-align: center; margin-bottom: 2.75rem; }
.bc-cdetails-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold)); border-radius: 2px; margin: 1rem auto 0; }

/* Owl padding so hover shadow isn't clipped */
.bc-cdetails-owl.owl-carousel .owl-stage-outer { padding-bottom: 16px; }
.bc-cdetails-owl.owl-carousel .owl-item { padding: 2px 0; }

/* Slider navigation */
.bc-cdetails-nav {
    display: flex; align-items: center; justify-content: center;
    gap: .75rem; margin-top: 1.85rem;
}
.bc-cdetails-nav-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(13,32,64,.18);
    background: var(--bc-white);
    color: var(--bc-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; cursor: pointer;
    transition: all var(--bc-transition);
}
.bc-cdetails-nav-btn:hover {
    background: var(--color-primary, var(--bc-accent));
    border-color: var(--color-primary, var(--bc-accent));
    color: #fff;
    box-shadow: 0 6px 20px rgba(20,103,200,.32);
    transform: scale(1.08);
}
.bc-cdetails-dots { display: flex; align-items: center; gap: .45rem; }
.bc-cdetails-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(13,32,64,.18);
    border: none; padding: 0; cursor: pointer;
    transition: all var(--bc-transition);
}
.bc-cdetails-dot.bc-cdetails-dot--active {
    background: var(--color-primary, var(--bc-accent));
    transform: scale(1.25);
    width: 20px; border-radius: 4px;
}

.bc-cdetails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}
.bc-cdetail-card {
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
}
.bc-cdetail-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--color-primary, var(--bc-accent));
    transform: scaleY(0);
    transform-origin: bottom;
    border-radius: 0 2px 2px 0;
    transition: transform var(--bc-transition);
}
.bc-cdetail-card:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow); border-color: rgba(20,103,200,.18); }
.bc-cdetail-card:hover::before { transform: scaleY(1); }
.bc-cdetail-icon-wrap {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: var(--bc-radius-md);
    background: linear-gradient(135deg, var(--color-primary, var(--bc-accent)) 0%, var(--bc-primary) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(20,103,200,.25);
}
.bc-cdetail-body { flex: 1; min-width: 0; }
.bc-cdetail-label { font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--bc-muted); margin-bottom: .3rem; }
.bc-cdetail-value { font-size: .95rem; font-weight: 600; color: var(--bc-primary); line-height: 1.55; word-break: break-word; }
.bc-cdetail-value a { color: inherit; text-decoration: none; transition: color var(--bc-transition); }
.bc-cdetail-value a:hover { color: var(--color-primary, var(--bc-accent)); }
.bc-cdetail-card-deco {
    position: absolute; bottom: -18px; right: -18px;
    width: 72px; height: 72px; border-radius: 50%;
    background: radial-gradient(circle, rgba(20,103,200,.07) 0%, transparent 70%);
    pointer-events: none;
    transition: transform var(--bc-transition);
}
.bc-cdetail-card:hover .bc-cdetail-card-deco { transform: scale(1.5); }

/* ─── ════════════════════════════════════
   CONTACT DETAILS v2  (card grid)
═══════════════════════════════════════ ─── */
.bc-cdetails2-section { padding: 4rem 0; }
.bc-cdetails2-header { margin-bottom: 2.5rem; }
.bc-cdetails2-subtitle {
    font-size: .97rem; color: var(--bc-muted); line-height: 1.7;
    margin: 0; text-align: right;
}
@media (max-width: 991px) { .bc-cdetails2-subtitle { text-align: left; margin-top: .5rem; } }

/* Grid */
.bc-cdetails2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 575px) { .bc-cdetails2-grid { grid-template-columns: 1fr; } }

/* Card */
.bc-cdetails2-card {
    position: relative; overflow: hidden;
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-lg);
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
    animation: bc-cd2-fadein .45s ease both;
    animation-delay: var(--bc-cd2-delay, 0ms);
}
.bc-cdetails2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13,32,64,.12);
    border-color: rgba(20,103,200,.2);
}
@keyframes bc-cd2-fadein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Inner flex row */
.bc-cdetails2-card-inner {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.4rem 1.35rem 1.4rem 1.35rem;
    position: relative; z-index: 1;
}

/* Icon box */
.bc-cdetails2-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: var(--bc-radius-md);
    background: var(--color-button, var(--bc-primary));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(13,32,64,.22);
    transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}
.bc-cdetails2-card:hover .bc-cdetails2-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 6px 20px rgba(13,32,64,.3);
}

/* Text */
.bc-cdetails2-body { flex: 1; min-width: 0; }
.bc-cdetails2-label {
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--bc-muted); margin-bottom: .28rem;
}
.bc-cdetails2-value {
    font-size: .94rem; font-weight: 600; color: var(--bc-primary);
    line-height: 1.5; word-break: break-word;
}
.bc-cdetails2-value a { color: inherit; text-decoration: none; transition: color var(--bc-transition); }
.bc-cdetails2-value a:hover { color: var(--color-primary, var(--bc-accent)); }

/* Link arrow */
.bc-cdetails2-arrow {
    width: 30px; height: 30px; flex-shrink: 0;
    border-radius: 50%; border: 1.5px solid var(--bc-border);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; color: var(--bc-muted);
    text-decoration: none;
    transition: all var(--bc-transition);
}
.bc-cdetails2-card:hover .bc-cdetails2-arrow {
    background: var(--color-primary, var(--bc-accent));
    border-color: var(--color-primary, var(--bc-accent));
    color: #fff;
    transform: translateX(2px);
}

/* Bottom gradient accent bar */
.bc-cdetails2-card-accent {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s var(--bc-ease);
}
.bc-cdetails2-card:hover .bc-cdetails2-card-accent { transform: scaleX(1); }

/* Vertical stacked list (used when slider is present) */
.bc-cdetails2-list { display: flex; flex-direction: column; height: 100%; justify-content: space-between; }
.bc-cdetails2-list-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bc-border);
    animation: bc-cd2-fadein .4s ease both;
    animation-delay: var(--bc-cd2-delay, 0ms);
}
.bc-cdetails2-list-item:last-child { border-bottom: none; }

/* Image slider */
.bc-cdetails2-slider-wrap { position: relative; }
.bc-cdetails2-owl.owl-carousel .owl-stage-outer {
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
}
.bc-cdetails2-slide {
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bc-surface-2);
}
.bc-cdetails2-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Dot navigation */
.bc-cdetails2-dots {
    display: flex; align-items: center; justify-content: center;
    gap: .45rem; margin-top: 1rem;
}
.bc-cdetails2-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(13,32,64,.2);
    border: none; padding: 0; cursor: pointer;
    transition: all var(--bc-transition);
}
.bc-cdetails2-dot.bc-cdetails2-dot--active {
    background: var(--color-primary, var(--bc-accent));
    width: 20px; border-radius: 4px;
}

/* ─── ════════════════════════════════════
   CONTACT FORM (premium panel)
═══════════════════════════════════════ ─── */
.bc-cform-section {}
.bc-cform-section-header { text-align: center; margin-bottom: 2.5rem; }

.bc-cform-panel {
    background: var(--bc-white);
    border-radius: var(--bc-radius-lg);
    border: 1px solid var(--bc-border);
    box-shadow: var(--bc-shadow);
    overflow: hidden;
}
.bc-cform-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)) 0%, var(--bc-gold) 60%, var(--color-primary, var(--bc-accent)) 100%);
    background-size: 200% 100%;
    animation: bc-cform-shimmer 3s linear infinite;
}
@keyframes bc-cform-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.bc-cform-body { padding: 2.5rem; }
.bc-cform-required { color: #e04040; margin-left: .15em; }

.bc-cform-control {
    width: 100%;
    border: 1.5px solid var(--bc-border);
    border-radius: var(--bc-radius-md);
    padding: .75rem 1rem;
    font-size: .92rem;
    color: var(--bc-primary);
    background: var(--bc-surface);
    font-family: var(--bc-font);
    transition: border-color var(--bc-transition), background var(--bc-transition), box-shadow var(--bc-transition);
}
.bc-cform-control:focus {
    outline: none;
    border-color: var(--color-primary, var(--bc-accent));
    background: var(--bc-white);
    box-shadow: 0 0 0 3px rgba(20,103,200,.1);
}
.bc-cform-control.form-control:focus {
    border-color: var(--color-primary, var(--bc-accent)) !important;
    box-shadow: 0 0 0 3px rgba(20,103,200,.1) !important;
    background: var(--bc-white) !important;
}
.bc-cform-field-heading { font-weight: 700; color: var(--bc-primary); margin-top: .5rem; margin-bottom: .25rem; font-size: 1.05rem; }
.bc-cform-field-paragraph { font-size: .88rem; color: var(--bc-muted); line-height: 1.65; margin-bottom: .25rem; }
.bc-cform-field-label-text { display: block; font-size: .75rem; font-weight: 600; color: #374151; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .25rem; }
.bc-cform-divider { border-color: rgba(0,0,0,.1); margin: .5rem 0; }
.bc-cform-checks { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; padding-top: .25rem; }
.bc-cform-checks .form-check-label,
.bc-cform-single-check .form-check-label { font-size: .875rem; color: var(--bc-text); }
.bc-cform-submit-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: .5rem; }
.bc-cform-submit-btn { justify-content: center; }
.bc-cform-privacy-note { font-size: .75rem; color: var(--bc-muted); display: flex; align-items: center; gap: .35rem; }
.bc-cform-privacy-note i { color: var(--color-primary, var(--bc-accent)); font-size: .7rem; }

.bc-cform-alert {
    display: flex; align-items: flex-start; gap: .85rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--bc-radius-md);
    font-size: .92rem; font-weight: 500;
    margin-bottom: 1.5rem;
}
.bc-cform-alert i { font-size: 1.05rem; flex-shrink: 0; margin-top: .05rem; }
.bc-cform-alert--success { background: #f0faf4; border: 1px solid #a7e0bb; color: #166534; }
.bc-cform-alert--success i { color: #16a34a; }
.bc-cform-alert--error { background: #fff5f5; border: 1px solid #fca5a5; color: #991b1b; }
.bc-cform-alert--error i { color: #dc2626; }

/* ─── ════════════════════════════════════
   CONTACT SPLIT (dark + light panels)
═══════════════════════════════════════ ─── */
.bc-contact-split-section { padding: 0; }
.bc-contact-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-radius: var(--bc-radius-xl);
    overflow: hidden;
    box-shadow: var(--bc-shadow-lg);
}
@media (max-width: 991px) {
    .bc-contact-split-wrap { grid-template-columns: 1fr; }
}

/* Dark info panel */
.bc-contact-dark-panel {
    background: linear-gradient(150deg, var(--bc-primary) 0%, var(--bc-dark-2) 100%);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.bc-contact-dark-deco-ring {
    position: absolute; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(20,103,200,.3) 0%, transparent 68%);
}
.bc-contact-dark-deco-ring--1 { width: 380px; height: 380px; top: -130px; right: -100px; }
.bc-contact-dark-deco-ring--2 {
    width: 220px; height: 220px; bottom: -70px; left: -50px;
    background: radial-gradient(circle, rgba(232,160,32,.2) 0%, transparent 68%);
}
.bc-contact-dark-deco-dots {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 1;
}
.bc-contact-dark-inner { position: relative; z-index: 2; }
.bc-contact-dark-eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--bc-gold); margin-bottom: .6rem; }
.bc-contact-dark-title { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.bc-contact-dark-lead { font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.78; margin-bottom: 2.25rem; }
.bc-contact-dark-items {}
.bc-contact-dark-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.bc-contact-dark-item:last-child { border-bottom: none; }
.bc-contact-dark-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: var(--bc-radius-md);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.88);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    transition: background var(--bc-transition), border-color var(--bc-transition);
}
.bc-contact-dark-item:hover .bc-contact-dark-icon { background: rgba(20,103,200,.4); border-color: rgba(20,103,200,.5); }
.bc-contact-dark-label { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.4); margin-bottom: .18rem; }
.bc-contact-dark-value { font-size: .92rem; font-weight: 600; color: #fff; line-height: 1.45; }
.bc-contact-dark-value a { color: #fff; text-decoration: none; transition: color var(--bc-transition); }
.bc-contact-dark-value a:hover { color: var(--bc-gold); }

/* Light form panel */
.bc-contact-light-panel { background: var(--bc-white); padding: 3.5rem 2.75rem; }
.bc-contact-light-header { margin-bottom: 1.75rem; }
.bc-contact-light-tag {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--color-primary, var(--bc-accent));
    background: rgba(20,103,200,.07);
    border: 1px solid rgba(20,103,200,.15);
    border-radius: 50px;
    padding: .3rem .85rem;
    margin-bottom: .65rem;
}
.bc-contact-light-hint { font-size: .86rem; color: var(--bc-muted); margin: 0; line-height: 1.6; }
.bc-contact-submit-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.bc-contact-submit-btn { justify-content: center; }

@media (max-width: 575px) {
    .bc-contact-dark-panel,
    .bc-contact-light-panel { padding: 2.25rem 1.5rem; }
    .bc-cform-body { padding: 1.75rem; }
    .bc-cdetails-grid { grid-template-columns: 1fr; }
    .bc-cform-submit-row,
    .bc-contact-submit-row { flex-direction: column; align-items: flex-start; }
}

/* sidebar overrides */
.bc-sidebar-col .bc-cdetail-card { padding: 1.2rem 1.1rem; gap: .8rem; }
.bc-sidebar-col .bc-cdetail-icon-wrap { width: 40px; height: 40px; font-size: .9rem; }
.bc-sidebar-col .bc-cdetail-value { font-size: .84rem; }
.bc-sidebar-col .bc-cdetail-label { font-size: .63rem; }
.bc-sidebar-col .bc-cdetails-grid { grid-template-columns: 1fr; gap: .85rem; }
.bc-sidebar-col .bc-cdetails-nav { margin-top: 1.1rem; }
.bc-sidebar-col .bc-cdetails-nav-btn { width: 36px; height: 36px; font-size: .74rem; }
.bc-sidebar-col .bc-contact-split-wrap { grid-template-columns: 1fr; }
.bc-sidebar-col .bc-contact-dark-panel { padding: 2rem 1.4rem; }
.bc-sidebar-col .bc-contact-light-panel { padding: 2rem 1.4rem; }
.bc-sidebar-col .bc-cform-body { padding: 1.4rem; }
.bc-sidebar-col .bc-contact-dark-title { font-size: 1.15rem; }
.bc-sidebar-col .bc-cform-control { padding: .55rem .8rem; font-size: .84rem; }

/* ─── ════════════════════════════════════
   FOOTER
═══════════════════════════════════════ ─── */
.bc-footer {
    background: var(--dark, var(--color-text-dark, var(--bc-dark)));
    color: rgba(255,255,255,.82);
}
.bc-footer-top { padding: 5rem 0 2.5rem; }
.bc-footer-logo { font-size: 1.25rem; font-weight: 800; color: #fff; display: block; margin-bottom: .75rem; }
.bc-footer-desc { font-size: .87rem; color: rgba(255,255,255,.72); line-height: 1.7; }
/* Global `p { color: var(--bc-text) }` wins over single class; keep tagline readable on dark footer */
.tenant-site-root.theme-berlin-corporate .bc-footer p.bc-footer-desc,
.tenant-site-root.theme-berlin-corporate .bc-footer .bc-footer-desc {
    color: #fff !important;
}
.bc-footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.72); margin-bottom: 1.1rem; }
/* Global h1–h6 typography uses --bc-primary; footer headings must stay light on dark bg */
.tenant-site-root.theme-berlin-corporate .bc-footer h6.bc-footer-heading {
    color: rgba(255,255,255,.95) !important;
}
.bc-footer-link { display: block; font-size: .875rem; color: rgba(255,255,255,.82); padding: .22rem 0; transition: color var(--bc-transition), padding-left var(--bc-transition); }
.bc-footer-link:hover { color: #fff; padding-left: .4rem; }
.bc-footer-social { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.bc-footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .95rem; transition: all var(--bc-transition); text-decoration: none; }
.bc-footer-social a:hover { background: var(--bc-gold, #e8a020); border-color: var(--bc-gold, #e8a020); color: var(--bc-primary, #0d2040); transform: translateY(-2px); }
.bc-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 1.75rem 0 1.25rem; }
.bc-footer-bottom { font-size: .8rem; color: rgba(255,255,255,.62); }
.bc-footer-bottom a { color: rgba(255,255,255,.72); transition: color var(--bc-transition); }
.bc-footer-bottom a:hover { color: #fff; }
.bc-footer-contact-chip { display: flex; align-items: center; gap: .6rem; font-size: .87rem; color: rgba(255,255,255,.82); margin-bottom: .55rem; }
.bc-footer-contact-chip i { color: var(--bc-gold); font-size: .9rem; width: 16px; }
.bc-footer-contact-chip a { color: rgba(255,255,255,.82); text-decoration: none; transition: color var(--bc-transition); }
.bc-footer-contact-chip a:hover { color: #fff; }

/* ─── ════════════════════════════════════
   GALLERY — editorial bento + framed tiles
═══════════════════════════════════════ ─── */
.bc-gallery-section {
    position: relative;
}
.bc-gallery-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary, var(--bc-accent)) 0%, var(--bc-gold) 100%);
    border-radius: 0 3px 3px 0;
    opacity: .92;
    pointer-events: none;
}
@media (min-width: 992px) {
    .bc-gallery-section { padding-left: .5rem; }
}
.bc-gallery-section__rule {
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold));
    border-radius: 2px;
    margin-top: .35rem;
}
.bc-gallery-section__deco-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--bc-border);
    margin-bottom: .5rem;
}
.bc-gallery-section__deco-text {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bc-muted);
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    line-height: 1.45;
}

/* Mosaic grid: featured first tile + flowing tiles */
.bc-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .65rem;
}
@media (min-width: 576px) {
    .bc-gallery-mosaic { gap: .85rem; }
}
@media (min-width: 992px) {
    .bc-gallery-mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(120px, auto);
        gap: 1rem;
    }
    .bc-gallery-mosaic .bc-gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
        min-height: clamp(260px, 36vw, 420px);
    }
}

.bc-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    font-family: inherit;
    background: var(--bc-surface-2);
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    aspect-ratio: 4/3;
    box-shadow: var(--bc-shadow-sm);
    transition: box-shadow .35s var(--bc-ease), transform .35s var(--bc-ease);
}
@media (min-width: 992px) {
    .bc-gallery-mosaic .bc-gallery-item:first-child {
        aspect-ratio: auto;
    }
}
.bc-gallery-item:focus-visible {
    outline: 2px solid var(--color-primary, var(--bc-accent));
    outline-offset: 3px;
}
.bc-gallery-item:hover {
    box-shadow: var(--bc-shadow-lg);
    transform: translateY(-3px);
}
.bc-gallery-item__media {
    position: absolute;
    inset: 0;
    display: block;
}
/* Must beat .tenant-site-root.theme-berlin-corporate img { height: auto } so tiles fill (small images scale up). */
.tenant-site-root.theme-berlin-corporate .bc-gallery-item__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s var(--bc-ease), filter .45s var(--bc-ease);
}
.tenant-site-root.theme-berlin-corporate .bc-gallery-item:hover .bc-gallery-item__media img {
    transform: scale(1.06);
    filter: brightness(1.02);
}
/* Gold corner brackets */
.bc-gallery-item__corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: inherit;
    margin: .5rem;
    transition: border-color .35s var(--bc-ease), margin .35s var(--bc-ease);
}
.bc-gallery-item__corners::before,
.bc-gallery-item__corners::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--bc-gold);
    border-style: solid;
    opacity: .85;
    transition: width .35s var(--bc-ease), height .35s var(--bc-ease), opacity .35s var(--bc-ease);
}
.bc-gallery-item__corners::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 3px 0 0 0;
}
.bc-gallery-item__corners::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 3px 0;
}
.bc-gallery-item:hover .bc-gallery-item__corners::before,
.bc-gallery-item:hover .bc-gallery-item__corners::after {
    width: 28px;
    height: 28px;
    opacity: 1;
}
.bc-gallery-item__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,.12) 48%, transparent 56%);
    opacity: 0;
    transition: opacity .5s var(--bc-ease);
    pointer-events: none;
    z-index: 1;
}
.bc-gallery-item:hover .bc-gallery-item__shine { opacity: 1; }
/* Bottom panel overlay */
.bc-gallery-item__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .85rem .75rem;
    background: linear-gradient(0deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.55) 55%, transparent 100%);
    color: #fff;
    transform: translateY(6px);
    opacity: 0;
    transition: opacity .3s var(--bc-ease), transform .3s var(--bc-ease);
}
.bc-gallery-item:hover .bc-gallery-item__panel,
.bc-gallery-item:focus-visible .bc-gallery-item__panel {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 991px) {
    .bc-gallery-item__panel {
        opacity: 1;
        transform: none;
        padding: .55rem .7rem .65rem;
        background: linear-gradient(0deg, rgba(10,22,40,.9) 0%, rgba(10,22,40,.4) 70%, transparent 100%);
    }
    .bc-gallery-item__icon { width: 30px; height: 30px; font-size: .7rem; }
    .bc-gallery-item__label { font-size: .68rem; }
}
.bc-gallery-item__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bc-gold);
    color: var(--bc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
}
.bc-gallery-item__label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-gallery-empty {
    padding: 3rem 1.5rem;
    background: linear-gradient(145deg, var(--bc-surface) 0%, var(--bc-white) 100%);
    border: 1px dashed var(--bc-border);
    border-radius: var(--bc-radius-xl);
}
.bc-gallery-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(20,103,200,.08);
    color: var(--color-primary, var(--bc-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.bc-gallery-empty__title {
    font-weight: 700;
    color: var(--bc-primary);
    margin-bottom: .35rem;
}
.bc-gallery-empty__hint {
    font-size: .9rem;
    color: var(--bc-muted);
    margin: 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* Lightbox */
.bc-gallery-modal .modal-content.bc-gallery-modal__sheet {
    background: var(--bc-white);
    border: none;
    border-radius: var(--bc-radius-xl);
    box-shadow: var(--bc-shadow-lg);
    overflow: hidden;
}
.bc-gallery-modal__head {
    padding: 1rem 1.25rem;
    background: var(--bc-primary);
    align-items: center;
}
.bc-gallery-modal__head .btn-close {
    filter: invert(1) grayscale(1);
    opacity: .85;
}
.bc-gallery-modal__eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bc-gold);
}
.bc-gallery-modal__body {
    padding: 1.25rem 1.25rem 1.75rem;
    background: var(--bc-surface);
}
.bc-gallery-modal__figure { max-width: 100%; }
.bc-gallery-modal__img {
    border-radius: var(--bc-radius-md);
    box-shadow: var(--bc-shadow);
    max-height: min(78vh, 900px);
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    background: var(--bc-dark);
}
.bc-gallery-modal__caption {
    font-size: .95rem;
    color: var(--bc-text);
    line-height: 1.6;
    max-width: 640px;
}
.bc-gallery-modal__caption:empty,
.bc-gallery-modal__caption[hidden] {
    display: none !important;
}

/* Legacy class — keep layout for any older markup */
.bc-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
@media (min-width: 768px)  { .bc-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px)  { .bc-gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.bc-gallery-grid .bc-gallery-item { aspect-ratio: 4/3; position: relative; }
.tenant-site-root.theme-berlin-corporate .bc-gallery-grid .bc-gallery-item > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.bc-gallery-overlay { position: absolute; inset: 0; background: rgba(13,32,64,.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--bc-transition); color: #fff; font-size: 1.5rem; }
.bc-gallery-grid .bc-gallery-item:hover .bc-gallery-overlay { opacity: 1; }

/* ─── ════════════════════════════════════
   BLOG
═══════════════════════════════════════ ─── */
.bc-blog-card { background: #fff; border-radius: var(--bc-radius-lg); overflow: hidden; border: 1px solid var(--bc-border); transition: transform var(--bc-transition), box-shadow var(--bc-transition); display: flex; flex-direction: column; height: 100%; }
.bc-blog-card:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow-lg); border-color: transparent; }
.bc-blog-thumb { overflow: hidden; height: 210px; background: var(--bc-surface-2); flex-shrink: 0; position: relative; }
.bc-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--bc-ease); display: block; }
.bc-blog-card:hover .bc-blog-thumb img { transform: scale(1.06); }
.bc-blog-cat { position: absolute; top: .85rem; left: .85rem; background: var(--color-primary, var(--bc-accent)); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .7rem; border-radius: 3px; }
.bc-blog-body { padding: 1.4rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.bc-blog-meta { font-size: .76rem; color: var(--bc-muted); margin-bottom: .55rem; }
.bc-blog-title { font-size: .99rem; font-weight: 700; color: var(--bc-primary); margin-bottom: .5rem; line-height: 1.4; }
.bc-blog-title a { color: inherit; text-decoration: none; transition: color var(--bc-transition); }
.bc-blog-title a:hover { color: var(--color-primary, var(--bc-accent)); }
.bc-blog-excerpt { font-size: .865rem; color: var(--bc-muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.bc-blog-read { display: inline-flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 700; color: var(--color-primary, var(--bc-accent)); text-transform: uppercase; letter-spacing: .04em; transition: gap var(--bc-transition); }
.bc-blog-read:hover { gap: .55rem; }

/* ─── ════════════════════════════════════
   MISC COMPONENTS
═══════════════════════════════════════ ─── */
/* Map */
.bc-map-section { padding: 4rem 0; }
.bc-map-header { text-align: center; margin-bottom: 2.75rem; }
.bc-map-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold)); border-radius: 2px; margin: 1rem auto 0; }
.bc-map-wrap { border-radius: var(--bc-radius-xl); overflow: hidden; border: 1px solid var(--bc-border); box-shadow: var(--bc-shadow-lg); }
.bc-map-pin-bar { display: flex; align-items: center; padding: .7rem 1.1rem; background: var(--bc-primary); color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .03em; }
.bc-map-pin-bar i { color: var(--bc-gold); font-size: .9rem; }
.bc-map-wrap--empty { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bc-surface-2); gap: 1rem; }
.bc-map-empty-icon { font-size: 2.5rem; color: var(--color-primary, var(--bc-accent)); opacity: .35; }
.bc-map-empty-text { font-size: .9rem; color: var(--bc-muted); margin: 0; }
/* Map split layout */
.bc-map-split { display: grid; grid-template-columns: 1fr; border-radius: var(--bc-radius-xl); overflow: hidden; border: 1px solid var(--bc-border); box-shadow: var(--bc-shadow-lg); }
@media (min-width: 768px) { .bc-map-split { grid-template-columns: 1fr 320px; } }
.bc-map-split__map { display: flex; flex-direction: column; min-height: 360px; }
.bc-map-split__map iframe { flex: 1; border: 0; display: block; width: 100%; min-height: 360px; }
.bc-map-split__contact { display: flex; flex-direction: column; gap: .85rem; padding: 2rem 1.75rem; background: var(--bc-primary, #1a1a2e); color: #fff; }
.bc-map-contact-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.bc-map-contact-row { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; line-height: 1.55; color: rgba(255,255,255,.88); }
.bc-map-contact-icon { color: var(--bc-gold, #f0b429); font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }
.bc-map-contact-link { color: rgba(255,255,255,.88); text-decoration: none; }
.bc-map-contact-link:hover { color: #fff; text-decoration: underline; }
.bc-map-directions-btn { display: inline-flex; align-items: center; padding: .55rem 1.1rem; background: var(--color-primary, var(--bc-accent)); color: #fff; border-radius: var(--bc-radius-md); font-size: .82rem; font-weight: 600; text-decoration: none; transition: opacity .2s; }
.bc-map-directions-btn:hover { opacity: .88; color: #fff; }
/* Map contact-only block */
.bc-map-contact-only { display: flex; flex-direction: column; gap: .85rem; padding: 2rem 2.25rem; background: var(--bc-primary, #1a1a2e); color: #fff; border-radius: var(--bc-radius-xl); box-shadow: var(--bc-shadow-lg); }
/* Brand slider */
.bc-brand-item { display: flex; align-items: center; justify-content: center; padding: .75rem 1.5rem; }
.bc-brand-item img { max-height: 50px; max-width: 140px; object-fit: contain; filter: grayscale(1) opacity(.45); transition: filter var(--bc-transition); }
.bc-brand-item:hover img { filter: grayscale(0) opacity(1); }
/* FAQ */
.bc-faq .accordion-button {
    font-size: .95rem;
    font-weight: 600;
    color: var(--bc-primary) !important;
    background: var(--bc-white) !important;
    box-shadow: none !important;
    padding: 1.1rem 1.25rem;
}
.bc-faq .accordion-button:not(.collapsed) {
    color: var(--color-primary, var(--bc-accent)) !important;
    background: color-mix(in srgb, var(--color-primary, var(--bc-accent)) 6%, #ffffff) !important;
}
.bc-faq .accordion-item { border: 1px solid var(--bc-border); border-radius: var(--bc-radius-md) !important; margin-bottom: .65rem; overflow: hidden; }
.bc-faq .accordion-body { font-size: .9rem; color: var(--bc-text); line-height: 1.75; padding: 0 1.25rem 1.25rem; }
/* File display */
.bc-file-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--bc-border); border-radius: var(--bc-radius-md); margin-bottom: .55rem; transition: border-color var(--bc-transition), box-shadow var(--bc-transition); }
.bc-file-row:hover { border-color: var(--color-primary, var(--bc-accent)); box-shadow: 0 0 0 2px rgba(20,103,200,.1); }
.bc-file-icon { width: 42px; height: 42px; background: rgba(20,103,200,.08); color: var(--color-primary, var(--bc-accent)); border-radius: var(--bc-radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
/* Video — editorial section + featured stage + gallery cards */
.bc-video-section {
    position: relative;
}
.bc-video-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary, var(--bc-accent)) 0%, var(--bc-gold) 100%);
    border-radius: 0 3px 3px 0;
    opacity: .92;
    pointer-events: none;
}
@media (min-width: 992px) {
    .bc-video-section { padding-left: .5rem; }
}
.bc-video-section__rule {
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold));
    border-radius: 2px;
    margin-top: .35rem;
}
.bc-video-stage {
    position: relative;
    max-width: min(100%, 920px);
}
.bc-video-stage__shine {
    position: absolute;
    inset: 0;
    border-radius: calc(var(--bc-radius-xl) + 2px);
    background: linear-gradient(125deg, transparent 42%, rgba(255, 255, 255, .1) 50%, transparent 58%);
    opacity: 0;
    transition: opacity .55s var(--bc-ease);
    pointer-events: none;
    z-index: 1;
}
.bc-video-stage:hover .bc-video-stage__shine {
    opacity: 1;
}
.bc-video-stage__corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: calc(var(--bc-radius-xl) + 2px);
    margin: .55rem;
    border: 1px solid rgba(255, 255, 255, .18);
    transition: border-color .35s var(--bc-ease), margin .35s var(--bc-ease);
}
.bc-video-stage__corners::before,
.bc-video-stage__corners::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: var(--bc-gold);
    border-style: solid;
    opacity: .88;
    transition: width .35s var(--bc-ease), height .35s var(--bc-ease), opacity .35s var(--bc-ease);
}
.bc-video-stage__corners::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 3px 0 0 0;
}
.bc-video-stage__corners::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 3px 0;
}
.bc-video-stage:hover .bc-video-stage__corners::before,
.bc-video-stage:hover .bc-video-stage__corners::after {
    width: 32px;
    height: 32px;
    opacity: 1;
}
.bc-video-stage .bc-video-wrap {
    position: relative;
    z-index: 0;
}
.bc-video-stage__ratio iframe {
    border: 0;
}
/* Single video: light header + simple media (modal play) */
.bc-video-feature {
    max-width: min(100%, 960px);
    background: var(--bc-white, #fff);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-xl);
    box-shadow: var(--bc-shadow);
    overflow: hidden;
}
.bc-video-feature__header {
    padding: clamp(1.35rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.35rem);
    border-bottom: 1px solid var(--bc-border);
    background: linear-gradient(180deg, var(--bc-white, #fff) 0%, var(--bc-surface, #f8f9fb) 100%);
}
.bc-video-feature__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary, var(--bc-accent));
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.bc-video-feature__eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary, var(--bc-accent));
    flex-shrink: 0;
}
.bc-video-feature__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--bc-primary);
    letter-spacing: -0.02em;
}
.bc-video-feature__rule {
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold));
    border-radius: 2px;
    margin-bottom: 0.65rem;
}
.bc-video-feature__lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--bc-muted);
    max-width: 46rem;
}
.bc-video-feature__media {
    position: relative;
    background: #0e1016;
}
.bc-video-feature__media::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, var(--bc-accent)), var(--bc-gold));
    opacity: 0.95;
    z-index: 2;
    pointer-events: none;
}
.bc-video-feature__ratio {
    background: #0e1016;
}
.bc-video-poster--simple {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
}
.bc-video-poster__fill {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);
    transition: transform 0.6s var(--bc-ease);
}
.tenant-site-root.theme-berlin-corporate .bc-video-feature:hover .bc-video-poster__fill {
    transform: scale(1.04);
}
.bc-video-poster__fill--solid {
    transform: none;
}
.bc-video-poster__fill--fallback {
    background: linear-gradient(
        145deg,
        #1a1f2e 0%,
        color-mix(in srgb, var(--bc-primary) 85%, #000) 45%,
        color-mix(in srgb, var(--color-primary, var(--bc-accent)) 35%, #12151c) 100%
    );
    transform: none;
}
.bc-video-poster__veil {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 18, 0.35);
    pointer-events: none;
}
.bc-video-poster__btn-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    width: clamp(72px, 14vw, 100px);
    height: clamp(72px, 14vw, 100px);
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.8vw, 1.65rem);
    padding-left: 5px;
    transition: transform 0.35s var(--bc-ease), box-shadow 0.35s var(--bc-ease);
}
.bc-video-poster__btn-play-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: background 0.35s var(--bc-ease), border-color 0.35s var(--bc-ease);
}
.bc-video-poster__btn-play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}
.bc-video-poster__btn-play:hover .bc-video-poster__btn-play-bg {
    background: var(--color-primary, var(--bc-accent));
    border-color: rgba(255, 255, 255, 0.45);
}
.bc-video-poster__btn-play:focus-visible {
    outline: 3px solid var(--bc-gold);
    outline-offset: 4px;
}
.bc-video-poster__btn-play i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.bc-video-wrap { border-radius: var(--bc-radius-xl); overflow: hidden; box-shadow: var(--bc-shadow-lg); }

/* Video modal */
.bc-video-modal .modal-content.bc-video-modal__sheet {
    background: var(--bc-primary);
    border-radius: var(--bc-radius-xl);
    overflow: hidden;
    box-shadow: var(--bc-shadow-lg);
}
.bc-video-modal__head {
    padding: 0.85rem 1.15rem;
    background: var(--bc-primary);
    align-items: center;
}
.bc-video-modal__head .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.82;
}
.bc-video-modal__eyebrow {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
}
.bc-video-modal__body {
    background: #050508;
}
.bc-video-modal__ratio iframe.bc-video-modal__iframe {
    border: 0;
}
video.bc-video-modal__native {
    display: block;
    width: 100%;
    max-height: min(80vh, 900px);
    background: #000;
}

/* Video gallery grid */
.bc-video-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}
@media (min-width: 768px) {
    .bc-video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}
@media (min-width: 1200px) {
    .bc-video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.35rem;
    }
}
.bc-video-gallery-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bc-surface-2);
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    box-shadow: var(--bc-shadow-sm);
    transition: box-shadow .35s var(--bc-ease), transform .35s var(--bc-ease);
}
.bc-video-gallery-card:hover {
    box-shadow: var(--bc-shadow-lg);
    transform: translateY(-4px);
}
.bc-video-gallery-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, .11) 48%, transparent 56%);
    opacity: 0;
    transition: opacity .5s var(--bc-ease);
    pointer-events: none;
    z-index: 2;
}
.bc-video-gallery-card:hover .bc-video-gallery-card__shine {
    opacity: 1;
}
.bc-video-gallery-card__corners {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    border-radius: inherit;
    margin: .45rem;
    border: 1px solid rgba(255, 255, 255, .16);
    transition: border-color .35s var(--bc-ease);
}
.bc-video-gallery-card__corners::before,
.bc-video-gallery-card__corners::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--bc-gold);
    border-style: solid;
    opacity: .82;
    transition: width .3s var(--bc-ease), height .3s var(--bc-ease), opacity .3s var(--bc-ease);
}
.bc-video-gallery-card__corners::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 2px 0 0 0;
}
.bc-video-gallery-card__corners::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 2px 0;
}
.bc-video-gallery-card:hover .bc-video-gallery-card__corners::before,
.bc-video-gallery-card:hover .bc-video-gallery-card__corners::after {
    width: 26px;
    height: 26px;
    opacity: 1;
}
.bc-video-gallery-card__media {
    background: var(--bc-primary);
    z-index: 0;
}
.bc-video-gallery-card__media iframe {
    border: 0;
}
.bc-video-gallery-card__meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem 1.1rem 1.15rem;
    background: var(--bc-white);
    border-top: 1px solid var(--bc-border);
    flex: 1;
}
.bc-video-gallery-card__play {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    padding-left: 3px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary, var(--bc-accent)) 0%, color-mix(in srgb, var(--color-primary, var(--bc-accent)) 55%, var(--bc-primary)) 100%);
    box-shadow: 0 6px 16px rgba(20, 103, 200, .22);
}
.bc-video-gallery-card__text {
    min-width: 0;
    flex: 1;
}
.bc-video-gallery-card__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--bc-primary);
    margin: 0 0 .2rem;
    line-height: 1.35;
}
.bc-video-gallery-card__title--muted {
    color: var(--bc-muted);
    font-weight: 600;
}
.bc-video-gallery-card__desc {
    font-size: .82rem;
    color: var(--bc-muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Paragraph */
.bc-paragraph-content { max-width: 820px; }
.bc-paragraph-content.mx-auto { margin-left: auto; margin-right: auto; }
.bc-paragraph-content img { max-width: 100%; height: auto; border-radius: var(--bc-radius-lg); }
/* Inner page banner */
.bc-inner-page-banner {
    background: var(--bc-dark, #0a1628);
    position: relative;
    overflow: hidden;
    padding: 3.75rem 0 4.25rem;
    margin-bottom: 0;
}
.bc-inner-page-banner-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bc-inner-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        118deg,
        rgba(13, 32, 64, 0.72) 0%,
        rgba(20, 103, 200, 0.28) 48%,
        rgba(10, 22, 40, 0.92) 100%
    );
}
.bc-inner-page-banner-inner { position: relative; z-index: 2; }
.bc-inner-page-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bc-gold);
    margin-bottom: .85rem;
}
.tenant-site-root.theme-berlin-corporate p.bc-inner-page-eyebrow {
    color: var(--bc-gold) !important;
}
.bc-inner-page-eyebrow-line {
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: var(--bc-gold);
    margin-bottom: 1rem;
}
.bc-inner-page-banner h1 {
    font-size: clamp(1.65rem, 3.6vw, 2.55rem);
    font-weight: 800;
    color: #fff !important;
    margin-bottom: .5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.02em;
    line-height: 1.12;
}
.bc-inner-page-banner-deco {
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
}
.bc-inner-page-banner-deco::before {
    content: '';
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(232, 160, 32, 0.15), inset 0 0 60px rgba(20, 103, 200, 0.08);
}
.bc-inner-page-banner-deco::after {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232, 160, 32, 0.35) 0%, rgba(20, 103, 200, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.bc-inner-page-banner-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 52px;
    z-index: 3;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 52' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,34 Q360,12 720,30 T1440,22 L1440,52 L0,52 Z'/%3E%3C/svg%3E") center bottom no-repeat;
    background-size: 100% 100%;
}
.bc-breadcrumb-nav { font-size: .83rem; color: rgba(255,255,255,.85) !important; }
.bc-breadcrumb-nav a { color: rgba(255,255,255,.9) !important; text-decoration: none; transition: color var(--bc-transition); }
.bc-breadcrumb-nav a:hover { color: #fff !important; }
.bc-breadcrumb-nav span { margin: 0 .4rem; color: rgba(255,255,255,.6) !important; }
/* Owl Carousel theme overrides */
.bc-owl .owl-nav button { width: 44px; height: 44px; border-radius: 50% !important; background: rgba(255,255,255,.9) !important; border: 1px solid var(--bc-border) !important; display: flex !important; align-items: center; justify-content: center; transition: all var(--bc-transition) !important; }
.bc-owl .owl-nav button:hover { background: var(--color-primary, var(--bc-accent)) !important; border-color: var(--color-primary, var(--bc-accent)) !important; color: #fff !important; }
.bc-owl .owl-nav button span { font-size: 1.4rem; line-height: 1; }
.bc-owl .owl-dots .owl-dot.active span { background: var(--color-primary, var(--bc-accent)) !important; }
.bc-owl .owl-dots .owl-dot span { width: 8px !important; height: 8px !important; margin: 4px 4px !important; }
/* Pricing */
.bc-pricing-card { background: #fff; border: 1.5px solid var(--bc-border); border-radius: var(--bc-radius-lg); padding: 2.25rem 2rem; position: relative; transition: box-shadow var(--bc-transition), transform var(--bc-transition), border-color var(--bc-transition); height: 100%; }
.bc-pricing-card.featured { border-color: var(--color-primary, var(--bc-accent)); box-shadow: 0 0 0 3px rgba(20,103,200,.12), var(--bc-shadow); }
.bc-pricing-card:hover { transform: translateY(-3px); box-shadow: var(--bc-shadow-lg); }
.bc-pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--color-primary, var(--bc-accent)); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .28rem .9rem; border-radius: 100px; white-space: nowrap; }
.bc-pricing-plan { font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--bc-muted); margin-bottom: .5rem; }
.bc-pricing-price { font-size: 2.75rem; font-weight: 800; color: var(--bc-primary); line-height: 1; }
.bc-pricing-price sup { font-size: 1.1rem; vertical-align: top; margin-top: .5rem; font-weight: 600; }
.bc-pricing-period { font-size: .85rem; color: var(--bc-muted); margin-bottom: 1.5rem; }
.bc-pricing-feature { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--bc-text); padding: .4rem 0; }
.bc-pricing-feature i { font-size: .75rem; color: var(--color-primary, var(--bc-accent)); }
.bc-pricing-feature.off { color: var(--bc-muted); }
.bc-pricing-feature.off i { color: var(--bc-border); }
/* Utility */
.bc-surface-bg { background: var(--bc-surface); }
.bc-dark-bg { background: var(--bc-dark-2); }
.bc-text-primary-color { color: var(--color-primary, var(--bc-accent)) !important; }
.bc-text-gold { color: var(--bc-gold) !important; }
.bc-text-muted-color { color: var(--bc-muted) !important; }
.bc-text-dark-color { color: var(--bc-primary) !important; }
.bc-text-white-75 { color: rgba(255,255,255,.75) !important; }
.bc-fw-800 { font-weight: 800 !important; }

/* ─── Owl Carousel: nested dots visible ─── */
.bc-hero-mini-card .owl-dots { margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════════════
   SIDEBAR / NARROW COLUMN CONTEXT  ·  .bc-sidebar-col
   -----------------------------------------------------------------------
   Applied to col-lg-3 wrappers in left_right / right_left /
   left_center_right page layouts. Every section must render gracefully
   inside ~280–320 px on desktop without horizontal overflow or cramped
   multi-column sub-layouts.
═══════════════════════════════════════════════════════════════════════ */

/* ── Force ALL inner Bootstrap columns to full-width (single-column stacking) ── */
.bc-sidebar-col .row > [class*="col-"] {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
}
/* Offset reset */
.bc-sidebar-col [class*="offset-"] { margin-left: 0 !important; }

/* ── Compact section spacing ── */
.bc-sidebar-col .tenant-section-bg-wrapper.section-spacing-default,
.bc-sidebar-col .tenant-section-bg-wrapper.section-spacing-comfortable,
.bc-sidebar-col .tenant-section-bg-wrapper.section-spacing-spacious {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
}
.bc-sidebar-col .tenant-section-bg-wrapper.section-spacing-compact {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
}

/* ── Typography ── */
.bc-sidebar-col .bc-section-title {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem) !important;
    line-height: 1.25 !important;
    margin-bottom: .6rem !important;
}
.bc-sidebar-col .bc-section-lead {
    font-size: .84rem !important;
    line-height: 1.62 !important;
}
.bc-sidebar-col .bc-eyebrow {
    font-size: .67rem;
    margin-bottom: .5rem;
}
.bc-sidebar-col .bc-eyebrow::before { width: 18px; }
.bc-sidebar-col .bc-divider-line { width: 28px; height: 2px; }

/* ── Section header margin ── */
.bc-sidebar-col .mb-5 { margin-bottom: 1.25rem !important; }
.bc-sidebar-col .mb-4 { margin-bottom: 1rem !important; }

/* ── Buttons ── */
.bc-sidebar-col .btn-bc-primary,
.bc-sidebar-col .btn-bc-gold,
.bc-sidebar-col .btn-bc-outline,
.bc-sidebar-col .btn-bc-outline-dark {
    padding: .52rem 1.15rem !important;
    font-size: .81rem !important;
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.bc-sidebar-col .bc-hero-section {
    min-height: 0 !important;
}
.bc-sidebar-col .bc-hero-section h1,
.bc-sidebar-col .bc-hero-section .bc-hero-heading {
    font-size: 1.15rem !important;
    line-height: 1.25 !important;
    margin-bottom: .75rem !important;
    letter-spacing: -.01em !important;
}
.bc-sidebar-col .bc-hero-section p {
    font-size: .82rem !important;
    margin-bottom: .85rem !important;
}
.bc-sidebar-col .bc-hero-shape,
.bc-sidebar-col .bc-hero-cards { display: none !important; }
/* Carousel hero: limit height, remove excessive min-height */
.bc-sidebar-col .bc-hero-section .carousel,
.bc-sidebar-col .bc-hero-section .carousel-inner,
.bc-sidebar-col .bc-hero-section .carousel-item {
    height: 220px !important;
    min-height: 0 !important;
}
/* Carousel inner content div that has explicit padding/min-height */
.bc-sidebar-col .bc-hero-section .carousel-item > div {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    min-height: 0 !important;
}
/* Single / split hero direct content wrapper */
.bc-sidebar-col .bc-hero-section > div[style*="padding"],
.bc-sidebar-col .bc-hero-section > div[style*="z-index:3"] {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
    min-height: 0 !important;
}
/* Stat row — hide in sidebar to save space */
.bc-sidebar-col .bc-hero-section [style*="border-top:1px solid rgba(255,255,255"] { display: none !important; }
/* Side image column — hide in sidebar */
.bc-sidebar-col .bc-hero-section .d-none.d-lg-block { display: none !important; }
/* Button row: stack vertically */
.bc-sidebar-col .bc-hero-section [style*="display:flex;flex-wrap:wrap"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .5rem !important;
}

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.bc-sidebar-col .bc-about-exp-badge,
.bc-sidebar-col .bc-about-stat-badge { display: none !important; }
.bc-sidebar-col .bc-about-single-img-wrap img { max-height: 200px; }
.bc-sidebar-col .bc-about-img-accent { display: none !important; }
.bc-sidebar-col .bc-about-img-tall { min-height: 180px !important; }
.bc-sidebar-col .bc-about-img-wrap:not(.bc-about-img-tall) { min-height: 120px !important; }
.bc-sidebar-col .bc-about-blockquote { font-size: .83rem; }
.bc-sidebar-col .bc-about-lead { font-size: .85rem !important; }
.bc-sidebar-col .bc-about-stat { padding: .75rem 1rem; min-width: 80px; }
.bc-sidebar-col .bc-about-stat-num { font-size: 1.5rem; }
/* Feature strip in sidebar */
.bc-sidebar-col .bc-about-feature-strip { padding-top: 1.1rem; }
.bc-sidebar-col .bc-about-feature-label { font-size: .8rem; }
.bc-sidebar-col .bc-about-feature-icon { width: 36px; height: 36px; font-size: .9rem; }
/* Top-box feature cards */
.bc-sidebar-col .bc-about-top-box { padding: 1rem; }
.bc-sidebar-col .bc-about-top-box-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: .65rem; }
.bc-sidebar-col .bc-about-top-box-title { font-size: .88rem; }
.bc-sidebar-col .bc-about-top-box-desc { font-size: .79rem; }

/* ──────────────────────────────────────────
   ABOUT BLOCKS (WHY US)
────────────────────────────────────────── */
.bc-sidebar-col .bc-why-section > div[style*="padding-top"] {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.bc-sidebar-col .bc-why-left-img,
.bc-sidebar-col .bc-why-overlay,
.bc-sidebar-col .bc-why-left-stat { display: none !important; }
.bc-sidebar-col .bc-why-block-enhanced {
    padding: 1rem !important;
    border-radius: var(--bc-radius-lg) !important;
}
.bc-sidebar-col .bc-why-block-icon-gold { width: 38px !important; height: 38px !important; font-size: .92rem !important; }
.bc-sidebar-col .bc-why-block-title { font-size: .88rem !important; }
.bc-sidebar-col .bc-why-block-text { font-size: .8rem !important; }
.bc-sidebar-col .bc-why-block-num { font-size: 2.2rem !important; }
.bc-sidebar-col .bc-why-hint { font-size: .8rem; }
/* Custom accordion in sidebar */
.bc-sidebar-col .bca-btn { font-size: .83rem; padding: .75rem 2.5rem .75rem 1rem; }
.bc-sidebar-col .bca-body-inner { font-size: .8rem; padding: .6rem .9rem 1rem .9rem; }
.bc-sidebar-col .bca-btn::before { width: 1.55rem; height: 1.55rem; font-size: .58rem; }

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.bc-sidebar-col .bc-faq-intro-panel {
    position: static !important;
    top: auto !important;
    margin-bottom: 1.25rem;
}
.bc-sidebar-col .bc-faq-icon-badge { width: 44px; height: 44px; font-size: 1.05rem; margin-bottom: 1rem; }
.bc-sidebar-col .bc-faq-count-row { padding: .55rem .85rem; gap: .45rem; }
.bc-sidebar-col .bc-faq-count-num { font-size: 1.1rem; }
.bc-sidebar-col .bc-faq-count-lbl { font-size: .67rem; }
.bc-sidebar-col .bc-faq-bca .bca-btn { font-size: .82rem; padding: .75rem 2.5rem .75rem 1rem; }
.bc-sidebar-col .bc-faq-bca .bca-btn::before { width: 1.55rem; height: 1.55rem; font-size: .58rem; }
.bc-sidebar-col .bc-faq-bca .bca-body-inner { font-size: .8rem; padding: .65rem .9rem 1rem .9rem; }

/* ──────────────────────────────────────────
   COUNTER
────────────────────────────────────────── */
.bc-sidebar-col .bc-counter-card { padding: 1.2rem .9rem; }
.bc-sidebar-col .bc-counter-num { font-size: clamp(1.45rem, 2.8vw, 1.85rem) !important; }
.bc-sidebar-col .bc-counter-label { font-size: .68rem; }
.bc-sidebar-col .bc-counter-icon { width: 38px; height: 38px; font-size: .95rem; }

/* ──────────────────────────────────────────
   TEAM
────────────────────────────────────────── */
.bc-sidebar-col .bc-team-media { height: 185px !important; }
.bc-sidebar-col .bc-team-body { padding: .9rem 1rem 1.1rem; }
.bc-sidebar-col .bc-team-name { font-size: .88rem; }
.bc-sidebar-col .bc-team-role { font-size: .68rem; }
.bc-sidebar-col .bc-team-bio { font-size: .77rem; }

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.bc-sidebar-col .bc-testimonial-text { font-size: .85rem !important; line-height: 1.65 !important; }
.bc-sidebar-col .bc-testimonial-name { font-size: .85rem !important; }
.bc-sidebar-col .bc-testimonial-role { font-size: .72rem !important; }
.bc-sidebar-col .bc-testimonial-avatar-wrap,
.bc-sidebar-col .bc-testimonial-initials-wrap { width: 44px; height: 44px; font-size: 1.05rem; }
.bc-sidebar-col .bc-testimonials-stars { font-size: .78rem; margin-bottom: .5rem; }
/* Card padding */
.bc-sidebar-col [class*="-card"][class*="tst"] { padding: 1.25rem !important; }

/* ──────────────────────────────────────────
   BLOG
────────────────────────────────────────── */
.bc-sidebar-col .bc-blog-thumb { height: 155px !important; }
.bc-sidebar-col .bc-blog-body { padding: 1rem 1.1rem 1.25rem; }
.bc-sidebar-col .bc-blog-title { font-size: .88rem; line-height: 1.35; }
.bc-sidebar-col .bc-blog-excerpt { font-size: .78rem; line-height: 1.6; }
.bc-sidebar-col .bc-blog-meta { font-size: .7rem; }
.bc-sidebar-col .bc-blog-read { font-size: .73rem; }
.bc-sidebar-col .bc-blog-cat { font-size: .65rem; }

/* ──────────────────────────────────────────
   GALLERY
────────────────────────────────────────── */
.bc-sidebar-col .bc-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .55rem !important;
}
.bc-sidebar-col .bc-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .55rem !important;
}
.bc-sidebar-col .bc-gallery-mosaic .bc-gallery-item:first-child {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4/3 !important;
}
.bc-sidebar-col .bc-gallery-section::before { display: none; }
.bc-sidebar-col .bc-gallery-section { padding-left: 0; }
.bc-sidebar-col .bc-gallery-section__deco { display: none !important; }

/* ──────────────────────────────────────────
   CONTACT (info + form)
────────────────────────────────────────── */
.bc-sidebar-col .bc-contact-icon-box { width: 38px; height: 38px; font-size: .88rem; }
.bc-sidebar-col .bc-contact-value-lg { font-size: .86rem; }
.bc-sidebar-col .bc-contact-label-sm { font-size: .67rem; }
.bc-sidebar-col .bc-form-label { font-size: .7rem; }
.bc-sidebar-col .bc-form-input { padding: .55rem .8rem; font-size: .84rem; }
.bc-sidebar-col .bc-contact-info-item { padding: .8rem 0; gap: .7rem; }

/* ──────────────────────────────────────────
   SERVICE CARDS (icon grid)
────────────────────────────────────────── */
.bc-sidebar-col .bc-scard { border-radius: 10px !important; }
.bc-sidebar-col .bc-scard-top { padding: 1.4rem 1rem 1.2rem !important; }
.bc-sidebar-col .bc-scard-icon { width: 50px !important; height: 50px !important; font-size: 1.15rem !important; }
.bc-sidebar-col .bc-scard-title { font-size: .87rem !important; }
.bc-sidebar-col .bc-scard-text { font-size: .78rem !important; }
.bc-sidebar-col .bc-scard-link { font-size: .74rem; }
/* Image slider mode */
.bc-sidebar-col .bc-sscard { height: 230px !important; }
.bc-sidebar-col .bc-sscard-title { font-size: .88rem !important; }
.bc-sidebar-col .bc-sscard-desc { font-size: .78rem; }

/* ──────────────────────────────────────────
   SERVICES (image overlay + icon cards)
────────────────────────────────────────── */
.bc-sidebar-col .bc-svc2-thumb { height: 175px !important; }
.bc-sidebar-col .bc-svc2-label h4 { font-size: .9rem; }
.bc-sidebar-col .bc-svc2-body { padding: .7rem .9rem .9rem; gap: .7rem; }
.bc-sidebar-col .bc-svc2-body p { font-size: .78rem; }
.bc-sidebar-col .bc-svc2-arrow { width: 34px; height: 34px; min-width: 34px; font-size: .78rem; }
.bc-sidebar-col .bc-proc-card { padding: 0 1.1rem 1.4rem; border-radius: 12px !important; }
.bc-sidebar-col .bc-proc-title { font-size: .88rem; }
.bc-sidebar-col .bc-proc-text { font-size: .79rem; }
.bc-sidebar-col .bc-proc-icon { width: 50px !important; height: 50px !important; font-size: 1.2rem !important; }
.bc-sidebar-col .bc-proc-step-num { font-size: 1.4rem; }

/* ──────────────────────────────────────────
   PRODUCT CARDS
────────────────────────────────────────── */
.bc-sidebar-col .bc-pcard-media { height: 155px !important; }
.bc-sidebar-col .bc-pcard-body { padding: .5rem 1rem 1.1rem; }
.bc-sidebar-col .bc-pcard-name { font-size: .86rem; }
.bc-sidebar-col .bc-pcard-desc { font-size: .76rem; }
.bc-sidebar-col .bc-pcard-price { font-size: .92rem; }
.bc-sidebar-col .bc-pcard-btn { font-size: .72rem; padding: .35rem .85rem; }
.bc-sidebar-col .bc-pcard-ghost { font-size: 4.5rem; }

/* ──────────────────────────────────────────
   PRICING
────────────────────────────────────────── */
.bc-sidebar-col .bc-pricing-card { padding: 1.5rem 1.2rem; }
.bc-sidebar-col .bc-pricing-price { font-size: 1.95rem; }
.bc-sidebar-col .bc-pricing-plan { font-size: .7rem; }
.bc-sidebar-col .bc-pricing-period { font-size: .78rem; margin-bottom: 1rem; }
.bc-sidebar-col .bc-pricing-feature { font-size: .8rem; padding: .3rem 0; gap: .5rem; }

/* ──────────────────────────────────────────
   VIDEO
────────────────────────────────────────── */
.bc-sidebar-col .bc-video-section::before { display: none; }
.bc-sidebar-col .bc-video-section { padding-left: 0; }
.bc-sidebar-col .bc-video-feature { max-width: 100%; }
.bc-sidebar-col .bc-video-feature__header {
    padding: 1rem 1.1rem 0.85rem;
}
.bc-sidebar-col .bc-video-feature__title {
    font-size: 1.05rem;
}
.bc-sidebar-col .bc-video-feature__lead {
    font-size: 0.84rem;
    line-height: 1.6;
}
.bc-sidebar-col .bc-video-poster__btn-play {
    width: 58px;
    height: 58px;
    font-size: 1rem;
}
.bc-sidebar-col .bc-video-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: .85rem !important;
}
.bc-sidebar-col .bc-video-gallery-card__meta { padding: .85rem .95rem .95rem; }
.bc-sidebar-col .bc-video-gallery-card__play {
    width: 36px;
    height: 36px;
    font-size: .65rem;
}
.bc-sidebar-col .bc-video-gallery-card__title { font-size: .86rem; }
.bc-sidebar-col .bc-video-gallery-card__desc { font-size: .76rem; }
.bc-sidebar-col .bc-video-wrap { border-radius: var(--bc-radius-lg); }

/* ──────────────────────────────────────────
   PARAGRAPH
────────────────────────────────────────── */
.bc-sidebar-col .bc-paragraph-content { max-width: 100% !important; font-size: .88rem; }
.bc-sidebar-col .bc-paragraph-content .bc-section-lead { font-size: .86rem !important; }

/* ──────────────────────────────────────────
   FILE DISPLAY
────────────────────────────────────────── */
.bc-sidebar-col .bc-file-row { padding: .75rem 1rem; gap: .75rem; }
.bc-sidebar-col .bc-file-icon { width: 36px; height: 36px; font-size: .88rem; }

/* ──────────────────────────────────────────
   BRAND SLIDER
────────────────────────────────────────── */
.bc-sidebar-col .bc-brand-item { padding: .5rem 1rem; }
.bc-sidebar-col .bc-brand-item img { max-height: 36px; max-width: 110px; }

/* ──────────────────────────────────────────
   CTA
────────────────────────────────────────── */
.bc-sidebar-col .bc-cta-heading { font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important; }
.bc-sidebar-col .bc-cta-text { font-size: .84rem !important; margin-bottom: 1.25rem !important; }
.bc-sidebar-col .bc-cta-deco-ring { display: none !important; }

/* ──────────────────────────────────────────
   MAP
────────────────────────────────────────── */
.bc-sidebar-col .bc-map-wrap { border-radius: var(--bc-radius-lg); }
.bc-sidebar-col .bc-map-wrap iframe { min-height: 220px; }

/* ═══════════════════════════════════════════════════════════════════════
   HALF-WIDTH CENTER COLUMN  ·  .bc-main-col-6
   Applied to col-lg-6 center column in left_center_right layout.
   Sections need moderate scaling (not as tight as sidebar).
═══════════════════════════════════════════════════════════════════════ */
.bc-main-col-6 .bc-section-title {
    font-size: clamp(1.35rem, 2.8vw, 1.95rem) !important;
}
.bc-main-col-6 .bc-section-lead { font-size: .92rem !important; }
/* Hero in center column: reduce height */
.bc-main-col-6 .bc-hero-section { min-height: 0 !important; }
.bc-main-col-6 .bc-hero-section h1,
.bc-main-col-6 .bc-hero-section .bc-hero-heading { font-size: clamp(1.4rem, 3vw, 2rem) !important; }
.bc-main-col-6 .bc-hero-shape,
.bc-main-col-6 .bc-hero-cards { display: none !important; }
/* Collapse inner wide columns */
.bc-main-col-6 .col-lg-7,
.bc-main-col-6 .col-lg-8,
.bc-main-col-6 .col-lg-9 {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
}
.bc-main-col-6 [class*="offset-lg-"] { margin-left: 0 !important; }
/* About badges: hide */
.bc-main-col-6 .bc-about-exp-badge,
.bc-main-col-6 .bc-about-stat-badge { display: none !important; }
/* FAQ: static panel */
.bc-main-col-6 .bc-faq-intro-panel { position: static !important; }
/* Team media height */
.bc-main-col-6 .bc-team-media { height: 220px !important; }
/* Blog thumb */
.bc-main-col-6 .bc-blog-thumb { height: 185px !important; }

/* ═══════════════════════════════════════════════════════════════════════
   SUB-PAGE / INNER PAGE CONTEXT
   -----------------------------------------------------------------------
   Sections rendered on non-home pages (with inner page banner header).
   Fine-tunes spacing and hero sizing so pages feel polished throughout.
═══════════════════════════════════════════════════════════════════════ */

/* Inner-page banner — tighter on smaller viewports */
@media (max-width: 767px) {
    .bc-inner-page-banner { padding: 2rem 0 2.85rem; }
    .bc-inner-page-banner-wave { height: 40px; }
    .bc-inner-page-banner h1 { font-size: clamp(1.35rem, 5vw, 2rem); }
    .bc-breadcrumb-nav { font-size: .78rem; }
}

/* Blog grid → next section (e.g. contact): extra breathing room */
.tenant-site-root.theme-berlin-corporate .bc-blog-section-root {
    margin-bottom: 2.75rem;
}
@media (min-width: 992px) {
    .tenant-site-root.theme-berlin-corporate .bc-blog-section-root {
        margin-bottom: 3.5rem;
    }
}

/* Section title on sub-pages: slightly tighter max */
.bc-subpage-context .bc-section-title {
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
}

/* Hero used on sub-pages: trim excessive height */
.bc-inner-page-content .bc-hero-section { min-height: 0 !important; }
.bc-inner-page-content .bc-hero-section h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem) !important;
}

/* About section: on sub-pages, image max-height more reasonable */
@media (min-width: 992px) {
    .bc-subpage-context .bc-about-single-img-wrap img { max-height: 380px; }
}

/* FAQ on sub-pages: slightly smaller panel text */
@media (max-width: 991px) {
    .bc-faq-intro-panel { position: static; }
}

/* Counter on sub-pages: balanced sizing */
@media (max-width: 575px) {
    .bc-counter-num { font-size: clamp(1.85rem, 6vw, 2.5rem) !important; }
    .bc-counter-card { padding: 1.5rem 1rem; }
}

/* Team on narrow sub-pages */
@media (max-width: 575px) {
    .bc-team-media { height: 210px !important; }
}

/* Blog thumb on narrow screens */
@media (max-width: 575px) {
    .bc-blog-thumb { height: 175px !important; }
}

/* Gallery: ensure 2 columns on very small screens */
@media (max-width: 480px) {
    .bc-gallery-grid,
    .bc-gallery-mosaic { grid-template-columns: repeat(2, 1fr) !important; gap: .5rem !important; }
}

/* Section-title font safety: hard-cap on mobile to prevent bleed */
@media (max-width: 480px) {
    .bc-section-title { font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important; }
    .bc-section-lead { font-size: .9rem !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER CONTACT STRIP (section)
═══════════════════════════════════════════════════════════════════════ */
.bc-footer-contact-strip {
    background: var(--bc-surface);
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
}
.bc-footer-contact-strip .bc-fc-logo {
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
}
.bc-footer-contact-strip .bc-fc-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bc-primary);
}
.bc-footer-contact-strip .bc-fc-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bc-muted);
    margin-bottom: 0.2rem;
}
.bc-footer-contact-strip .bc-fc-phone {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bc-primary);
    text-decoration: none;
    transition: color var(--bc-transition);
}
.bc-footer-contact-strip .bc-fc-phone:hover {
    color: var(--color-primary, var(--bc-accent));
}
.bc-footer-contact-strip .bc-fc-email {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary, var(--bc-accent));
    text-decoration: none;
    transition: color var(--bc-transition);
}
.bc-footer-contact-strip .bc-fc-email:hover {
    color: var(--bc-primary);
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING MODULE (Tailwind partial) — align with Berlin Corporate tokens
═══════════════════════════════════════════════════════════════════════ */
.tenant-site-root.theme-berlin-corporate .pricing-payment-section {
    font-family: var(--bc-font);
    background: var(--bc-surface) !important;
    border-color: var(--bc-border) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .max-w-3xl.mx-auto.mb-10 h2,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section h2.text-2xl,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section h2.text-3xl,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section h3.text-xl,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section h3.text-lg {
    color: var(--bc-primary) !important;
    font-family: var(--bc-font);
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-slate-900,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-slate-700 {
    color: var(--bc-primary) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-slate-600,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-slate-500 {
    color: var(--bc-muted) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-slate-400 {
    color: var(--bc-muted) !important;
    opacity: 0.85;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-xs.font-semibold.uppercase,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-xs.uppercase {
    color: var(--color-primary, var(--bc-accent)) !important;
    letter-spacing: 0.12em;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .rounded-xl,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .rounded-2xl,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .rounded-lg {
    border-radius: var(--bc-radius-lg) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .border-slate-200,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .border-2.border-slate-200 {
    border-color: var(--bc-border) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .bg-white,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .bg-white\/90 {
    background: var(--bc-white) !important;
    box-shadow: var(--bc-shadow-sm);
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .pricing-card,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .flex.flex-col.rounded-2xl {
    border-radius: var(--bc-radius-lg) !important;
    border-color: rgba(13, 32, 64, 0.1) !important;
    box-shadow: var(--bc-shadow) !important;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .pricing-card:hover,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .flex.flex-col.rounded-2xl:hover {
    box-shadow: var(--bc-shadow-lg) !important;
    border-color: rgba(20, 103, 200, 0.25) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .border-primary-500,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .ring-primary-200 {
    border-color: var(--color-primary, var(--bc-accent)) !important;
    --tw-ring-color: rgba(20, 103, 200, 0.25) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .bg-primary-600,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .hover\:bg-primary-700:hover {
    background-color: var(--color-button, var(--bc-primary)) !important;
    border-color: var(--color-button, var(--bc-primary)) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .hover\:bg-primary-700:hover {
    background-color: var(--color-button-dark, var(--bc-dark)) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-primary-600,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .text-primary-500 {
    color: var(--color-primary, var(--bc-accent)) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .pricing-toggle-monthly,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .pricing-toggle-yearly {
    border-radius: var(--bc-radius) !important;
    font-family: var(--bc-font);
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .pricing-toggle-monthly.bg-primary-50,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .pricing-toggle-yearly.bg-primary-50 {
    background: rgba(20, 103, 200, 0.1) !important;
    border-color: rgba(20, 103, 200, 0.35) !important;
    color: var(--bc-primary) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .js-pricing-pay-btn,
.tenant-site-root.theme-berlin-corporate .pricing-payment-section a.rounded-lg.bg-primary-600 {
    border-radius: var(--bc-radius) !important;
    font-weight: 600 !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .border-slate-300.text-slate-700 {
    border-color: var(--bc-border) !important;
    color: var(--bc-primary) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .hover\:bg-slate-50:hover {
    background: var(--bc-surface-2) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section svg.text-primary-500 {
    color: var(--color-primary, var(--bc-accent)) !important;
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section .relative.w-full.max-w-md.rounded-xl {
    border-radius: var(--bc-radius-lg) !important;
    font-family: var(--bc-font);
}
.tenant-site-root.theme-berlin-corporate .pricing-payment-section [data-pricing-submit] {
    background-color: var(--color-button, var(--bc-primary)) !important;
    border-radius: var(--bc-radius) !important;
}
