/* Skillbook Consulting — single-page section styles (uses existing theme tokens) */

/* ── Typography scale (site-wide standard) ── */
:root {
    --sbc-text: 15px;
    --sbc-text-sm: 14px;
    --sbc-lede: 16px;
    --sbc-h1: clamp(1.75rem, 3.2vw, 2.5rem);
    --sbc-h2: clamp(1.4rem, 2.2vw, 1.85rem);
    --sbc-h3: 1.2rem;
    --sbc-h4: 1.05rem;
    --sbc-eyebrow: 12px;
    --sbc-quote: 16px;
    --sbc-stat: 3rem;
}

#sbc-page-content,
.sbc-section,
.sbc-page-inner {
    font-size: var(--sbc-text);
    line-height: 1.65;
}

#sbc-page-content p,
.sbc-section p,
.sbc-page-inner p {
    font-size: var(--sbc-text);
    line-height: 1.65;
}

#sbc-page-content h2,
.sbc-section h2,
.sbc-page-inner h2 {
    font-size: var(--sbc-h2) !important;
    line-height: 1.3;
    font-weight: 700;
}

#sbc-page-content h3,
.sbc-section h3,
.sbc-page-inner h3 {
    font-size: var(--sbc-h3);
    line-height: 1.35;
    font-weight: 700;
}

#sbc-page-content h4,
.sbc-section h4,
.sbc-page-inner h4 {
    font-size: var(--sbc-h4);
    line-height: 1.4;
    font-weight: 700;
}

.sbc-lede {
    font-size: var(--sbc-lede) !important;
    line-height: 1.65;
    max-width: 38rem;
}

.sbc-eyebrow {
    font-size: var(--sbc-eyebrow) !important;
}

/* Inner pages (non-home) need header offset — skipped when breadcrumb leads */
.sbc-page-inner {
    padding-top: 160px;
}

.sbc-breadcrumb+.sbc-page-inner,
.sbc-breadcrumb+.sbc-section {
    padding-top: 56px;
}

@media (max-width: 991px) {
    .sbc-page-inner {
        padding-top: 120px;
    }

    .sbc-breadcrumb+.sbc-page-inner,
    .sbc-breadcrumb+.sbc-section {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .sbc-page-inner {
        padding-top: 110px;
    }

    .sbc-breadcrumb+.sbc-page-inner,
    .sbc-breadcrumb+.sbc-section {
        padding-top: 36px;
    }
}

@media (max-width: 575px) {
    .sbc-page-inner {
        padding-top: 100px;
    }

    .sbc-breadcrumb+.sbc-page-inner,
    .sbc-breadcrumb+.sbc-section {
        padding-top: 28px;
    }
}

/* ── Attractive breadcrumbs (all pages except home) ── */
.sbc-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 148px 0 48px;
    color: var(--tg-white);
    isolation: isolate;
}

.sbc-breadcrumb-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(135deg, rgba(15, 36, 56, 0.92) 0%, rgba(22, 58, 78, 0.88) 48%, rgba(28, 72, 88, 0.9) 100%),
        url("../img/bg/breadcrumb_bg.jpg") center/cover no-repeat;
}

.sbc-breadcrumb-glow {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 42, 0.28) 0%, transparent 68%);
    top: -120px;
    right: -80px;
    pointer-events: none;
    animation: sbc-crumb-glow 8s ease-in-out infinite alternate;
}

.sbc-breadcrumb-glow::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 168, 168, 0.22) 0%, transparent 70%);
    bottom: -180px;
    left: -40px;
}

@keyframes sbc-crumb-glow {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 0.85;
    }

    to {
        transform: translate(-24px, 18px) scale(1.08);
        opacity: 1;
    }
}

.sbc-breadcrumb-nav {
    margin-bottom: 22px;
}

.sbc-breadcrumb-list {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 8px 14px 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    animation: sbc-crumb-rise 0.55s ease both;
}

.sbc-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
}

.sbc-breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.sbc-breadcrumb-home:hover {
    color: var(--tg-yellow);
    transform: translateX(-1px);
}

.sbc-breadcrumb-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 160, 42, 0.18);
    color: var(--tg-yellow);
    transition: background 0.2s ease, transform 0.2s ease;
}

.sbc-breadcrumb-home:hover .sbc-breadcrumb-home-icon {
    background: rgba(212, 160, 42, 0.32);
    transform: scale(1.05);
}

.sbc-breadcrumb-sep {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.4);
}

.sbc-breadcrumb-item.is-current span {
    color: var(--tg-yellow);
    position: relative;
}

.sbc-breadcrumb-item.is-current span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--tg-yellow), transparent);
}

.sbc-breadcrumb-copy {
    max-width: 720px;
    animation: sbc-crumb-rise 0.7s 0.08s ease both;
}

.sbc-breadcrumb-kicker {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.sbc-breadcrumb-title {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--tg-white);
    text-transform: none;
}

.sbc-breadcrumb-subtitle {
    margin: 0;
    max-width: 520px;
    font-size: var(--sbc-lede);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

@keyframes sbc-crumb-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .sbc-breadcrumb {
        padding: 120px 0 40px;
    }
}

@media (max-width: 767px) {
    .sbc-breadcrumb {
        padding: 110px 0 32px;
    }
}

@media (max-width: 575px) {
    .sbc-breadcrumb {
        padding: 100px 0 28px;
    }

    .sbc-breadcrumb-list {
        gap: 6px;
        padding: 6px 10px 6px 8px;
    }

    .sbc-breadcrumb-subtitle {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sbc-breadcrumb-glow,
    .sbc-breadcrumb-list,
    .sbc-breadcrumb-copy {
        animation: none !important;
    }
}

/* AJAX page transition */
#sbc-page-content.sbc-page-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .sbc-breathe {
        animation: none !important;
    }

    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

.sbc-skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 10px 18px;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    border-radius: 6px;
    font-weight: 600;
}

.sbc-skip-link:focus {
    top: 16px;
    outline: 2px solid var(--tg-teal);
}

.sbc-section {
    padding: 84px 0;
}

.sbc-section .container {
    max-width: 1180px;
}

.sbc-eyebrow {
    display: inline-block;
    font-size: var(--sbc-eyebrow);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tg-primary-color);
    margin-bottom: 14px;
}

.sbc-eyebrow-gold {
    color: var(--tg-yellow);
}

.sbc-eyebrow-light {
    color: var(--tg-cornflower-blue);
}

.sbc-lede {
    font-size: var(--sbc-lede);
    line-height: 1.65;
    max-width: 38rem;
}

.sbc-text-muted {
    color: var(--tg-gray-four);
}

/* Band backgrounds */
.sbc-band-linen {
    background: #EDE8DF;
}

.sbc-band-white {
    background: var(--tg-white);
}

.sbc-band-sage {
    background: #F1F4F1;
}

.sbc-band-dark {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
}

.sbc-band-dark .sbc-lede,
.sbc-band-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.sbc-band-dark h2,
.sbc-band-dark h3 {
    color: var(--tg-white);
}

/* Buttons */
.sbc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    transition: all 0.18s ease;
    border: 2px solid transparent;
}

.sbc-btn-primary {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    border-color: var(--tg-secondary-color);
}

.sbc-btn-primary:hover {
    background: var(--tg-primary-color);
    border-color: var(--tg-primary-color);
    color: var(--tg-white);
}

.sbc-btn-gold {
    background: var(--tg-yellow);
    color: var(--tg-secondary-color);
    border-color: var(--tg-yellow);
}

.sbc-btn-gold:hover {
    background: #e6a020;
    border-color: #e6a020;
    color: var(--tg-secondary-color);
}

.sbc-btn-outline {
    background: transparent;
    color: var(--tg-secondary-color);
    border-color: var(--tg-secondary-color);
}

.sbc-btn-outline:hover {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
}

.sbc-btn-outline-light {
    background: transparent;
    color: var(--tg-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.sbc-btn-outline-light:hover {
    background: var(--tg-white);
    color: var(--tg-secondary-color);
}

.sbc-btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

.sbc-btn-wrap {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    max-width: 100%;
    height: auto;
}

/* Hero */
.sbc-hero {
    position: relative;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 84px;
}

.sbc-hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}

.sbc-hero-deco-1 {
    width: 420px;
    height: 420px;
    background: var(--tg-primary-color);
    top: -80px;
    right: -60px;
}

.sbc-hero-deco-2 {
    width: 280px;
    height: 280px;
    background: var(--tg-metallic-blue);
    bottom: 40px;
    left: -40px;
}

.sbc-hero h1 {
    font-size: var(--sbc-h1);
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: none;
}

.sbc-hero h1 em {
    font-style: italic;
    color: var(--tg-teal);
}

.sbc-hero-note {
    font-size: 14px;
    color: var(--tg-gray-four);
    margin-top: 20px;
    font-style: italic;
}

.sbc-audience-links {
    margin-top: 28px;
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.sbc-audience-label {
    color: inherit;
}

.sbc-audience-opts {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
}

.sbc-audience-links a {
    color: var(--tg-primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sbc-audience-links span {
    color: var(--tg-gray-four);
}

/* PRR Visual (Hero right) */
.sbc-prr-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.sbc-prr-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--tg-white);
    border-radius: 6px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 25, 76, 0.08);
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sbc-prr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 25, 76, 0.12);
}

