/* Marriott Graceful Style - Auto-themed */
:root {
    --bc-primary: #341013;
    --bc-primary-dark: #2a0c0e;
    --bc-primary-light: #60354e;
    --bc-accent: #f56789;
    --bc-accent-light: #41c075;
    --bc-accent-dark: #228d45;
    --bc-crystal: #0ad2f5;
    --bc-crystal-light: #35d7f5;
    --bc-crystal-dark: #0a9ec9;
    --bc-gold: #f5778b;
    --bc-gold-light: #3dbd78;
    --bc-gold-dark: #1f8948;
    --bc-bg: #FFFFFF;
    --bc-bg-dark: #e9ecef;
    --bc-text: #2c1418;
    --bc-text-light: #868f88;
    --bc-border: #a5deb5;
    --bc-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --bc-shadow-hover: rgba(10,20,43,0.25);
    --bc-shadow-crystal: rgba(10,217,245,0.3);
    --bc-success: #2ea24e;
    --bc-danger: #d72c49;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    color: var(--bc-text);
    background: var(--bc-bg);
    background-image: 
        radial-gradient(circle at 25% 40%, rgba(10,23,42,0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(10,204,245,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(10,214,245,0.008) 2px, rgba(10,207,245,0.008) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(17,30,48,0.006) 2px, rgba(16,24,40,0.006) 4px);
    pointer-events: none;
    z-index: 0;
    animation: bc-pattern-shift 20s linear infinite;
}

@keyframes bc-pattern-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

body > * {
    position: relative;
    z-index: 1;
}

.bc-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 34px;
}

/* Price Ticker Component */
.bc-ticker {
    background: linear-gradient(135deg, #0a1831 0%, #1d2a4a 50%, #0a1026 100%);
    color: #ffffff;
    padding: 21px 0;
    border-bottom: 4px solid var(--bc-crystal);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bc-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), var(--bc-gold), var(--bc-crystal), transparent);
    animation: bc-ticker-top-line 4s ease-in-out infinite;
}

@keyframes bc-ticker-top-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bc-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 39px;
    flex-wrap: wrap;
    padding: 0 34px;
}

.bc-ticker-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 19px;
    padding: 11px 16px;
    border-radius: 13px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.bc-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(10,217,245,0.2) 0%, transparent 70%);
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.4s;
}

.bc-ticker-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10,211,245,0.35) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.bc-ticker-item:hover::before {
    opacity: 1;
}

.bc-ticker-item:hover::after {
    width: 160px;
    height: 160px;
}

.bc-ticker-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 5px 20px rgba(10,215,245,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bc-ticker-metal {
    font-weight: 800;
    color: var(--bc-crystal);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 7px rgba(10,218,245,0.6);
}

.bc-ticker-price {
    font-weight: 900;
    font-size: 17px;
    color: var(--bc-gold);
    text-shadow: 0 0 8px rgba(245,215,10,0.5);
}

.bc-ticker-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
}

.bc-ticker-change--up {
    color: var(--bc-success);
}

.bc-ticker-change--down {
    color: var(--bc-danger);
}

.bc-ticker-separator {
    width: 2px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
}

.bc-ticker-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--bc-crystal), transparent);
    transition: height 0.6s;
    animation: bc-separator-glow 3.5s ease-in-out infinite;
}

@keyframes bc-separator-glow {
    0%, 100% { height: 0; opacity: 0; }
    50% { height: 100%; opacity: 1; }
}

/* Header */
.bc-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.96) 100%);
    border-bottom: 3px solid var(--bc-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(27px) saturate(180%);
    box-shadow: 
        0 5px 34px rgba(10,31,48,0.1),
        inset 0 -1px 0 rgba(10,212,245,0.15);
    position: relative;
}

.bc-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), var(--bc-gold), var(--bc-crystal), transparent);
    animation: bc-header-line 5s ease-in-out infinite;
}

@keyframes bc-header-line {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.bc-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--bc-primary);
    font-weight: 900;
    font-size: 25px;
    letter-spacing: -0.4px;
}

