/* ==========================================================================
   BrightN8 Theme - Components CSS
   ==========================================================================
   All component-level styles for the BrightN8 WordPress theme.
   Includes: buttons, hero section, feature cards, automate cards,
   process steps, use case cards, result cards, value statement,
   technology stack, testimonials, and all homepage section styles.
   ========================================================================== */


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.bn8-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    gap: 0.5rem;
}

.bn8-btn--primary {
    background: var(--bn8-blue);
    color: var(--bn8-white);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.bn8-btn--primary:hover {
    background: var(--bn8-blue-light);
    color: var(--bn8-white);
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.bn8-btn--large {
    font-size: 1rem;
    padding: 0.875rem 2.25rem;
    border-radius: 12px;
}

.bn8-btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color-hover);
}

.bn8-btn--outline:hover {
    border-color: var(--bn8-blue);
    color: var(--bn8-blue);
    background: rgba(37, 99, 235, 0.05);
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.bn8-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, #000000 0%, #0A0F1A 50%, #0A0A0A 100%);
    overflow: hidden;
}

.bn8-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}

.bn8-hero__skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.bn8-hero__skyline svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bn8-hero__glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.bn8-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bn8-hero__content {
    max-width: 560px;
}

.bn8-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bn8-blue-light);
    margin-bottom: 1.5rem;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.08);
}

.bn8-hero__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bn8-blue);
    animation: pulse 2s ease-in-out infinite;
}

.bn8-hero__title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--bn8-white);
}

.bn8-hero__title span {
    background: linear-gradient(135deg, var(--bn8-blue-light) 0%, var(--bn8-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bn8-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.bn8-hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bn8-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bn8-hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bn8-white);
    line-height: 1.2;
}

.bn8-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--bn8-gray-500);
    margin-top: 0.25rem;
}

.bn8-hero__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero - Light Theme Overrides */
[data-theme="light"] .bn8-hero {
    background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%);
}

[data-theme="light"] .bn8-hero::before {
    opacity: 0.02;
}

[data-theme="light"] .bn8-hero__skyline {
    opacity: 0.06;
}

[data-theme="light"] .bn8-hero__title {
    color: #0F172A;
}

[data-theme="light"] .bn8-hero__subtitle {
    color: var(--bn8-gray-500);
}

[data-theme="light"] .bn8-hero__stats {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .bn8-hero__stat-value {
    color: #0F172A;
}


/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */

.bn8-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all var(--transition);
    cursor: default;
}

.bn8-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
}

.bn8-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--bn8-blue-light);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.bn8-feature-card__title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--bn8-white);
    margin-bottom: 0.25rem;
}

.bn8-feature-card__desc {
    font-size: 0.8125rem;
    color: var(--bn8-gray-500);
    line-height: 1.5;
}

/* Feature Cards - Light Theme Overrides */
[data-theme="light"] .bn8-feature-card {
    background: var(--bn8-white);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .bn8-feature-card:hover {
    border-color: var(--bn8-blue);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

[data-theme="light"] .bn8-feature-card__title {
    color: #0F172A;
}


/* ==========================================================================
   AUTOMATE SECTION
   ========================================================================== */

.bn8-automate {
    background: var(--bg-secondary);
    transition: background var(--transition);
}

[data-theme="light"] .bn8-automate {
    background: #F8FAFC;
}

.bn8-automate__header {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bn8-automate__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.bn8-automate__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.bn8-automate__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bn8-auto-card {
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all var(--transition);
    cursor: default;
}

.bn8-auto-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bn8-auto-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--bn8-blue-light);
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.bn8-auto-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bn8-auto-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Automate Section - Light Theme Overrides */
[data-theme="light"] .bn8-auto-card {
    background: var(--bn8-white);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .bn8-auto-card:hover {
    border-color: var(--bn8-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}


/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.bn8-process {
    background: var(--bg-primary);
    transition: background var(--transition);
}

.bn8-process__header {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bn8-process__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bn8-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.bn8-process__grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-glow), var(--accent), var(--accent-glow));
    z-index: 0;
}

.bn8-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bn8-process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bn8-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 24px var(--accent-glow);
}

.bn8-process-step__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bn8-process-step__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ==========================================================================
   USE CASES (HOMEPAGE)
   ========================================================================== */

.bn8-usecases {
    background: var(--bg-secondary);
    transition: background var(--transition);
}

[data-theme="light"] .bn8-usecases {
    background: #F8FAFC;
}

.bn8-usecases__header {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bn8-usecases__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bn8-usecases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bn8-usecase-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.bn8-usecase-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bn8-usecase-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--bn8-blue-light);
    flex-shrink: 0;
}

.bn8-usecase-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.bn8-usecase-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bn8-usecases__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2.5rem;
    transition: all var(--transition);
}

.bn8-usecases__link:hover {
    color: var(--accent-hover);
    gap: 0.625rem;
}

/* Use Cases - Light Theme Overrides */
[data-theme="light"] .bn8-usecase-card {
    background: var(--bn8-white);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .bn8-usecase-card:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}