.sbc-prr-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sbc-prr-dot-ocean {
    background: var(--tg-metallic-blue);
}

.sbc-prr-dot-midnight {
    background: var(--tg-secondary-color);
}

.sbc-prr-dot-gold {
    background: var(--tg-yellow);
}

.sbc-breathe {
    animation: sbcBreathe 4.5s ease-in-out infinite;
}

.sbc-breathe-d1 {
    animation-delay: 1.5s;
}

.sbc-breathe-d2 {
    animation-delay: 3s;
}

@keyframes sbcBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.7;
    }
}

.sbc-prr-card h4 {
    margin: 0;
    font-size: 1rem;
    text-transform: none;
}

.sbc-prr-card p {
    margin: 0;
    font-size: 14px;
    color: var(--tg-gray-four);
}

.sbc-hero-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 16px 40px rgba(0, 25, 76, 0.12);
}

.sbc-hero-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Approach — PRR Poster */
/* Our Approach — intro column */
.sbc-approach-hero {
    margin-bottom: 12px;
}

.sbc-approach-copy h2 {
    margin-bottom: 18px;
}

.sbc-approach-lede {
    font-size: var(--sbc-lede);
    line-height: 1.65;
    color: var(--tg-secondary-color);
    font-weight: 500;
    margin-bottom: 14px;
}

.sbc-approach-copy > p {
    margin-bottom: 14px;
    max-width: 36rem;
}

.sbc-approach-points {
    list-style: none;
    margin: 22px 0 20px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sbc-approach-point {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 14px;
}

.sbc-approach-point-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid rgba(15, 36, 56, 0.08);
    box-shadow: 0 8px 22px rgba(15, 36, 56, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sbc-approach-point-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 36, 56, 0.12);
}

.sbc-approach-point-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.sbc-approach-point-org .sbc-approach-point-index {
    background: rgba(212, 160, 42, 0.14);
    color: #b8860b;
}

.sbc-approach-point-leader .sbc-approach-point-index {
    background: rgba(15, 36, 56, 0.1);
    color: var(--tg-secondary-color);
}

.sbc-approach-point-coach .sbc-approach-point-index {
    background: rgba(20, 120, 120, 0.12);
    color: var(--tg-teal);
}

.sbc-approach-point-org .sbc-approach-point-link {
    border-left: 3px solid var(--tg-yellow);
}

.sbc-approach-point-leader .sbc-approach-point-link {
    border-left: 3px solid var(--tg-secondary-color);
}

.sbc-approach-point-coach .sbc-approach-point-link {
    border-left: 3px solid var(--tg-teal);
}

.sbc-approach-point-body {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.sbc-approach-point-body strong {
    display: block;
    font-size: 15px;
    color: var(--tg-secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.sbc-approach-point-body span {
    display: block;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--tg-gray-four);
}

.sbc-approach-point-arrow {
    font-size: 16px;
    color: var(--tg-secondary-color);
    opacity: 0.35;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sbc-approach-point-link:hover .sbc-approach-point-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--tg-yellow);
}

.sbc-approach-aside {
    margin: 8px 0 22px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(15, 36, 56, 0.04);
    border: 1px solid rgba(15, 36, 56, 0.08);
}

.sbc-approach-aside p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--tg-secondary-color);
    font-style: italic;
}

.sbc-approach-actions {
    margin-top: 4px;
}

.sbc-approach-visual {
    position: relative;
}

.sbc-approach-visual .sbc-approach-image,
.sbc-approach-visual .sbc-ph {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 36, 56, 0.14);
}

.sbc-approach-visual .sbc-approach-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 20%;
}

.sbc-approach-visual-caption {
    margin: 14px 0 0;
    font-size: 14px;
    color: var(--tg-gray-four);
    text-align: center;
}

.sbc-prr-poster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0 28px;
    position: relative;
}

.sbc-prr-poster::before {
    display: none;
}

.sbc-prr-word {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 36, 56, 0.08);
    box-shadow: 0 14px 32px rgba(15, 36, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sbc-prr-word:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 36, 56, 0.12);
}

.sbc-prr-media {
    position: relative;
    overflow: hidden;
}

.sbc-prr-media .sbc-ph,
.sbc-prr-media img {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.sbc-prr-step {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(15, 36, 56, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sbc-prr-word.pause .sbc-prr-step {
    background: rgba(46, 107, 148, 0.9);
}

.sbc-prr-word.reflect .sbc-prr-step {
    background: rgba(15, 36, 56, 0.9);
}

.sbc-prr-word.reset .sbc-prr-step {
    background: rgba(20, 120, 120, 0.9);
}

.sbc-prr-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 22px;
    flex: 1;
}

.sbc-prr-label {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tg-gray-four);
}

.sbc-prr-word.pause .sbc-prr-label {
    color: var(--tg-metallic-blue);
}

.sbc-prr-word.reflect .sbc-prr-label {
    color: var(--tg-secondary-color);
}

.sbc-prr-word.reset .sbc-prr-label {
    color: var(--tg-teal);
}

.sbc-prr-word h3 {
    font-size: var(--sbc-h2);
    margin: 0;
    text-transform: none;
    line-height: 1.2;
}

.sbc-prr-word.pause h3 {
    color: var(--tg-metallic-blue);
}

.sbc-prr-word.reflect h3 {
    color: var(--tg-secondary-color);
}

.sbc-prr-word.reset h3 {
    color: var(--tg-teal);
}

.sbc-prr-word p {
    font-size: var(--sbc-text);
    color: var(--tg-gray-four);
    max-width: none;
    margin: 0;
    line-height: 1.55;
}

.sbc-prr-meta {
    list-style: none;
    margin: 8px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(15, 36, 56, 0.08);
    display: grid;
    gap: 6px;
}

.sbc-prr-meta li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--tg-secondary-color);
}

.sbc-prr-meta li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tg-yellow);
}

.sbc-prr-word.reflect .sbc-prr-meta li::before {
    background: var(--tg-secondary-color);
}

.sbc-prr-word.reset .sbc-prr-meta li::before {
    background: var(--tg-teal);
}

.sbc-science-quote {
    text-align: center;
    font-size: var(--sbc-quote);
    font-style: italic;
    font-weight: 600;
    color: var(--tg-secondary-color);
    margin: 28px 0;
}

/* Chips */
.sbc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 32px 0;
}

.sbc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tg-white);
    border: 1px solid var(--tg-border-color);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
}

.sbc-chip img {
    width: 16px;
    height: 16px;
}

/* Proof strip — client voice + research */
.sbc-proof-strip {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #0f2438 0%, #18324a 55%, #1a3d52 100%);
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(15, 36, 56, 0.22);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.sbc-proof-strip::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 42, 0.22), transparent 70%);
    pointer-events: none;
}

.sbc-proof-media {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(212, 160, 42, 0.55);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.sbc-proof-media img,
.sbc-proof-media .sbc-ph {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    margin: 0;
    border-radius: 0 !important;
}

.sbc-proof-stat {
    display: grid;
    gap: 4px;
    min-width: 110px;
    padding-right: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 1;
}

.sbc-proof-figure {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--tg-yellow);
    line-height: 1;
    letter-spacing: -0.03em;
}

.sbc-proof-stat-label {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.7);
    max-width: 9.5em;
}

.sbc-proof-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.sbc-proof-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tg-yellow);
}

.sbc-proof-quote {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}

.sbc-proof-quote p {
    margin: 0;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    font-style: italic;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
}

.sbc-proof-cite {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.sbc-proof-cite strong {
    color: #fff;
    font-weight: 700;
}

.sbc-proof-support {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.sbc-proof-support cite {
    display: inline;
    font-style: normal;
    color: rgba(255, 255, 255, 0.55);
}

/* About / WINGS */
.sbc-mv-card {
    background: var(--tg-white);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 25, 76, 0.06);
}

.sbc-mv-card h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tg-yellow);
    margin-bottom: 8px;
}

.sbc-mv-card p {
    margin: 0;
    font-size: 15px;
}

.sbc-wings {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.sbc-wing {
    text-align: center;
    background: var(--tg-white);
    border-radius: 6px;
    padding: 16px 8px;
    box-shadow: 0 4px 12px rgba(0, 25, 76, 0.06);
}

.sbc-wing-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 10px;
}