.bc-logo-icon {
    width: 51px;
    height: 52px;
    background: linear-gradient(135deg, var(--bc-primary) 0%, var(--bc-primary-light) 50%, var(--bc-primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 
        0 8px 28px rgba(16,19,47,0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(10,209,245,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.bc-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(10,219,245,0.4), transparent);
    animation: bc-logo-shine 4s infinite;
}

.bc-logo:hover .bc-logo-icon {
    transform: scale(1.14) rotate(5deg);
    box-shadow: 
        0 12px 38px rgba(12,26,45,0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(10,216,245,0.3);
}

@keyframes bc-logo-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bc-logo-text {
    font-weight: 800;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-nav {
    display: flex;
    gap: 43px;
    align-items: center;
}

.bc-nav-link {
    color: var(--bc-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 9px 24px;
    border-radius: 13px;
}

.bc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 85%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), transparent);
    border-radius: 3px;
    transition: transform 0.45s;
    box-shadow: 0 0 15px rgba(10,210,245,0.5);
}

.bc-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10,219,245,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.45s, height 0.45s;
    z-index: -1;
}

.bc-nav-link:hover::before {
    width: 130px;
    height: 130px;
}

.bc-nav-link:hover {
    color: var(--bc-primary-dark);
    transform: translateY(-3px);
    text-shadow: 0 2px 10px rgba(10,213,245,0.3);
}

.bc-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
    box-shadow: 0 0 20px rgba(10,207,245,0.6);
}

.bc-nav-link--active {
    color: var(--bc-primary-dark);
    background: linear-gradient(135deg, rgba(10,216,245,0.15), rgba(68,142,218,0.1));
    box-shadow: 0 4px 18px rgba(10,204,245,0.25);
}

.bc-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
}

.bc-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 11px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.bc-menu-line {
    width: 27px;
    height: 3px;
    background: var(--bc-primary);
    transition: all 0.35s ease;
    border-radius: 1px;
}

.bc-menu-toggle.active .bc-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.bc-menu-toggle.active .bc-menu-line:nth-child(2) {
    opacity: 0;
}

.bc-menu-toggle.active .bc-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.bc-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 28px 29px;
    background: var(--bc-bg);
    border-top: 3px solid var(--bc-border);
}

.bc-mobile-nav.active {
    display: flex;
}

.bc-mobile-link {
    padding: 17px 0;
    color: var(--bc-text);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--bc-border);
    transition: all 0.35s;
    position: relative;
}

.bc-mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--bc-crystal), var(--bc-accent));
    transition: width 0.35s;
}

.bc-mobile-link:hover::before {
    width: 4px;
}

.bc-mobile-link:hover {
    color: var(--bc-primary-dark);
    padding-left: 10px;
    background: rgba(10,213,245,0.05);
}

.bc-mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.bc-hero {
    background: linear-gradient(135deg, #0a1925 0%, #102a3e 45%, #050d18 50%, #183747 55%, #121c24 100%);
    color: #ffffff;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 45%, rgba(10,207,245,0.25) 0%, transparent 50%),
        radial-gradient(circle at 65% 55%, rgba(80,149,224,0.2) 0%, transparent 50%);
    animation: bc-hero-glow 10s ease-in-out infinite;
}

.bc-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 120px, rgba(10,211,245,0.05) 120px, rgba(10,204,245,0.05) 240px);
    animation: bc-hero-pattern 30s linear infinite;
    pointer-events: none;
}

@keyframes bc-hero-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
}

@keyframes bc-hero-pattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(130px, 130px) rotate(360deg); }
}

.bc-hero-content {
    max-width:100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    animation: bc-hero-content-fade-in 1.2s ease-out;
}

@keyframes bc-hero-content-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bc-hero-badge {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, rgba(10,214,245,0.3) 0%, rgba(76,140,222,0.25) 100%);
    border: 3px solid rgba(10,217,245,0.6);
    border-radius: 59px;
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    margin-bottom: 40px;
    box-shadow: 
        0 11px 32px rgba(10,211,245,0.35), 
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 35px rgba(10,214,245,0.3);
    position: relative;
    overflow: hidden;
    animation: bc-badge-pulse 4s ease-in-out infinite;
    transition: all 0.4s;
}

.bc-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bc-badge-shine 4s infinite;
}

.bc-hero-badge:hover {
    transform: scale(1.04);
    box-shadow: 
        0 12px 42px rgba(10,218,245,0.45), 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 42px rgba(10,205,245,0.4);
}

@keyframes bc-badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(10,215,245,0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 35px rgba(10,218,245,0.3); }
    50% { transform: scale(1.03); box-shadow: 0 12px 42px rgba(10,212,245,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 42px rgba(10,215,245,0.4); }
}