/* ==========================================================================
   BEFORE/AFTER RESULTS
   ========================================================================== */

.bn8-results {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .bn8-results {
    background: var(--bn8-gray-100);
}

.bn8-results__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bn8-results__title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bn8-results__title span {
    color: var(--accent);
}

.bn8-results__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.bn8-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bn8-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.bn8-result-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bn8-result-card__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 220px;
    position: relative;
}

.bn8-result-card__visual::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--bn8-white);
    font-weight: 800;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 0 20px var(--accent-glow), 0 0 0 4px var(--bg-card);
}

.bn8-result-card__before,
.bn8-result-card__after {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    gap: 0.75rem;
}

.bn8-result-card__before {
    background: linear-gradient(135deg, #1a0808 0%, #2a1010 100%);
}

.bn8-result-card__after {
    background: linear-gradient(135deg, #061a0e 0%, #0a2a14 100%);
}

.bn8-result-card__label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.2rem 0.625rem;
    border-radius: 99px;
}

.bn8-result-card__before .bn8-result-card__label {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.bn8-result-card__after .bn8-result-card__label {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.bn8-scene {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bn8-scene svg {
    width: 100%;
    max-width: 140px;
    height: auto;
}

.bn8-result-card__metric {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.bn8-result-card__before .bn8-result-card__metric {
    color: #F87171;
}

.bn8-result-card__after .bn8-result-card__metric {
    color: #4ADE80;
}

.bn8-result-card__metric-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.bn8-result-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.bn8-result-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bn8-result-card__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bn8-result-card__stats {
    display: flex;
    gap: 1rem;
}

.bn8-result-card__stat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.bn8-result-card__stat--up {
    color: #22C55E;
}

.bn8-result-card__stat--down {
    color: #EF4444;
}

.bn8-result-card__stat svg {
    flex-shrink: 0;
}

/* Results - Light Theme Overrides */
[data-theme="light"] .bn8-result-card {
    background: var(--bn8-white);
    border-color: var(--bn8-gray-200);
}

[data-theme="light"] .bn8-result-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .bn8-result-card__before {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
}

[data-theme="light"] .bn8-result-card__after {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

[data-theme="light"] .bn8-result-card__before .bn8-result-card__label {
    background: rgba(239, 68, 68, 0.12);
    color: #DC2626;
}

[data-theme="light"] .bn8-result-card__after .bn8-result-card__label {
    background: rgba(22, 163, 74, 0.12);
    color: #16A34A;
}

[data-theme="light"] .bn8-result-card__before .bn8-result-card__metric {
    color: #DC2626;
}

[data-theme="light"] .bn8-result-card__after .bn8-result-card__metric {
    color: #16A34A;
}

[data-theme="light"] .bn8-result-card__stat--up {
    color: #16A34A;
}


/* ==========================================================================
   VALUE STATEMENT
   ========================================================================== */

.bn8-value {
    background: linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

[data-theme="light"] .bn8-value {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
}

.bn8-value::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.03;
    pointer-events: none;
}

.bn8-value__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bn8-value__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bn8-value__heading {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--bn8-white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.bn8-value__text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ==========================================================================
   TECHNOLOGY STACK
   ========================================================================== */

.bn8-tech {
    background: var(--bg-primary);
    overflow: hidden;
    transition: background var(--transition);
}

[data-theme="light"] .bn8-tech {
    background: var(--bn8-white);
}

.bn8-tech__header {
    max-width: 560px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bn8-tech__title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.bn8-tech__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.bn8-tech__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.bn8-tech__track {
    display: flex;
    gap: 1.5rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.bn8-tech__track:hover {
    animation-play-state: paused;
}

.bn8-tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 64px;
    padding: 0 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-card);
    white-space: nowrap;
    transition: all var(--transition);
    flex-shrink: 0;
}

.bn8-tech-logo:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.bn8-tech-logo svg {
    margin-right: 0.5rem;
}

/* Tech Stack - Light Theme Overrides */
[data-theme="light"] .bn8-tech-logo {
    color: var(--bn8-gray-500);
    border-color: rgba(0, 0, 0, 0.06);
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.bn8-testimonials {
    background: var(--bg-secondary);
    transition: background var(--transition);
}

[data-theme="light"] .bn8-testimonials {
    background: #F8FAFC;
}

.bn8-testimonials__header {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.bn8-testimonials__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.bn8-testimonials__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.bn8-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bn8-testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all var(--transition);
}

.bn8-testimonial-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.bn8-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
    color: #FBBF24;
    font-size: 0.875rem;
}

.bn8-testimonial-card__quote {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.bn8-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bn8-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--bn8-white);
    flex-shrink: 0;
}

.bn8-testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bn8-testimonial-card__role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.bn8-testimonials__row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
/* Testimonials - Light Theme Overrides */
[data-theme="light"] .bn8-testimonial-card {
    background: var(--bn8-white);
    border-color: rgba(0, 0, 0, 0.06);
}