.sbc-wing h5 {
    font-size: 14px;
    margin-bottom: 4px;
    text-transform: none;
}

.sbc-wing p {
    font-size: 12px;
    color: var(--tg-gray-four);
    margin: 0;
    line-height: 1.4;
}

.sbc-about-img {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 25, 76, 0.1);
    margin-bottom: 16px;
}

.sbc-about-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Service cards */
.sbc-service-card {
    background: var(--tg-white);
    border-radius: 6px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--tg-border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sbc-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 25, 76, 0.09);
}

.sbc-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tg-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--tg-primary-color);
}

.sbc-service-card h3 {
    font-size: var(--sbc-h3);
    margin-bottom: 12px;
    text-transform: none;
}

.sbc-service-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.sbc-service-card ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
}

.sbc-service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tg-primary-color);
}

.sbc-service-thumb {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 180px;
}

.sbc-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sbc-know-more {
    color: var(--tg-primary-color);
    font-weight: 600;
    font-size: 15px;
}

.sbc-know-more:hover {
    text-decoration: underline;
}

/* For Coaches */
.sbc-coach-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.sbc-coach-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 36, 56, 0.1);
    font-size: 15px;
    color: var(--tg-body-font-color);
}

.sbc-coach-list li strong {
    display: block;
    margin-bottom: 4px;
    color: var(--tg-secondary-color);
}

.sbc-coach-img {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.sbc-coach-img img,
.sbc-coach-img-mobile img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.85;
}

.sbc-coach-img-mobile {
    border-radius: 6px;
    overflow: hidden;
}

/* Evidence */
.sbc-why-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.sbc-why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
}

.sbc-why-list li img {
    width: 18px;
}

.sbc-hero-stat {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--tg-white);
    border-radius: 6px;
    padding: 36px 40px;
    margin: 32px 0;
}

.sbc-stat-figure {
    font-size: var(--sbc-stat);
    font-weight: 800;
    color: var(--tg-yellow);
    line-height: 1;
    flex-shrink: 0;
}

.sbc-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.sbc-mini-stat {
    background: var(--tg-white);
    border-radius: 6px;
    padding: 24px;
    border-top: 4px solid var(--tg-yellow);
}

.sbc-mini-stat p {
    margin: 0;
    font-size: 15px;
}

.sbc-mini-stat cite {
    display: block;
    font-size: 12px;
    color: var(--tg-gray-four);
    margin-top: 8px;
    font-style: normal;
}

.sbc-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.sbc-quote-item {
    padding-top: 20px;
    border-top: 2px solid var(--tg-border-color);
}

.sbc-quote-item p {
    font-style: italic;
    font-size: 15px;
    margin-bottom: 12px;
}

.sbc-quote-item span {
    font-size: 13px;
    color: var(--tg-gray-four);
}

.sbc-humanity {
    background: var(--tg-secondary-color);
    color: var(--tg-white);
    border-radius: 6px;
    padding: 36px;
    margin: 36px 0;
    font-size: var(--sbc-text);
    line-height: 1.7;
}

.sbc-how-we-work {
    text-align: center;
    font-size: 16px;
    color: var(--tg-gray-four);
    font-style: italic;
    margin-top: 24px;
}

.sbc-evidence-img {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.sbc-evidence-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Connect */
.sbc-connect-card {
    background: #fff;
    border: 1px solid rgba(15, 36, 56, 0.08);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 12px 28px rgba(15, 36, 56, 0.06);
}

.sbc-connect-card:hover {
    background: #fff;
    box-shadow: 0 18px 36px rgba(15, 36, 56, 0.1);
}

.sbc-connect-card h4 {
    font-size: 16px;
    color: var(--tg-primary-color);
    margin-bottom: 8px;
    text-transform: none;
}

.sbc-connect-card h3 {
    font-size: var(--sbc-h3);
    margin-bottom: 12px;
    text-transform: none;
    color: var(--tg-secondary-color);
}

.sbc-connect-card p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 1;
    color: var(--tg-gray-four);
}

/* Founders */
.sbc-founder-card {
    background: var(--tg-white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--tg-border-color);
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 25, 76, 0.06);
}

.sbc-founder-photo {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--tg-secondary-color), var(--tg-metallic-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.sbc-founder-body {
    padding: 28px;
}

.sbc-founder-role {
    font-size: 13px;
    color: var(--tg-primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.sbc-founder-name {
    font-size: 1.25rem;
    margin-bottom: 14px;
    text-transform: none;
}

.sbc-founder-quote {
    font-style: italic;
    color: var(--tg-gray-four);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--tg-yellow);
}

.sbc-founder-bio {
    font-size: 15px;
    margin-bottom: 12px;
}

.sbc-connect-mini {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.sbc-connect-mini li {
    font-size: 14px;
    padding: 4px 0;
}

.sbc-connect-mini a {
    color: var(--tg-primary-color);
    font-weight: 600;
}

.sbc-founders-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: var(--sbc-quote);
    font-style: italic;
    color: var(--tg-secondary-color);
    line-height: 1.6;
}

/* Image placeholder */
.sbc-placeholder {
    background: linear-gradient(135deg, var(--tg-gray) 0%, var(--tg-lavender) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-gray-four);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    border-radius: 6px;
    border: 2px dashed var(--tg-border-color);
    min-height: 200px;
}

/* Header CTA base */
.sbc-header-cta .btn,
.sbc-menu-cta {
    text-transform: none;
}

/* ═══════════════════════════════════════════
   Menu Bar — clean, elegant, brand-led
   ═══════════════════════════════════════════ */

.sbc-header {
    z-index: 100;
}

/* Slim top bar */
.sbc-topbar {
    background: #ffffff !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(15, 36, 56, 0.08);
}

.sbc-topbar .header-top-left .list-wrap li,
.sbc-topbar .header-contact a {
    color: var(--sbc-light-muted-text, #5a6b84);
    font-size: 13px;
}

.sbc-topbar .header-top-left .list-wrap li i,
.sbc-topbar .header-contact a i {
    color: #c4891a;
}

.sbc-topbar .header-top-left .list-wrap li a:hover,
.sbc-topbar .header-contact a:hover {
    color: var(--tg-secondary-color);
}

.sbc-top-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sbc-top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    color: var(--tg-secondary-color) !important;
    transition: color 0.2s ease, background 0.2s ease;
}

.sbc-top-social a:hover {
    color: #c4891a !important;
    background: rgba(212, 160, 42, 0.12);
}

/* Full-width menu bar (not a floating capsule) */
.sbc-menu-area {
    padding: 0;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sbc-menu-shell {
    position: relative;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.sbc-menu-shell::before {
    display: none;
}

.sbc-menu-area .menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 84px;
}

/* Logo — clean, brand-forward */
.sbc-logo a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.sbc-logo a:hover {
    opacity: 0.88;
}

.sbc-logo img,
.sbc-brand-logo {
    display: block;
    max-height: 64px;
    width: auto;
}

.sbc-logo-light {
    display: none !important;
}

.sbc-logo-default {
    display: block !important;
}

/* Header uses same logo file as footer, rendered white */
.sbc-menu-area .sbc-brand-logo {
    filter: brightness(0) invert(1);
}

/* Sticky / solid white bar: show color logo for contrast */
.sbc-menu-area.sticky-menu .sbc-brand-logo {
    filter: none;
}

/* Mobile drawer is dark — keep white logo */
.sbc-brand-logo-on-dark {
    filter: brightness(0) invert(1) !important;
}

/* Navigation links */
.sbc-nav-links {
    flex: 1;
    justify-content: flex-end;
    margin-right: 8px;
}

.sbc-nav-links .navigation {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    border: 0;
    box-shadow: none;
}

.sbc-nav-links .navigation>li {
    margin: 0 !important;
    float: none !important;
}

.sbc-nav-links .navigation>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 12px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    text-transform: none !important;
    color: var(--tg-secondary-color) !important;
    line-height: 1.2 !important;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    transition: color 0.2s ease;
}

.sbc-nav-links .navigation>li>a::before,
.sbc-nav-links .navigation>li>a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--tg-yellow);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
    opacity: 1;
}

.sbc-nav-links .navigation>li:hover>a {
    color: var(--tg-primary-color) !important;
    background: transparent !important;
    transform: none;
    box-shadow: none !important;
}

.sbc-nav-links .navigation>li.active>a {
    color: var(--tg-secondary-color) !important;
    background: transparent !important;
    transform: none;
    box-shadow: none !important;
}

.sbc-nav-links .navigation>li:hover>a::after,
.sbc-nav-links .navigation>li.active>a::after {
    transform: scaleX(1);
}