@keyframes bc-badge-shine {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

.bc-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 32px 0;
    color: #ffffff;
    text-shadow: 
        0 4px 18px rgba(0, 0, 0, 0.75),
        0 7px 32px rgba(10,219,245,0.5),
        0 0 55px rgba(10,212,245,0.3);
    background: linear-gradient(135deg, #ffffff 0%, var(--bc-crystal-light) 50%, var(--bc-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bc-title-glow 5s ease-in-out infinite;
    position: relative;
}

.bc-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), var(--bc-gold), var(--bc-crystal), transparent);
    border-radius: 2px;
    opacity: 0.8;
    animation: bc-title-underline 4.5s ease-in-out infinite;
}

@keyframes bc-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

@keyframes bc-title-underline {
    0%, 100% { width: 220px; opacity: 0.8; }
    50% { width: 320px; opacity: 1; }
}

.bc-hero-subtitle {
    font-size: 23px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin: 0 0 53px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bc-hero-actions {
    display: flex;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.bc-btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 39px;
    font-weight: 800;
    font-size: 21px;
    text-decoration: none;
    border-radius: 13px;
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
}

.bc-btn-primary {
    background: linear-gradient(135deg, var(--bc-crystal) 0%, var(--bc-accent) 50%, var(--bc-accent-dark) 100%);
    color: #ffffff;
    box-shadow: 
        0 10px 38px rgba(10,216,245,0.55), 
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 28px rgba(10,219,245,0.4);
    position: relative;
    overflow: hidden;
}

.bc-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}

.bc-btn-primary:hover::before {
    left: 100%;
}

.bc-btn-primary:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 
        0 16px 48px rgba(10,207,245,0.65), 
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 0 38px rgba(10,210,245,0.5);
}

.bc-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.45);
    position: relative;
    overflow: hidden;
}

.bc-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.bc-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.bc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
    transform: translateY(-5px);
}

/* Rating Section */
.bc-rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 54px 0;
    border-top: 2px solid rgba(10,204,245,0.25);
    border-bottom: 3px solid rgba(10,214,245,0.25);
}

.bc-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.96);
    padding: 30px 55px;
    border-radius: 60px;
    box-shadow: 
        0 11px 44px rgba(10,30,43,0.14), 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(10,205,245,0.12);
    border: 3px solid rgba(10,214,245,0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.bc-rating-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(10,208,245,0.1), transparent);
    animation: bc-rating-shine 4.5s infinite;
}

.bc-rating-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 58px;
    padding: 3px;
    background: linear-gradient(135deg, var(--bc-crystal), var(--bc-accent), var(--bc-crystal-dark), var(--bc-crystal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
    animation: bc-rating-border 4.5s ease-in-out infinite;
}

.bc-rating-box:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 
        0 20px 52px rgba(10,31,40,0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 2px rgba(10,205,245,0.15),
        0 0 40px rgba(10,215,245,0.1);
}

@keyframes bc-rating-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bc-rating-border {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.35; }
}

.bc-rating-label {
    font-size: 17px;
    color: var(--bc-text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.bc-stars {
    display: flex;
    gap: 7px;
}

.bc-star {
    font-size: 23px;
    color: #e5dae2;
    position: relative;
    transition: all 0.3s;
}

.bc-star--filled {
    color: var(--bc-gold);
    text-shadow: 0 0 18px rgba(245,211,10,0.7);
    animation: bc-star-twinkle 2.2s ease-in-out infinite;
}

.bc-star--filled:nth-child(1) { animation-delay: 0s; }
.bc-star--filled:nth-child(2) { animation-delay: 0.25s; }
.bc-star--filled:nth-child(3) { animation-delay: 0.5s; }
.bc-star--filled:nth-child(4) { animation-delay: 0.75s; }
.bc-star--filled:nth-child(5) { animation-delay: 1s; }

@keyframes bc-star-twinkle {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.18); filter: brightness(1.45); }
}

.bc-rating-number {
    font-size: 30px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bc-crystal), var(--bc-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-rating-reviews {
    font-size: 17px;
    color: var(--bc-text-light);
}

/* Main Content */
.bc-main {
    padding: 81px 0;
    position: relative;
}

.bc-article {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.bc-intro {
    margin-bottom: 65px;
    padding: 44px;
    background: linear-gradient(135deg, rgba(10,218,245,0.08) 0%, rgba(79,144,222,0.06) 100%);
    border-radius: 19px;
    border-left: 10px solid var(--bc-crystal);
    box-shadow: 
        0 7px 32px rgba(14,18,45,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(10,209,245,0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.bc-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(10,218,245,0.14) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(35%, -35%);
}

.bc-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(74,144,220,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-35%, 35%);
}

.bc-intro:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 
        0 15px 50px rgba(10,19,42,0.18),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 3px rgba(10,209,245,0.2),
        0 0 35px rgba(10,219,245,0.12),
        inset 0 -2px 18px rgba(10,213,245,0.08);
    border-left-width: 10px;
    background: 
        linear-gradient(135deg, rgba(10,206,245,0.1) 0%, rgba(67,148,232,0.08) 100%),
        radial-gradient(circle at 20% 30%, rgba(10,210,245,0.06) 0%, transparent 50%);
}

.bc-lead {
    font-size: 27px;
    line-height: 2.0;
    color: var(--bc-text);
    margin-bottom: 35px;
    font-weight: 700;
}

.bc-article h2 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bc-primary) 0%, var(--bc-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 78px 0 38px 0;
    line-height: 1.25;
    position: relative;
    padding-bottom: 25px;
    padding-left: 26px;
}

.bc-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 70%;
    background: linear-gradient(180deg, var(--bc-crystal), var(--bc-accent), var(--bc-crystal));
    border-radius: 5px;
    box-shadow: 
        0 0 21px rgba(10,219,245,0.65),
        0 0 35px rgba(10,213,245,0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: bc-h2-line 3s ease-in-out infinite;
}

.bc-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--bc-crystal), var(--bc-accent), transparent);
    border-radius: 2px;
    animation: bc-h2-underline 4.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(10,216,245,0.5);
}

@keyframes bc-h2-line {
    0%, 100% { opacity: 1; height: 70%; }
    50% { opacity: 0.9; height: 80%; }
}

@keyframes bc-h2-underline {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 130px; opacity: 0.9; }
}

.bc-article h3 {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--bc-primary);
    margin: 52px 0 23px 0;
    position: relative;
    padding-left: 30px;
}

.bc-article h3::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bc-crystal);
    font-size: 24px;
    line-height: 1.5;
    text-shadow: 
        0 0 14px rgba(10,210,245,0.65),
        0 0 28px rgba(10,204,245,0.45);
    animation: bc-h3-dot 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(10,214,245,0.55));
}

.bc-article h3::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bc-crystal), var(--bc-accent), transparent);
    border-radius: 3px;
    transition: width 0.5s;
    animation: bc-h3-underline 4s ease-in-out infinite;
}

@keyframes bc-h3-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.9; }
}

@keyframes bc-h3-underline {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 80px; opacity: 1; }
}

.bc-article p {
    margin-bottom: 37px;
    line-height: 2.05;
    color: var(--bc-text);
    position: relative;
    padding-left: 27px;
}

.bc-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--bc-crystal);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(10,207,245,0.75),
        0 0 35px rgba(10,217,245,0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0.85;
    transition: all 0.4s;
}

.bc-article p:hover::before {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 
        0 0 25px rgba(10,204,245,0.9),
        0 0 45px rgba(10,214,245,0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bc-article p:first-of-type::before {
    display: none;
}

.bc-list,
.bc-list-ordered {
    margin: 41px 0;
    padding-left: 40px;
    position: relative;
}

.bc-list::before,
.bc-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--bc-crystal), var(--bc-accent), var(--bc-crystal-dark));
    border-radius: 4px;
}

.bc-list li,
.bc-list-ordered li {
    margin-bottom: 21px;
    line-height: 2.0;
    color: var(--bc-text);
    padding-left: 21px;
    position: relative;
    transition: all 0.45s;
}

.bc-list li::before,
.bc-list-ordered li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bc-crystal), var(--bc-accent));
    border-radius: 3px;
    transition: width 0.4s;
}

.bc-list li:hover::before,
.bc-list-ordered li:hover::before {
    width: 12px;
}

.bc-list li::marker {
    color: var(--bc-crystal);
    font-weight: 800;
}

.bc-list li:hover,
.bc-list-ordered li:hover {
    color: var(--bc-primary-dark);
    transform: translateX(10px);
    padding-left: 24px;
}

.bc-list-ordered {
    list-style: decimal;
}