/* CTA — refined, not chunky */
.sbc-menu-cta,
.sbc-header-cta .btn {
    display: inline-flex !important;
    align-items: center;
    background: var(--tg-secondary-color) !important;
    color: #fff !important;
    border: 2px solid var(--tg-secondary-color) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.02em;
    padding: 11px 20px !important;
    box-shadow: none !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

.sbc-menu-cta:hover,
.sbc-header-cta .btn:hover {
    background: var(--tg-yellow) !important;
    border-color: var(--tg-yellow) !important;
    color: var(--tg-secondary-color) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 36, 56, 0.12) !important;
}

.sbc-menu-cta:active,
.sbc-header-cta .btn:active {
    transform: translateY(0);
}

.sbc-header-cta .btn::before {
    display: none !important;
}

/* Transparent over page hero → readable on linen */
.sbc-menu-area:not(.sticky-menu) .sbc-nav-links .navigation>li>a {
    color: var(--tg-secondary-color) !important;
}

/* Sticky: solid elegant bar */
.sbc-menu-area.sticky-menu {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 28px rgba(15, 36, 56, 0.1) !important;
    border-bottom: 1px solid rgba(15, 36, 56, 0.06);
    animation: sbc-menu-drop 0.35s ease both;
}

.sbc-menu-area.sticky-menu .menu-nav {
    min-height: 72px;
}

.sbc-menu-area.sticky-menu .sbc-logo img {
    max-height: 52px;
}

@keyframes sbc-menu-drop {
    from {
        transform: translateY(-12px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

/* Burger — simple */
.sbc-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    margin: 0;
    border: 1px solid rgba(15, 36, 56, 0.15) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: var(--tg-secondary-color) !important;
    box-shadow: 0 4px 12px rgba(15, 36, 56, 0.08) !important;
    line-height: 1 !important;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sbc-burger:hover {
    background: var(--tg-secondary-color) !important;
    border-color: var(--tg-secondary-color) !important;
    transform: none;
    box-shadow: 0 6px 14px rgba(15, 36, 56, 0.14) !important;
}

.sbc-burger:hover .sbc-burger-box span {
    background: var(--tg-yellow);
}

.sbc-burger-box {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 18px;
}

.sbc-burger-box span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    background: var(--tg-secondary-color);
    transition: background 0.2s ease;
}

/* Mobile drawer */
.sbc-mobile-menu .menu-box {
    background: #0f2438 !important;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.28);
    border-right: 0;
}

.sbc-mobile-menu .nav-logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 8px 20px;
    margin-bottom: 12px;
}

.sbc-mobile-menu .sbc-logo a {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.sbc-mobile-close {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.sbc-mobile-menu .navigation>li>a {
    color: rgba(255, 255, 255, 0.88) !important;
    border-radius: 8px !important;
    margin: 3px 4px !important;
    padding: 13px 14px !important;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.sbc-mobile-menu .navigation>li.active>a,
.sbc-mobile-menu .navigation>li>a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--tg-yellow) !important;
    transform: none;
}

.sbc-mobile-social a {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: none;
}

.sbc-mobile-social a:hover {
    background: var(--tg-yellow) !important;
    color: var(--tg-secondary-color) !important;
    border-color: var(--tg-yellow) !important;
}

@media (max-width: 1199px) {
    .sbc-nav-links .navigation>li>a {
        padding: 10px 9px !important;
        font-size: 13px !important;
    }

    .sbc-menu-cta,
    .sbc-header-cta .btn {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }

    .sbc-logo img {
        max-height: 56px;
    }
}

@media (max-width: 991px) {
    .sbc-burger {
        display: inline-flex !important;
    }

    .sbc-header-cta {
        display: none !important;
    }

    .sbc-menu-area .menu-nav {
        min-height: 72px;
        padding-right: 56px;
    }

    .sbc-logo img {
        max-height: 50px;
    }

    .sbc-menu-area .mobile-nav-toggler.sbc-burger {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        float: none;
        z-index: 5;
    }

    .sbc-menu-area .mobile-nav-toggler.sbc-burger:hover {
        transform: translateY(-50%);
    }

    .sbc-menu-area .col-12 {
        position: relative;
    }

    .sbc-menu-area.sticky-menu .menu-nav {
        min-height: 64px;
    }
}

@media (max-width: 575px) {
    .sbc-logo img {
        max-height: 44px;
    }

    .sbc-menu-area .menu-nav {
        min-height: 64px;
    }

    .sbc-burger {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sbc-menu-area.sticky-menu,
    .sbc-nav-links .navigation>li>a::after,
    .sbc-menu-cta {
        animation: none !important;
        transition: none !important;
    }
}

/* Footer SBC — self-contained layout (avoids theme footer conflicts) */
.sbc-footer .footer-area,
.sbc-footer-area {
    position: relative;
    overflow: hidden;
    background-color: #0b1a29 !important;
    background-image: none !important;
    padding: 0 !important;
}

.sbc-footer-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0f2438 0%, #0b1a29 55%, #08131f 100%);
    pointer-events: none;
}

.sbc-footer-area .container {
    position: relative;
    z-index: 1;
    padding-top: 56px;
    padding-bottom: 0;
}

.sbc-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.95fr 1.25fr;
    gap: 36px 28px;
    align-items: start;
    padding-bottom: 12px;
}

.sbc-footer-col {
    min-width: 0;
}

.sbc-footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.sbc-footer-logo {
    display: block;
    max-height: 64px;
    width: auto;
}

.sbc-footer-brand > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 32em;
    margin: 0 0 18px;
}

.sbc-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.sbc-footer-social li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sbc-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sbc-footer-social a:hover {
    background: var(--tg-yellow);
    border-color: var(--tg-yellow);
    color: var(--tg-secondary-color) !important;
}

.sbc-footer-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 6px;
    line-height: 1.55;
}

.sbc-footer-meta strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.sbc-footer-title {
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 700;
    margin: 0 0 18px !important;
    padding: 0 0 10px !important;
    text-transform: none !important;
    position: relative;
    line-height: 1.3;
}

.sbc-footer-title::before,
.sbc-footer-title::after,
.sbc-footer .fw-title::before,
.sbc-footer .fw-title::after {
    display: none !important;
    content: none !important;
}

.sbc-footer-title {
    border-bottom: 2px solid var(--tg-yellow);
    width: fit-content;
}

.sbc-footer-links {
    list-style: none !important;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.sbc-footer-links li {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.sbc-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 14.5px;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.sbc-footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 160, 42, 0.7);
    flex-shrink: 0;
}

.sbc-footer-links a:hover {
    color: var(--tg-yellow) !important;
    transform: translateX(3px);
}

.sbc-footer-contact-list {
    list-style: none !important;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.sbc-footer-contact-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.sbc-footer-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    min-height: 42px;
    border-radius: 10px;
    background: rgba(212, 160, 42, 0.18);
    border: 1px solid rgba(212, 160, 42, 0.4);
    color: #f0c45a !important;
    flex-shrink: 0;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
}

.sbc-footer-icon svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    margin: 0 !important;
    flex: 0 0 auto;
}

.sbc-footer-contact-list strong {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3px;
    font-weight: 700;
}

.sbc-footer-contact-list li > div > span,
.sbc-footer-contact-list li > div > a {
    display: block;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 14.5px;
    line-height: 1.45;
    text-decoration: none !important;
    word-break: break-word;
}

.sbc-footer-contact-list li > div > a:hover {
    color: var(--tg-yellow) !important;
}

.sbc-footer-cta {
    margin-top: 2px;
}

.sbc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0 28px;
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.sbc-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.sbc-footer-credit a {
    color: var(--tg-yellow);
    font-weight: 600;
    text-decoration: none;
}

.sbc-footer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .sbc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }

    .sbc-footer-contact-col {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .sbc-footer-area .container {
        padding-top: 44px;
    }

    .sbc-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sbc-footer-contact-col {
        grid-column: auto;
    }

    .sbc-footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-top: 28px;
    }
}

/* Section images row */
.sbc-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.sbc-img-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════
   Responsive — desktop / tablet / mobile
   ═══════════════════════════════════════════ */

/* Global safety */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.sbc-footer-icon svg {
    max-width: 18px !important;
    width: 18px !important;
    height: 18px !important;
}

#sbc-page-content,
.sbc-section .container {
    min-width: 0;
}

.sbc-section h2 {
    font-size: var(--sbc-h2);
    line-height: 1.3;
    word-wrap: break-word;
}

.sbc-section p,
.sbc-service-card p,
.sbc-connect-card p,
.sbc-founder-bio {
    overflow-wrap: break-word;
}

/* Large desktop polish */
@media (min-width: 1400px) {
    .sbc-section .container {
        max-width: 1240px;
    }
}