.bc-image-wrapper {
    margin: 61px 0;
    border-radius: 27px;
    overflow: hidden;
    box-shadow: 
        0 22px 65px var(--bc-shadow),
        0 14px 45px rgba(10,30,47,0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(10,205,245,0.12);
    position: relative;
    border: 6px solid rgba(10,214,245,0.25);
    background: linear-gradient(135deg, rgba(10,208,245,0.07) 0%, rgba(79,150,229,0.05) 100%);
    transition: transform 0.65s, box-shadow 0.65s;
    animation: bc-image-wrapper-float 5.5s ease-in-out infinite;
}

@keyframes bc-image-wrapper-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.bc-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid var(--bc-crystal);
    border-radius: 22px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.65s, border-color 0.65s;
    background: 
        radial-gradient(circle at 28% 28%, rgba(10,212,245,0.13) 0%, transparent 50%),
        radial-gradient(circle at 72% 72%, rgba(77,137,228,0.1) 0%, transparent 50%);
    animation: bc-image-border-pulse 3.5s ease-in-out infinite;
}

@keyframes bc-image-border-pulse {
    0%, 100% { opacity: 0.3; border-color: var(--bc-crystal); }
    50% { opacity: 0.4; border-color: var(--bc-accent); }
}

.bc-image-wrapper:hover::before {
    opacity: 0.45;
    border-color: var(--bc-accent);
    box-shadow: 0 0 30px rgba(10,215,245,0.45);
}

.bc-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,209,245,0.1) 100%);
    opacity: 0;
    transition: opacity 0.65s;
    pointer-events: none;
    z-index: 2;
}

.bc-image-wrapper:hover::after {
    opacity: 1;
}

.bc-image-wrapper:hover {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 
        0 32px 85px var(--bc-shadow),
        0 22px 65px rgba(10,31,34,0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 3px rgba(10,206,245,0.2),
        0 0 50px rgba(10,215,245,0.12),
        inset 0 -2px 20px rgba(10,209,245,0.08);
    animation: none;
}

.bc-image-wrapper .bc-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10,219,245,0.12) 0%, rgba(68,144,224,0.1) 50%, rgba(10,206,245,0.12) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(10,216,245,0.04) 15px, rgba(10,210,245,0.04) 30px),
        radial-gradient(circle at 30% 30%, rgba(10,219,245,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(79,145,221,0.06) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: bc-placeholder-pulse 2.8s ease-in-out infinite, bc-placeholder-shimmer 3.5s linear infinite, bc-placeholder-float 4s ease-in-out infinite;
    transition: opacity 0.55s ease;
    backdrop-filter: blur(3px);
    overflow: hidden;
}

@keyframes bc-placeholder-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes bc-placeholder-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.78; }
}

@keyframes bc-placeholder-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.bc-image-wrapper .bc-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border: 4px solid rgba(10,207,245,0.3);
    border-top-color: var(--bc-crystal);
    border-radius: 50%;
    animation: bc-placeholder-spin 1.1s linear infinite;
}

@keyframes bc-placeholder-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.bc-image-wrapper .bc-image-placeholder::after {
    content: 'Loading...';
    color: var(--bc-primary-dark);
    font-weight: 800;
    font-size: 20px;
    animation: bc-loading-text 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    margin-top: 85px;
}

@keyframes bc-loading-text {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.bc-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.65s, filter 0.65s;
    opacity: 0;
    filter: blur(11px);
    position: relative;
    z-index: 1;
}

.bc-article-image.loading {
    opacity: 0.45;
    filter: blur(7px);
    transition: opacity 0.65s, filter 0.65s;
}

.bc-article-image.loaded {
    opacity: 1;
    filter: blur(0);
    animation: bc-image-fade-in 0.85s ease-out, bc-image-loaded-glow 1.8s ease-out, bc-image-loaded-shimmer 2.5s ease-out;
    will-change: transform;
}

@keyframes bc-image-loaded-shimmer {
    0% { box-shadow: 0 0 0 rgba(10,216,245,0); }
    50% { box-shadow: 0 0 35px rgba(10,210,245,0.3), inset 0 0 20px rgba(10,204,245,0.1); }
    100% { box-shadow: 0 0 0 rgba(10,213,245,0); }
}

.bc-article-image.loaded:hover {
    transform: scale(1.06);
    transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-article-image.error {
    opacity: 0.25;
    filter: grayscale(100%);
}

@keyframes bc-image-fade-in {
    0% {
        opacity: 0;
        transform: scale(1.06);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bc-image-loaded-glow {
    0% { box-shadow: 0 0 0 rgba(10,207,245,0); }
    50% { box-shadow: 0 0 25px rgba(10,217,245,0.25); }
    100% { box-shadow: 0 0 0 rgba(10,210,245,0); }
}

/* Newsletter Signup Component */
.bc-newsletter {
    margin: 67px 0;
    padding: 67px 0;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%),
        radial-gradient(circle at 12% 22%, rgba(10,204,245,0.07) 0%, transparent 60%),
        radial-gradient(circle at 88% 78%, rgba(69,146,224,0.05) 0%, transparent 60%),
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(10,208,245,0.02) 40px, rgba(10,217,245,0.02) 80px);
    border-radius: 24px;
    border: 5px solid rgba(10,211,245,0.2);
    box-shadow: 
        0 12px 45px rgba(17,18,37,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 12px rgba(10,208,245,0.06),
        0 0 35px rgba(10,218,245,0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: bc-newsletter-float 4.5s ease-in-out infinite;
}

.bc-newsletter::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(10,205,245,0.1), transparent);
    animation: bc-newsletter-shine 6s linear infinite;
    pointer-events: none;
}

@keyframes bc-newsletter-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bc-newsletter-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.bc-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10,215,245,0.09) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(28%, -28%);
    animation: bc-newsletter-glow 4.5s ease-in-out infinite;
}

@keyframes bc-newsletter-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.82; }
}

.bc-newsletter-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bc-newsletter-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--bc-primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-newsletter-text {
    font-size: 22px;
    color: var(--bc-text);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.bc-newsletter-form {
    display: flex;
    gap: 17px;
    max-width: 580px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.bc-newsletter-input {
    flex: 1;
    min-width: 270px;
    padding: 18px 21px;
    border: 4px solid var(--bc-border);
    border-radius: 13px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.35s;
    background: var(--bc-bg);
}

.bc-newsletter-input:focus {
    outline: none;
    border-color: var(--bc-crystal);
    box-shadow: 0 0 0 3px rgba(10,208,245,0.1);
}

.bc-newsletter-button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--bc-crystal) 0%, var(--bc-accent) 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.45s;
    box-shadow: 0 7px 26px rgba(10,218,245,0.35);
    white-space: nowrap;
}

.bc-newsletter-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 38px rgba(10,212,245,0.45);
}

/* Comparison Table Component */
.bc-comparison-section {
    margin: 67px 0;
    padding: 62px 0;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%),
        radial-gradient(circle at 20% 30%, rgba(10,206,245,0.06) 0%, transparent 50%);
    border-radius: 25px;
    border: 5px solid rgba(10,215,245,0.2);
    box-shadow: 0 11px 38px rgba(10,22,46,0.12);
}

.bc-comparison-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 17px;
}

.bc-comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), var(--bc-accent), var(--bc-crystal), transparent);
    border-radius: 4px;
    animation: bc-comparison-title-underline 4s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(10,219,245,0.55);
}

@keyframes bc-comparison-title-underline {
    0%, 100% { width: 160px; opacity: 0.82; }
    50% { width: 150px; opacity: 1; }
}

.bc-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bc-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 34px rgba(10,25,45,0.1);
}

.bc-comparison-table thead {
    background: linear-gradient(135deg, var(--bc-crystal), var(--bc-accent));
}

.bc-comparison-table th {
    padding: 21px 27px;
    text-align: left;
    font-weight: 800;
    font-size: 17px;
    color: #ffffff;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.bc-comparison-table th:first-child {
    border-top-left-radius: 15px;
}

.bc-comparison-table th:last-child {
    border-top-right-radius: 20px;
}

.bc-comparison-table tbody tr {
    transition: all 0.35s;
    border-bottom: 2px solid var(--bc-border);
    position: relative;
}

.bc-comparison-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, var(--bc-crystal), var(--bc-accent));
    transition: width 0.35s;
    z-index: 0;
}

.bc-comparison-table tbody tr:hover::before {
    width: 4px;
}