/* Laptop / small desktop */
@media (max-width: 1199px) {
    .sbc-section {
        padding: 72px 0;
    }

    .sbc-service-card {
        padding: 28px 22px;
    }

    .sbc-connect-card {
        padding: 28px 22px;
    }

    .sbc-proof-strip {
        padding: 28px 28px;
        gap: 24px;
    }

    .sbc-hero-stat {
        padding: 28px 28px;
        gap: 24px;
    }

    .sbc-stat-figure {
        font-size: 4rem;
    }

    .sbc-proof-figure {
        font-size: 3.4rem;
    }
}

/* Tablet (portrait + landscape under lg) */
@media (max-width: 991px) {
    .heder-top-wrap {
        display: none !important;
    }

    .sbc-header-cta {
        display: none !important;
    }

    .sbc-prr-poster {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 32px 0 24px;
    }

    .sbc-hero {
        padding-top: 120px;
        padding-bottom: 64px;
    }

    .sbc-hero-deco-1 {
        width: 280px;
        height: 280px;
        top: -60px;
        right: -80px;
    }

    .sbc-hero-deco-2 {
        width: 180px;
        height: 180px;
    }

    .sbc-section {
        padding: 64px 0;
    }

    .sbc-lede {
        font-size: 16px;
        max-width: 100%;
    }

    .sbc-prr-poster {
        gap: 16px;
        margin: 40px 0 24px;
    }

    .sbc-approach-point-link {
        gap: 12px;
        padding: 12px 14px;
    }

    .sbc-approach-point-index {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .sbc-approach-visual-caption {
        text-align: left;
    }

    .sbc-prr-body {
        padding: 18px 18px 20px;
    }

    .sbc-proof-strip {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 28px 24px;
        gap: 18px;
    }

    .sbc-proof-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding-right: 0;
        padding-bottom: 14px;
        justify-items: center;
    }

    .sbc-proof-stat-label {
        max-width: none;
    }

    .sbc-proof-cite {
        justify-content: center;
    }

    .sbc-hero-stat {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 28px 24px;
    }

    .sbc-mini-stats {
        grid-template-columns: 1fr;
    }

    .sbc-quotes {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sbc-wings {
        grid-template-columns: repeat(3, 1fr);
    }

    .sbc-img-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sbc-img-grid img:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .sbc-about-img img {
        height: 240px;
    }

    .sbc-hero-img-wrap img {
        height: 200px;
    }

    .sbc-coach-img img,
    .sbc-coach-img-mobile img {
        height: 240px;
    }

    .sbc-evidence-img img {
        height: 220px;
    }

    .sbc-service-thumb {
        height: 160px;
    }

    .sbc-science-quote {
        font-size: var(--sbc-quote);
        margin: 24px 0;
    }

    .sbc-founders-intro {
        font-size: var(--sbc-quote);
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .sbc-humanity {
        padding: 28px 24px;
        font-size: var(--sbc-text);
        margin: 28px 0;
    }

    .sbc-founder-body {
        padding: 24px;
    }

    .sbc-footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .menu-area .mobile-nav-toggler {
        display: block !important;
    }
}

/* Small tablet / large phone */
@media (max-width: 767px) {
    .sbc-breadcrumb-glow {
        width: 260px;
        height: 260px;
        top: -80px;
        right: -100px;
    }

    .sbc-hero {
        padding-top: 110px;
        padding-bottom: 48px;
    }

    .sbc-section {
        padding: 52px 0;
    }

    .sbc-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sbc-quotes {
        grid-template-columns: 1fr;
    }

    .sbc-wings {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sbc-img-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sbc-img-grid img {
        height: 180px;
        grid-column: auto !important;
    }

    .sbc-chips {
        gap: 10px;
        margin: 24px 0;
        justify-content: flex-start;
    }

    .sbc-chip {
        padding: 8px 14px;
        font-size: 13px;
    }

    .sbc-why-list {
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
    }

    .sbc-service-card,
    .sbc-connect-card,
    .sbc-mv-card {
        padding: 24px 20px;
    }

    .sbc-stat-figure {
        font-size: 3.4rem;
    }

    .sbc-proof-figure {
        font-size: 3rem;
    }

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

    .sbc-hero-actions .sbc-btn {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }

    .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }
}

/* Phones */
@media (max-width: 575px) {
    .sbc-section {
        padding: 44px 0;
    }

    .sbc-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .sbc-eyebrow {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
    }

    .sbc-hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
        margin-bottom: 14px;
    }

    .sbc-breadcrumb-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .sbc-breadcrumb-kicker {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .sbc-breadcrumb-subtitle {
        font-size: 14px;
        line-height: 1.55;
    }

    .sbc-breadcrumb-list {
        max-width: 100%;
        gap: 6px;
        padding: 6px 10px 6px 8px;
    }

    .sbc-breadcrumb-item {
        font-size: 12px;
    }

    .sbc-breadcrumb-home-icon {
        width: 24px;
        height: 24px;
    }

    .sbc-lede {
        font-size: 15px;
        line-height: 1.65;
    }

    .sbc-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .sbc-hero-actions {
        flex-direction: column;
        gap: 10px !important;
    }

    .sbc-btn-sm {
        width: auto;
    }

    .sbc-prr-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .sbc-prr-card h4 {
        font-size: 16px;
    }

    .sbc-prr-word {
        padding: 0;
    }

    .sbc-prr-word h3 {
        font-size: 1.35rem;
    }

    .sbc-about-img img {
        height: 200px;
    }

    .sbc-hero-img-wrap img {
        height: 180px;
    }

    .sbc-coach-img img,
    .sbc-coach-img-mobile img {
        height: 200px;
    }

    .sbc-evidence-img img {
        height: 180px;
    }

    .sbc-service-thumb {
        height: 150px;
    }

    .sbc-wings {
        grid-template-columns: repeat(2, 1fr);
    }

    .sbc-wing {
        padding: 14px 6px;
    }

    .sbc-wing-letter {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .sbc-wing h5 {
        font-size: 13px;
    }

    .sbc-wing p {
        font-size: 11px;
    }

    .sbc-proof-strip,
    .sbc-hero-stat {
        padding: 22px 18px;
        gap: 14px;
    }

    .sbc-proof-quote p {
        font-size: 15px;
    }

    .sbc-science-quote {
        font-size: 15px;
    }

    .sbc-founders-intro {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.55;
    }

    .sbc-founder-name {
        font-size: 1.15rem;
    }

    .sbc-founder-role {
        font-size: 12px;
    }

    .sbc-founder-body {
        padding: 20px;
    }

    .sbc-humanity {
        padding: 22px 18px;
        font-size: var(--sbc-text);
        margin: 24px 0;
    }

    .sbc-connect-card h3 {
        font-size: 1.1rem;
    }

    .sbc-service-card h3 {
        font-size: 1.15rem;
    }

    .sbc-mini-stat {
        padding: 18px;
    }

    .sbc-placeholder {
        min-height: 160px;
        padding: 16px;
    }

    .sbc-audience-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 14px;
    }

    .footer-area .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sbc-footer-brand p {
        font-size: 14px;
    }

    .sbc-footer-bottom {
        font-size: 12px;
        gap: 8px;
        margin-top: 28px;
        padding-top: 18px;
    }
}

/* Extra-small phones */
@media (max-width: 379px) {
    .sbc-wings {
        grid-template-columns: 1fr 1fr;
    }

    .sbc-btn {
        padding: 11px 16px;
        font-size: 13px;
    }

    .sbc-stat-figure {
        font-size: 2.8rem;
    }

    .sbc-proof-figure {
        font-size: 2.5rem;
    }

    .sbc-hero h1 {
        font-size: 1.55rem;
    }
}

/* ═══════════════════════════════════════════
   3D UI · Placeholders · Motion system
   ═══════════════════════════════════════════ */

.sbc-scene {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.sbc-scene>.container {
    position: relative;
    z-index: 1;
}

.sbc-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    animation: sbc-orb-float 12s ease-in-out infinite alternate;
}

.sbc-orb-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(45, 120, 140, 0.22), transparent 70%);
}

.sbc-orb-2 {
    width: 280px;
    height: 280px;
    bottom: 8%;
    left: -80px;
    background: radial-gradient(circle, rgba(212, 160, 42, 0.18), transparent 70%);
    animation-delay: -4s;
}

.sbc-orb-3 {
    width: 180px;
    height: 180px;
    top: 45%;
    right: 12%;
    background: radial-gradient(circle, rgba(15, 36, 56, 0.12), transparent 70%);
    animation-delay: -7s;
}

.sbc-orb-soft {
    width: 520px;
    height: 520px;
    top: -160px;
    left: 40%;
    background: radial-gradient(circle, rgba(45, 120, 140, 0.1), transparent 68%);
}

.sbc-orb-gold {
    width: 380px;
    height: 380px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(212, 160, 42, 0.28), transparent 70%);
}