.bc-comparison-table tbody tr:hover {
    background: 
        linear-gradient(135deg, rgba(10,209,245,0.08), rgba(79,151,220,0.06)),
        radial-gradient(circle at 50% 50%, rgba(10,213,245,0.04) 0%, transparent 70%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(10,206,245,0.02) 20px, rgba(10,216,245,0.02) 40px);
    transform: scale(1.018) translateX(3px);
    box-shadow: 
        0 5px 20px rgba(10,210,245,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 12px rgba(10,213,245,0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.bc-comparison-table td {
    padding: 21px 22px;
    font-size: 19px;
    color: var(--bc-text);
    border-right: 2px solid var(--bc-border);
    position: relative;
    z-index: 1;
}

.bc-comparison-table td:last-child {
    border-right: none;
}

.bc-comparison-table .bc-feature-name {
    font-weight: 700;
    color: var(--bc-primary);
}

.bc-comparison-table .bc-check {
    color: var(--bc-success);
    font-weight: 900;
    font-size: 21px;
    text-shadow: 0 0 8px rgba(38,162,76,0.45);
}

.bc-comparison-table .bc-cross {
    color: var(--bc-danger);
    font-weight: 900;
    font-size: 21px;
    text-shadow: 0 0 8px rgba(217,58,67,0.45);
}

/* FAQ Section */
.bc-faq-section {
    margin: 81px 0;
    padding: 60px 0;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%),
        radial-gradient(circle at 15% 25%, rgba(10,210,245,0.06) 0%, transparent 50%);
    border-radius: 29px;
    border: 4px solid rgba(10,204,245,0.25);
    position: relative;
    overflow: hidden;
}

.bc-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bc-crystal), var(--bc-accent), var(--bc-crystal));
    animation: bc-faq-top-line 4s ease-in-out infinite;
}

@keyframes bc-faq-top-line {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}

.bc-faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 51px;
    background: linear-gradient(135deg, var(--bc-primary), var(--bc-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 25px;
}

.bc-faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), var(--bc-accent), var(--bc-crystal), transparent);
    border-radius: 4px;
    animation: bc-faq-title-underline 4.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(10,214,245,0.6);
}

@keyframes bc-faq-title-underline {
    0%, 100% { width: 130px; opacity: 0.82; }
    50% { width: 170px; opacity: 1; }
}

.bc-faq-list {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 47px;
}

.bc-faq-item {
    background: 
        linear-gradient(135deg, var(--bc-bg) 0%, #ffffff 100%),
        radial-gradient(circle at 8% 15%, rgba(10,207,245,0.05) 0%, transparent 50%);
    border: 3px solid var(--bc-border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 28px rgba(10,30,36,0.1),
        0 0 0 1px rgba(10,211,245,0.08);
    position: relative;
    margin-bottom: 26px;
}

.bc-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, var(--bc-crystal), var(--bc-accent), var(--bc-crystal-dark));
    transform: scaleY(0);
    transition: transform 0.55s;
    box-shadow: 0 0 22px rgba(10,204,245,0.7);
}

.bc-faq-item:hover {
    border-color: rgba(10,214,245,0.6);
    box-shadow: 
        0 13px 38px var(--bc-shadow),
        0 8px 24px rgba(14,21,34,0.16),
        0 0 0 2px rgba(10,217,245,0.15);
    transform: translateX(8px);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.96) 100%),
        radial-gradient(circle at 8% 15%, rgba(10,215,245,0.07) 0%, transparent 50%);
}

.bc-faq-item:hover::before,
.bc-faq-item.active::before {
    transform: scaleY(1);
}

.bc-faq-item.active {
    border-color: var(--bc-crystal);
    box-shadow: 
        0 20px 50px var(--bc-shadow),
        0 11px 34px rgba(10,21,48,0.22),
        0 0 0 3px rgba(10,218,245,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 15px rgba(10,205,245,0.06),
        0 0 28px rgba(10,215,245,0.12);
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%),
        radial-gradient(circle at 8% 15%, rgba(10,209,245,0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(10,218,245,0.02) 30px, rgba(10,212,245,0.02) 60px);
    transform: translateX(5px);
    animation: bc-faq-active-glow 2.8s ease-in-out infinite;
}

@keyframes bc-faq-active-glow {
    0%, 100% { box-shadow: 0 20px 50px var(--bc-shadow), 0 11px 34px rgba(17,19,36,0.22), 0 0 0 3px rgba(10,215,245,0.1), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 15px rgba(10,219,245,0.06), 0 0 28px rgba(10,213,245,0.12); }
    50% { box-shadow: 0 24px 58px var(--bc-shadow), 0 14px 40px rgba(12,19,41,0.28), 0 0 0 4px rgba(10,216,245,0.15), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -1px 20px rgba(10,219,245,0.08), 0 0 35px rgba(10,213,245,0.15); }
}

.bc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 33px 47px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 22px;
    font-weight: 800;
    color: var(--bc-primary);
    position: relative;
    transition: all 0.4s;
}