@keyframes sbc-orb-float {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-24px, 30px, 0) scale(1.08);
    }
}

/* Page enter */
#sbc-page-content.sbc-page-enter {
    animation: sbc-page-in 0.55s ease both;
}

@keyframes sbc-page-in {
    from {
        opacity: 0.35;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Scroll reveal */
.sbc-reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--sbc-delay, 0ms);
}

.sbc-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* 3D cards */
.sbc-card-3d {
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

.sbc-card-3d:hover {
    box-shadow:
        0 18px 40px rgba(0, 25, 76, 0.14),
        0 4px 0 rgba(212, 160, 42, 0.35);
}

.sbc-prr-card.sbc-card-3d,
.sbc-service-card.sbc-card-3d,
.sbc-connect-card.sbc-card-3d,
.sbc-founder-card.sbc-card-3d,
.sbc-mv-card.sbc-card-3d,
.sbc-mini-stat.sbc-card-3d,
.sbc-quote-item.sbc-card-3d,
.sbc-wing.sbc-card-3d,
.sbc-proof-strip.sbc-card-3d,
.sbc-hero-stat.sbc-card-3d,
.sbc-humanity.sbc-card-3d {
    border-radius: 20px;
}

.sbc-prr-word.sbc-card-3d {
    background: var(--tg-white);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 14px 32px rgba(15, 36, 56, 0.08);
    text-align: left;
}

.sbc-prr-poster {
    gap: 20px;
}

.sbc-coach-list li.sbc-card-3d {
    background: #fff;
    border: 1px solid rgba(15, 36, 56, 0.08);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(15, 36, 56, 0.08);
    box-shadow: 0 10px 24px rgba(15, 36, 56, 0.06);
}

.sbc-why-list li.sbc-card-3d {
    background: var(--tg-white);
    border-radius: 999px;
    padding: 10px 16px 10px 12px;
    box-shadow: 0 8px 20px rgba(0, 25, 76, 0.06);
}

.sbc-check-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--tg-yellow), #c4891a);
    color: var(--tg-secondary-color);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(212, 160, 42, 0.35);
}

/* Buttons 3D */
.sbc-btn-3d {
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 25, 76, 0.12);
    transform: translateY(0);
}

.sbc-btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 0 rgba(0, 0, 0, 0.08), 0 18px 28px rgba(0, 25, 76, 0.16);
}

.sbc-btn-3d:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 25, 76, 0.12);
}

.sbc-icon-3d {
    box-shadow: 0 10px 20px rgba(0, 25, 76, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateZ(20px);
}

.sbc-chip-3d {
    box-shadow: 0 8px 18px rgba(0, 25, 76, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sbc-chip-3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 25, 76, 0.12);
}

/* Tilt hover target */
.sbc-tilt {
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sbc-tilt:hover {
    box-shadow: 0 22px 44px rgba(0, 25, 76, 0.16);
}

/* Image placeholders */
.sbc-ph {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    width: 100%;
    min-height: 140px;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    color: rgba(15, 36, 56, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.15)),
        repeating-linear-gradient(-45deg,
            rgba(15, 36, 56, 0.03) 0 10px,
            rgba(15, 36, 56, 0.06) 10px 20px),
        linear-gradient(135deg, #dfe8e8 0%, #ede8df 45%, #d7e3e8 100%);
    border: 1px solid rgba(15, 36, 56, 0.1);
    box-shadow:
        0 16px 36px rgba(0, 25, 76, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    text-align: center;
    padding: 18px;
}

.sbc-ph-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.45) 48%,
            transparent 62%);
    transform: translateX(-120%);
    animation: sbc-ph-shine 4.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sbc-ph-shine {

    0%,
    55% {
        transform: translateX(-120%);
    }

    80%,
    100% {
        transform: translateX(120%);
    }
}

.sbc-ph-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--tg-secondary-color);
    box-shadow: 0 10px 20px rgba(0, 25, 76, 0.1);
    z-index: 1;
}

.sbc-ph-copy {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 90%;
}

.sbc-ph-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--tg-secondary-color);
}

.sbc-ph-hint {
    font-size: 12px;
    color: rgba(15, 36, 56, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sbc-ph-sm {
    min-height: 100px;
    border-radius: 12px;
}

.sbc-ph-sm .sbc-ph-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.sbc-ph-sm .sbc-ph-icon svg {
    width: 22px;
    height: 22px;
}

.sbc-ph-sm .sbc-ph-label {
    font-size: 12px;
}

.sbc-ph-md {
    min-height: 160px;
}

.sbc-ph-lg {
    min-height: 240px;
}

.sbc-ph-xl {
    min-height: 220px;
    border-radius: 20px;
}

.sbc-ph-hero {
    min-height: 320px;
    border-radius: 22px;
}

.sbc-ph-inset {
    box-shadow: 0 8px 18px rgba(0, 25, 76, 0.08);
    border-radius: 12px;
}

.sbc-ph-avatar {
    width: 64px !important;
    height: 64px !important;
    min-height: 64px;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50%;
    margin-bottom: 14px;
    padding: 8px;
}

.sbc-ph-avatar .sbc-ph-copy,
.sbc-ph-avatar .sbc-ph-hint {
    display: none;
}

.sbc-ph-avatar .sbc-ph-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.sbc-ph-on-dark {
    color: rgba(255, 255, 255, 0.85);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 10px, rgba(255, 255, 255, 0.06) 10px 20px),
        linear-gradient(135deg, #1a3a52, #123048 55%, #1d4658);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sbc-ph-on-dark .sbc-ph-label {
    color: #fff;
}

.sbc-ph-on-dark .sbc-ph-hint {
    color: rgba(255, 255, 255, 0.55);
}

.sbc-ph-on-dark .sbc-ph-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tg-yellow);
}

/* Layout compositions */
.sbc-hero-collage {
    position: relative;
    display: grid;
    gap: 16px;
}

.sbc-hero-ph-main {
    min-height: 280px;
}

.sbc-float-panel {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    margin-left: 18px;
    margin-right: 18px;
    animation: sbc-float-y 5.5s ease-in-out infinite;
}

.sbc-hero-ph-accent {
    position: absolute;
    width: 120px;
    right: -8px;
    top: 24px;
    z-index: 3;
    animation: sbc-float-y 6.5s ease-in-out infinite reverse;
}

@keyframes sbc-float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.sbc-media-stack {
    display: grid;
    gap: 14px;
}

.sbc-media-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sbc-media-float {
    animation: sbc-float-y 7s ease-in-out infinite;
}

.sbc-img-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.sbc-img-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sbc-img-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.sbc-img-grid .sbc-ph {
    height: 100%;
}

.sbc-hero-stat {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.sbc-stat-media {
    width: 88px;
}

.sbc-stat-pop {
    text-shadow: 0 10px 0 rgba(212, 160, 42, 0.18);
    animation: sbc-stat-pulse 3.5s ease-in-out infinite;
}

@keyframes sbc-stat-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.sbc-quote-item {
    background: var(--tg-white);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(0, 25, 76, 0.06);
    box-shadow: 0 12px 28px rgba(0, 25, 76, 0.06);
    border-top: none;
    padding-top: 24px;
}

.sbc-humanity-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
}

.sbc-founders-hero {
    margin-bottom: 36px;
}

.sbc-founders-hero .sbc-founders-intro {
    margin: 24px auto 0;
}

.sbc-founder-ph {
    border-radius: 14px 14px 0 0 !important;
}

.sbc-mv-visual {
    margin-bottom: 12px;
}

.sbc-service-card,
.sbc-connect-card,
.sbc-founder-card,
.sbc-mv-card,
.sbc-mini-stat {
    box-shadow: 0 14px 32px rgba(0, 25, 76, 0.08);
    border: 1px solid rgba(0, 25, 76, 0.06);
}