.bc-faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 44px;
    right: 44px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(10,207,245,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.bc-faq-item:hover .bc-faq-question::after {
    opacity: 1;
}

.bc-faq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--bc-border), #d4ded3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bc-text);
    flex-shrink: 0;
    transition: all 0.5s;
}

.bc-faq-item.active .bc-faq-icon {
    transform: rotate(180deg) scale(1.25);
    background: linear-gradient(135deg, var(--bc-crystal), var(--bc-accent));
    color: #ffffff;
    box-shadow: 
        0 8px 28px rgba(10,216,245,0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease;
}

.bc-faq-item.active .bc-faq-answer {
    max-height: 1000px;
}

.bc-faq-answer-content {
    padding: 0 44px 31px;
    font-size: 20px;
    line-height: 2.0;
    color: var(--bc-text);
}

/* Footer */
.bc-footer {
    background: linear-gradient(135deg, #050d18 0%, #0a1620 50%, #050d18 100%);
    color: #ffffff;
    padding: 67px 0 47px;
    margin-top: 81px;
    position: relative;
    overflow: hidden;
}

.bc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), transparent);
    animation: bc-footer-top-line 5s ease-in-out infinite;
}

@keyframes bc-footer-top-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bc-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
    margin-bottom: 45px;
}

.bc-footer-section h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--bc-crystal);
    position: relative;
    padding-bottom: 19px;
}

.bc-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bc-crystal), transparent);
    border-radius: 3px;
    animation: bc-footer-h3-line 3.2s ease-in-out infinite;
}

@keyframes bc-footer-h3-line {
    0%, 100% { width: 50px; opacity: 0.82; }
    50% { width: 70px; opacity: 1; }
}

.bc-footer-links {
    list-style: none;
}

.bc-footer-links li {
    margin-bottom: 18px;
}

.bc-footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
}

.bc-footer-links a::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bc-crystal), var(--bc-accent));
    transition: width 0.4s;
    box-shadow: 0 0 8px rgba(10,213,245,0.55);
}

.bc-footer-links a::after {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(10,207,245,0.22) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.bc-footer-links a:hover::before {
    width: 10px;
}

.bc-footer-links a:hover::after {
    width: 22px;
    height: 22px;
}

.bc-footer-links a:hover {
    color: var(--bc-crystal);
    padding-left: 10px;
    text-shadow: 0 0 14px rgba(10,217,245,0.55), 0 0 25px rgba(10,211,245,0.35);
    transform: translateX(3px);
}

.bc-footer-bottom {
    text-align: center;
    padding-top: 42px;
    border-top: 3px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
}

.bc-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bc-crystal), transparent);
    animation: bc-footer-bottom-line 5.5s ease-in-out infinite;
}

@keyframes bc-footer-bottom-line {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 200px; opacity: 1; }
}

/* Responsive */
@media (max-width: 968px) {
    .bc-comparison-table {
        font-size: 14px;
    }
    
    .bc-comparison-table th,
    .bc-comparison-table td {
        padding: 17px 17px;
    }
}

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

    .bc-menu-toggle {
        display: flex;
    }

    .bc-hero-title {
        font-size: 42px;
    }

    .bc-hero-subtitle {
        font-size: 19px;
    }

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

    .bc-btn {
        width: 100%;
        justify-content: center;
    }

    .bc-article h2 {
        font-size: 32px;
    }

    .bc-comparison-table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
    }

    .bc-newsletter-form {
        flex-direction: column;
    }

    .bc-newsletter-input {
        width: 100%;
        min-width: 100%;
    }
}

/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 6px;
    margin-bottom: 11px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 12px 23px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 8px 27px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 9px 14px;
        font-size: 16px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 9px !important;
        margin: 0 auto 10px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.bc-wrapper, .bc-content, .bc-hero-inner, .bc-companies-container, 
.bc-article, .bc-container, .bc-footer-inner, .bc-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.bc-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.bc-td-action {
    text-align: center !important;
}
.bc-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