.sbc-connect-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Breadcrumb depth */
.sbc-breadcrumb {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.sbc-breadcrumb-list {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Responsive adjustments for 3D / placeholders */
@media (max-width: 1199px) {
    .sbc-img-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sbc-hero-ph-accent {
        display: none;
    }
}

@media (max-width: 991px) {

    .sbc-proof-strip,
    .sbc-hero-stat {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .sbc-humanity-grid {
        grid-template-columns: 1fr;
    }

    .sbc-float-panel {
        margin: 12px 0 0;
        animation: none;
    }

    .sbc-img-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .sbc-orb {
        opacity: 0.7;
    }
}

@media (max-width: 767px) {

    .sbc-img-grid-2,
    .sbc-img-grid-3,
    .sbc-img-grid-4,
    .sbc-media-pair {
        grid-template-columns: 1fr;
    }

    .sbc-ph-hero,
    .sbc-ph-xl,
    .sbc-ph-lg {
        min-height: 180px;
    }

    .sbc-ph-label {
        font-size: 13px;
    }
}

@media (hover: none),
(pointer: coarse) {
    .sbc-tilt:hover {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sbc-orb,
    .sbc-ph-shine,
    .sbc-float-panel,
    .sbc-hero-ph-accent,
    .sbc-media-float,
    .sbc-stat-pop,
    #sbc-page-content.sbc-page-enter {
        animation: none !important;
    }

    .sbc-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ═══════════════════════════════════════════
   Hero full-width (100%) image slider
   ═══════════════════════════════════════════ */

.sbc-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b1c2c;
}

.sbc-hero-swiper,
.sbc-hero-swiper .swiper-wrapper,
.sbc-hero-swiper .swiper-slide {
    width: 100%;
}

.sbc-hero-swiper {
    height: auto;
    min-height: clamp(680px, 100vh, 900px);
}

.sbc-hero-slide {
    position: relative;
    width: 100%;
    min-height: clamp(680px, 100vh, 900px);
    overflow: hidden;
}

/* Full-bleed media layer — 100% width */
.sbc-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sbc-hero-media .sbc-hero-bg-ph,
.sbc-hero-media .sbc-ph,
.sbc-hero-bg-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.sbc-hero-bg-img,
.sbc-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.08);
    transition: transform 8s ease;
}

.swiper-slide-active .sbc-hero-bg-img,
.swiper-slide-active .sbc-hero-media img {
    transform: scale(1);
}

.sbc-hero-media .sbc-ph {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(212, 160, 42, 0.2), transparent 55%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(45, 120, 140, 0.22), transparent 50%),
        linear-gradient(145deg, #0b1c2c 0%, #123048 45%, #1a4558 100%) !important;
}

.sbc-hero-media .sbc-ph-shine {
    opacity: 0.35;
}

.sbc-hero-media .sbc-ph-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--tg-yellow);
}

.sbc-hero-media .sbc-ph-label {
    color: #fff;
    font-size: 15px;
}

.sbc-hero-media .sbc-ph-hint {
    color: rgba(255, 255, 255, 0.55);
}

/* Readable overlay across full width */
.sbc-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(8, 18, 30, 0.88) 0%, rgba(8, 18, 30, 0.62) 42%, rgba(8, 18, 30, 0.28) 68%, rgba(8, 18, 30, 0.35) 100%),
        linear-gradient(0deg, rgba(8, 18, 30, 0.55) 0%, transparent 40%);
}

.sbc-hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(680px, 100vh, 900px);
    padding: 140px 0 110px;
    color: #fff;
}

/* Glass copy panel */
.sbc-hero-glass {
    position: relative;
    padding: 38px 36px;
    border-radius: 24px;
    background: rgba(8, 18, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    overflow: hidden;
}

.sbc-hero-glass::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--tg-yellow), rgba(212, 160, 42, 0));
}

.sbc-hero-glass::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 42, 0.18), transparent 70%);
    pointer-events: none;
}

.sbc-hero-glass h1 {
    margin: 0 0 14px;
    font-size: var(--sbc-h1);
    line-height: 1.15;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.02em;
}

.sbc-hero-glass h1 em {
    font-style: italic;
    color: var(--tg-yellow);
}

.sbc-hero-glass .sbc-lede {
    color: rgba(255, 255, 255, 0.9);
    max-width: 34em;
    font-size: var(--sbc-lede) !important;
    line-height: 1.65;
}

.sbc-hero-note-light {
    color: rgba(255, 255, 255, 0.68) !important;
    margin-top: 18px;
}

.sbc-audience-links-light,
.sbc-audience-links-light .sbc-audience-label,
.sbc-audience-links-light span {
    color: rgba(255, 255, 255, 0.72);
}

.sbc-audience-links-light a {
    color: var(--tg-yellow) !important;
}

.sbc-hero-glass .sbc-btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.sbc-hero-glass .sbc-btn-outline-light:hover {
    background: #fff;
    color: var(--tg-secondary-color);
    border-color: #fff;
}

.sbc-hero-glass .sbc-btn-gold {
    box-shadow: 0 12px 28px rgba(212, 160, 42, 0.32);
}

/* Floating PRR cards over full-bleed image */
.sbc-hero-prr-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin-left: auto;
    margin-bottom: 12px;
}

.sbc-hero-prr-side .sbc-prr-card {
    margin: 0;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.sbc-hero-prr-side .sbc-prr-card h4 {
    font-size: 16px;
    margin: 0;
}

.sbc-hero-prr-side .sbc-prr-card p {
    font-size: 13px;
    margin: 0;
}

.swiper-slide-active .sbc-hero-glass,
.swiper-slide-active .sbc-hero-prr-side {
    animation: sbc-hero-rise 0.85s ease both;
}

.swiper-slide-active .sbc-hero-prr-side {
    animation-delay: 0.15s;
}

.swiper-slide-active .sbc-hero-prr-side .sbc-prr-card {
    animation: sbc-hero-rise 0.7s ease both;
}

.swiper-slide-active .sbc-hero-prr-side .sbc-prr-card:nth-child(2) {
    animation-delay: 0.22s;
}

.swiper-slide-active .sbc-hero-prr-side .sbc-prr-card:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes sbc-hero-rise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Controls */
.sbc-hero-nav {
    width: 54px !important;
    height: 54px !important;
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.sbc-hero-nav::after {
    font-size: 17px !important;
    font-weight: 700;
    color: #fff;
}

.sbc-hero-nav:hover {
    background: var(--tg-yellow) !important;
    border-color: var(--tg-yellow);
    transform: translateY(-50%) scale(1.06);
}

.sbc-hero-nav:hover::after {
    color: var(--tg-secondary-color);
}

.sbc-hero-prev {
    left: 22px !important;
}

.sbc-hero-next {
    right: 22px !important;
}

.sbc-hero-dots {
    bottom: 34px !important;
    z-index: 5;
}

.sbc-hero-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: width 0.25s ease, background 0.25s ease;
}

.sbc-hero-dots .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: var(--tg-yellow);
}

/* Autoplay progress line */
.sbc-hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 6;
    overflow: hidden;
}

.sbc-hero-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--tg-yellow), #f0c45a);
    transform-origin: left center;
    transform: scaleX(0);
}

/* Menu contrast over dark home hero */
.sbc-page-home .sbc-menu-area:not(.sticky-menu) {
    background: linear-gradient(180deg,
            rgba(8, 18, 30, 0.82) 0%,
            rgba(8, 18, 30, 0.55) 55%,
            rgba(8, 18, 30, 0.18) 85%,
            transparent 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-brand-logo {
    display: block !important;
    max-height: 56px;
    filter: brightness(0) invert(1);
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-nav-links .navigation>li>a {
    color: #fff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-nav-links .navigation>li.active>a,
.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-nav-links .navigation>li:hover>a {
    color: #fff !important;
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-nav-links .navigation>li>a::after {
    background: var(--tg-yellow);
    box-shadow: 0 0 10px rgba(212, 160, 42, 0.45);
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-menu-cta,
.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-header-cta .btn {
    background: var(--tg-yellow) !important;
    border-color: var(--tg-yellow) !important;
    color: var(--tg-secondary-color) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-menu-cta:hover,
.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-header-cta .btn:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--tg-secondary-color) !important;
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-burger {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}

.sbc-page-home .sbc-menu-area:not(.sticky-menu) .sbc-burger-box span {
    background: #fff;
}

/* Sticky on home: restore color logo + solid bar */
.sbc-page-home .sbc-menu-area.sticky-menu .sbc-logo a {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sbc-page-home .sbc-menu-area.sticky-menu .sbc-brand-logo {
    display: block !important;
    max-height: 52px;
    filter: none;
}

@media (max-width: 991px) {

    .sbc-hero-swiper,
    .sbc-hero-slide,
    .sbc-hero-slide-content {
        min-height: 0;
    }

    .sbc-hero-slide {
        min-height: 720px;
    }

    .sbc-hero-slide-content {
        min-height: 720px;
        padding: 120px 0 96px;
        align-items: flex-end;
    }

    .sbc-hero-nav {
        width: 44px !important;
        height: 44px !important;
        top: auto !important;
        bottom: 28px !important;
        transform: none;
    }

    .sbc-hero-nav:hover {
        transform: scale(1.05);
    }

    .sbc-hero-prev {
        left: 14px !important;
    }

    .sbc-hero-next {
        right: 14px !important;
    }
}

@media (max-width: 575px) {

    .sbc-hero-slide,
    .sbc-hero-slide-content {
        min-height: 680px;
    }

    .sbc-hero-glass {
        padding: 26px 18px 26px 20px;
        border-radius: 18px;
    }

    .sbc-hero-glass h1 {
        font-size: clamp(1.55rem, 6.5vw, 1.95rem);
    }

    .sbc-hero-glass .sbc-lede {
        font-size: 15px !important;
    }

    .sbc-hero-nav {
        display: none !important;
    }

    .sbc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sbc-hero-actions .sbc-btn {
        width: 100%;
        justify-content: center;
    }

    .sbc-hero-shade {
        background:
            linear-gradient(0deg, rgba(8, 18, 30, 0.92) 0%, rgba(8, 18, 30, 0.55) 55%, rgba(8, 18, 30, 0.4) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .swiper-slide-active .sbc-hero-glass,
    .swiper-slide-active .sbc-hero-prr-side,
    .swiper-slide-active .sbc-hero-prr-side .sbc-prr-card,
    .sbc-hero-bg-img,
    .sbc-hero-media img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.sbc-showcase-slider {
    display: none;
}
/* ═══════════════════════════════════════════
   LIGHT THEME — bright surfaces + light imagery
   ═══════════════════════════════════════════ */
:root {
    --sbc-light-bg: #f7f8fb;
    --sbc-light-surface: #ffffff;
    --sbc-light-muted: #eef2f7;
    --sbc-light-border: rgba(15, 36, 56, 0.1);
    --sbc-light-text: #1a2b45;
    --sbc-light-muted-text: #5a6b84;
}

body {
    background: var(--sbc-light-bg) !important;
    color: var(--sbc-light-text);
}

#sbc-page-content {
    background: var(--sbc-light-bg);
}

.sbc-band-white,
.sbc-band-linen,
.sbc-band-sage {
    background: var(--sbc-light-surface) !important;
    color: var(--sbc-light-text);
}

.sbc-band-linen {
    background: #f4f1ea !important;
}

.sbc-band-sage {
    background: #f1f5f2 !important;
}

.sbc-band-dark {
    background: var(--sbc-light-surface) !important;
    color: var(--sbc-light-text) !important;
}

.sbc-band-dark .sbc-lede,
.sbc-band-dark p,
.sbc-band-dark h2,
.sbc-band-dark h3,
.sbc-band-dark h4 {
    color: var(--sbc-light-text) !important;
}

/* Light breadcrumb */
.sbc-breadcrumb {
    color: var(--sbc-light-text) !important;
    background: var(--sbc-light-muted);
}

.sbc-breadcrumb-bg {
    background:
        linear-gradient(135deg, rgba(247, 248, 251, 0.92) 0%, rgba(238, 242, 247, 0.88) 50%, rgba(255, 255, 255, 0.9) 100%),
        url("../img/bg/breadcrumb_bg.jpg") center/cover no-repeat !important;
    filter: none;
}

.sbc-breadcrumb-title {
    color: var(--tg-secondary-color) !important;
}

.sbc-breadcrumb-subtitle,
.sbc-breadcrumb-kicker {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-breadcrumb-list {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid var(--sbc-light-border) !important;
    box-shadow: 0 8px 24px rgba(15, 36, 56, 0.06) !important;
}

.sbc-breadcrumb-list a,
.sbc-breadcrumb-list span,
.sbc-breadcrumb-list li {
    color: var(--tg-secondary-color) !important;
}

.sbc-breadcrumb-list a:hover {
    color: var(--tg-primary-color) !important;
}

/* Light hero for bright photography */
.sbc-hero-shade {
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.78) 0%, rgba(247, 248, 251, 0.55) 40%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.28) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%) !important;
}

.sbc-hero-slide-content {
    color: var(--tg-secondary-color) !important;
}

.sbc-hero-glass {
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(15, 36, 56, 0.08) !important;
    box-shadow:
        0 24px 48px rgba(15, 36, 56, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.sbc-hero-glass h1 {
    color: var(--tg-secondary-color) !important;
}

.sbc-hero-glass h1 em {
    color: #c4891a !important;
}

.sbc-hero-glass .sbc-lede {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-hero-note-light {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-audience-links-light,
.sbc-audience-links-light .sbc-audience-label,
.sbc-audience-links-light span {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-audience-links-light a {
    color: var(--tg-secondary-color) !important;
}

.sbc-audience-links-light a:hover {
    color: var(--tg-primary-color) !important;
}

.sbc-hero-glass .sbc-btn-outline {
    background: transparent !important;
    border-color: var(--tg-secondary-color) !important;
    color: var(--tg-secondary-color) !important;
}

.sbc-hero-glass .sbc-btn-outline:hover {
    background: var(--tg-secondary-color) !important;
    color: #fff !important;
}

.sbc-hero-prr-side .sbc-prr-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(15, 36, 56, 0.08) !important;
    color: var(--tg-secondary-color) !important;
}

.sbc-hero-prr-side .sbc-prr-card h4 {
    color: var(--tg-secondary-color) !important;
}

.sbc-hero-prr-side .sbc-prr-card p {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-hero-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(15, 36, 56, 0.12) !important;
    color: var(--tg-secondary-color) !important;
}

.sbc-hero-dots .swiper-pagination-bullet {
    background: rgba(15, 36, 56, 0.25) !important;
}

.sbc-hero-dots .swiper-pagination-bullet-active {
    background: var(--tg-yellow) !important;
}

/* Light proof strip */
.sbc-proof-strip {
    background: linear-gradient(135deg, #ffffff 0%, #f7f8fb 55%, #eef2f7 100%) !important;
    border: 1px solid var(--sbc-light-border) !important;
    box-shadow: 0 18px 40px rgba(15, 36, 56, 0.08) !important;
    color: var(--sbc-light-text) !important;
}

.sbc-proof-strip::before {
    background: radial-gradient(circle, rgba(212, 160, 42, 0.16), transparent 70%) !important;
}

.sbc-proof-stat {
    border-right-color: rgba(15, 36, 56, 0.1) !important;
}

.sbc-proof-stat-label,
.sbc-proof-cite,
.sbc-proof-support,
.sbc-proof-support cite {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-proof-eyebrow {
    color: #b8860b !important;
}

.sbc-proof-quote p {
    color: var(--tg-secondary-color) !important;
}

.sbc-proof-cite strong {
    color: var(--tg-secondary-color) !important;
}

.sbc-proof-support {
    border-top-color: rgba(15, 36, 56, 0.1) !important;
}

.sbc-proof-media {
    border-color: rgba(212, 160, 42, 0.55) !important;
    box-shadow: 0 10px 24px rgba(15, 36, 56, 0.12) !important;
}

/* Light humanity block */
.sbc-humanity {
    background: #fff !important;
    color: var(--sbc-light-text) !important;
    border: 1px solid var(--sbc-light-border);
    box-shadow: 0 14px 32px rgba(15, 36, 56, 0.06);
}

/* Light footer */
.sbc-footer .footer-area,
.sbc-footer-area {
    background-color: #ffffff !important;
    background-image: none !important;
    border-top: 1px solid var(--sbc-light-border);
}

.sbc-footer-area::before {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%) !important;
}

.sbc-footer-logo {
    filter: none !important;
}

.sbc-footer-brand > p,
.sbc-footer-meta,
.sbc-footer-links a,
.sbc-footer-contact-list span,
.sbc-footer-contact-list a,
.sbc-footer-bottom {
    color: var(--sbc-light-muted-text) !important;
}

.sbc-footer-title {
    color: var(--tg-secondary-color) !important;
    border-bottom-color: var(--tg-yellow) !important;
}

.sbc-footer-meta strong,
.sbc-footer-links a:hover,
.sbc-footer-contact-list a:hover,
.sbc-footer-contact-list strong {
    color: var(--tg-secondary-color) !important;
}

.sbc-footer-links a::before {
    background: rgba(212, 160, 42, 0.8);
}

.sbc-footer-social a {
    background: #fff !important;
    border-color: var(--sbc-light-border) !important;
    color: var(--tg-secondary-color) !important;
}

.sbc-footer-social a:hover {
    background: var(--tg-yellow) !important;
    border-color: var(--tg-yellow) !important;
    color: var(--tg-secondary-color) !important;
}

.sbc-footer-icon {
    background: rgba(212, 160, 42, 0.12) !important;
    border-color: rgba(212, 160, 42, 0.35) !important;
    color: #c4891a !important;
}

.sbc-footer-bottom {
    border-top-color: var(--sbc-light-border) !important;
}

.sbc-footer-credit a {
    color: #b8860b !important;
}

.sbc-footer-credit a:hover {
    color: var(--tg-secondary-color) !important;
}

/* Soft mobile menu stays dark for contrast; keep as-is */

@media (max-width: 991px) {
    .sbc-hero-shade {
        background:
            linear-gradient(0deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 248, 251, 0.55) 55%, rgba(255, 255, 255, 0.35) 100%) !important;
    }

    .sbc-proof-stat {
        border-bottom-color: rgba(15, 36, 56, 0.1) !important;
    }
}
