/* ========== Визуальный апгрейд: переменные и база ========== */
:root {
    --cs2-shadow-sm: 0 2px 8px rgba(0, 29, 71, 0.06);
    --cs2-shadow: 0 4px 20px rgba(0, 29, 71, 0.08);
    --cs2-shadow-hover: 0 12px 40px rgba(0, 29, 71, 0.12);
    --cs2-radius: 16px;
    --cs2-radius-lg: 24px;
    --cs2-transition: 0.25s ease;
    --cs2-transition-slow: 0.35s ease;

    /* Theme colors (light — default) */
    --cs2-bg: rgba(238, 238, 255, 1);
    --cs2-card: #FFFFFF;
    --cs2-card-alt: #E9F3FF;
    --cs2-card-alt-hover: #e0edff;
    --cs2-text: #383838;
    --cs2-text-heading: #001D47;
    --cs2-text-muted: #5a6575;
    --cs2-text-sub: #356C8B;
    --cs2-border: #e8f0fe;
    --cs2-badge-green-bg: #E2EFE5;
    --cs2-badge-green-text: #27760F;
    --cs2-badge-blue-bg: #DEE1FF;
    --cs2-badge-blue-text: #5D6EC6;
    --cs2-badge-pink-bg: #FFC3D9;
    --cs2-badge-pink-text: #C65D83;
    --cs2-count-color: #BBD7FF;
    --cs2-input-bg: rgba(255,255,255,0.95);
    --cs2-footer-text: #718096;
}

/* ========== DARK THEME ========== */
body.dark-theme {
    --cs2-bg: #0f0e1a;
    --cs2-card: #1a1a2e;
    --cs2-card-alt: #1e1e36;
    --cs2-card-alt-hover: #252544;
    --cs2-text: #c8d0e0;
    --cs2-text-heading: #e2e8f0;
    --cs2-text-muted: #8b95a8;
    --cs2-text-sub: #7a9ab5;
    --cs2-border: #2a2a4a;
    --cs2-badge-green-bg: rgba(39, 118, 15, 0.15);
    --cs2-badge-green-text: #6fcf57;
    --cs2-badge-blue-bg: rgba(93, 110, 198, 0.15);
    --cs2-badge-blue-text: #9ba8f0;
    --cs2-badge-pink-bg: rgba(198, 93, 131, 0.15);
    --cs2-badge-pink-text: #f0a0bf;
    --cs2-count-color: #4a5580;
    --cs2-input-bg: rgba(30, 30, 50, 0.9);
    --cs2-footer-text: #6b7280;
    --cs2-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --cs2-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --cs2-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
}

body.dark-theme {
    background: var(--cs2-bg) !important;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 8px;
    position: relative;
    color: #e2e8f0;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}
.theme-toggle__icon {
    position: absolute;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
/* Light mode: show moon (to switch to dark) */
.theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}
.theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}
/* Dark mode: show sun (to switch to light) */
body.dark-theme .theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}
body.dark-theme .theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

/* Hide on mobile */
@media (max-width: 900px) {
    .theme-toggle {
        display: none;
    }
}

/* ========== DARK THEME OVERRIDES FOR HOMEPAGE ========== */

/* Body background */
body.dark-theme .best-sites-sec:before {
    opacity: 0.4;
}

/* Card backgrounds */
body.dark-theme .list-sites-fon {
    background: var(--cs2-card);
    box-shadow: var(--cs2-shadow);
}
body.dark-theme .list-sites-fon h2 {
    color: var(--cs2-text-heading);
}
body.dark-theme .list-sites-fon p {
    color: var(--cs2-text-muted);
}

body.dark-theme .list-sites-box {
    background: var(--cs2-card-alt);
    box-shadow: var(--cs2-shadow-sm);
}
body.dark-theme .list-sites-box:hover {
    background: var(--cs2-card-alt-hover);
    box-shadow: var(--cs2-shadow);
}
body.dark-theme .list-sites-info strong {
    color: var(--cs2-text-heading);
}
body.dark-theme .list-sites-info p {
    color: var(--cs2-text-sub);
}
body.dark-theme .count-box {
    opacity: 0.7;
}

/* Badges */
body.dark-theme .list-sites-dat,
body.dark-theme .list-sites-rating {
    background: var(--cs2-badge-green-bg);
}
body.dark-theme .list-sites-dat span {
    color: var(--cs2-badge-green-text);
}
body.dark-theme .list-sites-cases {
    background: var(--cs2-badge-blue-bg);
}
body.dark-theme .list-sites-cases span {
    color: var(--cs2-badge-blue-text);
}
body.dark-theme .list-sites-deposit {
    background: var(--cs2-badge-pink-bg);
}
body.dark-theme .list-sites-deposit span {
    color: var(--cs2-badge-pink-text);
}

/* Global headings & text */
body.dark-theme h2 {
    color: var(--cs2-text-heading);
}
body.dark-theme p {
    color: var(--cs2-text);
}

/* When-choosing section */
body.dark-theme .when-choosing__info h2 {
    color: var(--cs2-text-heading);
}
body.dark-theme .when-choosing__info p {
    color: var(--cs2-text-muted);
}
body.dark-theme .when-choosing-box {
    background: var(--cs2-card);
    box-shadow: var(--cs2-shadow-sm);
}
body.dark-theme .when-choosing-box p {
    color: var(--cs2-text);
}
body.dark-theme .when-choosing-box:hover {
    box-shadow: var(--cs2-shadow-hover);
}

/* Comments */
body.dark-theme .comments-sec h2 {
    color: var(--cs2-text-heading);
}
body.dark-theme .comments-box {
    background: var(--cs2-card);
    box-shadow: var(--cs2-shadow-sm);
}
body.dark-theme .comments-box p {
    color: var(--cs2-text);
}
body.dark-theme .comments-name strong {
    color: var(--cs2-text-heading);
}
body.dark-theme .comments-name span {
    color: var(--cs2-text-muted);
}

/* Write comment form */
body.dark-theme .comment-input input {
    background: var(--cs2-input-bg);
    color: #c8d0e0;
    border-color: rgba(255,255,255,0.1);
}
body.dark-theme .comment-input input::placeholder {
    color: #6b7280;
}
body.dark-theme .comment-input input:focus {
    border-color: #6A6BF8;
    background: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(106, 107, 248, 0.2);
}
body.dark-theme .comment-textarea textarea {
    background: var(--cs2-input-bg);
    color: #c8d0e0;
    border-color: rgba(255,255,255,0.1);
}
body.dark-theme .comment-textarea textarea::placeholder {
    color: #6b7280;
}
body.dark-theme .comment-textarea textarea:focus {
    border-color: #6A6BF8;
    background: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(106, 107, 248, 0.2);
}

/* Tags */
body.dark-theme .tags ul li {
    background: linear-gradient(135deg, rgba(106,107,248,0.25), rgba(90,91,232,0.2));
}
body.dark-theme .tags ul li:hover {
    background: linear-gradient(135deg, rgba(90,91,232,0.35), rgba(74,75,216,0.3));
}

/* Footer */
body.dark-theme footer {
    border-image: linear-gradient(90deg, transparent, rgba(106,107,248,0.2), transparent) 1;
}
body.dark-theme .footer__main p {
    color: var(--cs2-footer-text);
}

/* Best sites content */
body.dark-theme .best-sites-content strong {
    color: var(--cs2-text-heading);
}
body.dark-theme .best-sites-content ul li a {
    color: #9ba8f0;
}
body.dark-theme .best-sites-content ul li a:hover {
    color: #c5d0ff;
}
body.dark-theme .best-sites-info p {
    color: var(--cs2-text);
}

/* Review button override for dark */
body.dark-theme .ls-btn--review {
    background: transparent;
    color: #9ba8f0;
    border-color: rgba(106, 107, 248, 0.4);
}
body.dark-theme .ls-btn--review:hover {
    background: #6A6BF8;
    color: #fff;
}

/* H2 underline decorations */
body.dark-theme .list-sites-fon h2::after,
body.dark-theme .when-choosing__info h2::after,
body.dark-theme .comments-sec h2::after {
    opacity: 0.7;
}

/* Scroll-to-top */
body.dark-theme .global-scroll-top {
    box-shadow: 0 4px 20px rgba(70, 111, 255, 0.25);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Шапка: тёмная, логотип + WP меню, без белой полоски */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1a1a2e;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    min-height: 58px;
}
.site-header__inner.container {
    max-width: 1240px;
}
.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.25s ease;
}
.site-header__logo:hover {
    opacity: 0.9;
}
.site-header__logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}
.site-header__nav {
    display: flex;
    align-items: center;
}
.site-header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header__menu li {
    margin: 0;
}
.site-header__menu a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease;
}
.site-header__menu a:hover,
.site-header__menu .current-menu-item a {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* ===== MULTI-LEVEL MENU (desktop) ===== */
.site-header__menu .menu-item-has-children {
    position: relative;
}
.site-header__menu .menu-item-has-children > a {
    padding-right: 28px;
}
.site-header__menu .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -4px;
    transition: transform .25s ease;
}
.site-header__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #1a1a2e;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 200;
    border: 1px solid rgba(255,255,255,.08);
}
.site-header__menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site-header__menu .sub-menu li { margin: 0; }
.site-header__menu .sub-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #c8d0e0;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}
.site-header__menu .sub-menu a:hover {
    color: #fff;
    background: rgba(70,111,255,.2);
}
/* Hide toggle arrow on desktop */
.site-header__submenu-toggle {
    display: none;
}
/* Hidden checkbox for CSS-only mobile menu */
.mobile-menu-checkbox {
    display: none !important;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
/* Кнопка гамбургера (скрыта на десктопе) */
.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.25s ease;
    position: relative;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
}
.site-header__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}
.site-header__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}
/* Burger animation when checked */
.mobile-menu-checkbox:checked ~ .site-header__toggle .site-header__toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-checkbox:checked ~ .site-header__toggle .site-header__toggle-bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-checkbox:checked ~ .site-header__toggle .site-header__toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px) {
    .site-header__toggle {
        display: flex;
    }
    .site-header__nav {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #1a1a2e;
        padding: 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }
    /* CSS-only: when checkbox is checked, show nav */
    .mobile-menu-checkbox:checked ~ .site-header__nav {
        max-height: 80vh;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .site-header__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .site-header__menu a {
        padding: 14px 18px;
        font-size: 16px;
        color: #e2e8f0;
        border-radius: 10px;
    }
    .site-header__menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    /* Mobile multi-level menu */
    .site-header__menu .menu-item-has-children {
        position: relative;
    }
    .site-header__menu .menu-item-has-children > a::after {
        display: none;
    }
    .site-header__submenu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 6px;
        right: 6px;
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,.08);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        color: #e2e8f0;
        transition: background .2s ease, transform .2s ease;
        z-index: 2;
    }
    .site-header__submenu-toggle:hover {
        background: rgba(255,255,255,.15);
    }
    .menu-item-has-children.sub-open > .site-header__submenu-toggle svg {
        transform: rotate(180deg);
    }
    .site-header__menu .sub-menu {
        position: static;
        min-width: 0;
        background: rgba(255,255,255,.04);
        border-radius: 10px;
        box-shadow: none;
        padding: 0 0 0 16px;
        list-style: none;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease, padding .3s ease, margin .3s ease;
    }
    .menu-item-has-children.sub-open > .sub-menu {
        max-height: 1000px;
        padding: 4px 0 4px 16px;
        margin: 4px 0 0;
    }
    .site-header__menu .sub-menu a {
        padding: 12px 16px;
        font-size: 15px;
        color: #b8c0d0;
    }
    .site-header__menu .sub-menu a:hover {
        color: #fff;
        background: rgba(70,111,255,.15);
    }
}
@media (max-width: 768px) {
    .site-header__inner {
        padding: 10px 18px;
        min-height: 54px;
    }
    .site-header__logo-img {
        height: 32px;
    }
    .site-header__nav {
        top: 54px;
    }
}

/* ===== KEYFRAMES ===== */
@keyframes cs2FadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes cs2Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes cs2Shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes cs2Pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(106, 107, 248, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(106, 107, 248, 0); }
}
@keyframes cs2GradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes cs2SlideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes cs2SlideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes cs2ScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== SCROLL REVEAL (CSS-only с animation-timeline fallback) ===== */
.best-sites-sec .container {
    animation: cs2SlideInLeft 0.7s ease forwards;
}
.best-sites-photo {
    animation: cs2SlideInRight 0.8s ease 0.2s both;
}
.best-sites-photo img {
    animation: cs2Float 4s ease-in-out infinite;
}
.list-sites-fon {
    animation: cs2FadeInUp 0.6s ease 0.1s both;
}
.when-choosing-sec .when-choosing__info {
    animation: cs2FadeInUp 0.6s ease both;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: left;
    color: #FFFFFF;
}
h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
    color: #001D47;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    text-align: left;
    color: #383838;
}


.best-sites-sec {
    padding-top: 14px; /* в два раза меньше верхней полоски */
}
.best-sites-sec:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/fon.png");
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 1557px;
    width: 100%;
    height: 531px;
}
.best-sites-cnt{
    display: flex;
    position: relative;
    z-index: 1;
}
.best-sites-info{
    max-width: 782px;
    width: 100%;
}
.best-sites-info h1 {
    margin-top: 0;
}
.best-sites-info p {
    margin-top: 20px;
    color: rgba(0,0,0,0.85);
    font-size: 17px;
    line-height: 1.6;
}
.best-sites-content {
    margin-top: 20px;
    padding-left: 50px;
    border-left: 2px solid #FFFFFF;
}
.best-sites-content strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #000;
}
.best-sites-content ul {
    margin-top: 15px;
    margin-left: 20px;
    list-style-type: disc;
}
.best-sites-content ul li, .best-sites-content ul li a{
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #FFFFFF;
    margin-top: 5px;
}
.best-sites-content ul li a {
    color: #001D47;
    text-decoration: none;
    transition: color var(--cs2-transition), opacity var(--cs2-transition);
}
.best-sites-content ul li a:hover {
    color: #3557e0;
    opacity: 0.95;
}

.best-sites-photo {
    display: flex;
    max-width: 598px;
    width: 100%;
    margin-left: -105px;
}
.head-logo {
    display: inline-block;
    transition: transform var(--cs2-transition), opacity var(--cs2-transition);
}
.head-logo:hover {
    transform: scale(1.05);
    opacity: 0.95;
}



.different-systems{
    margin-top: -65px;
    z-index: 1;
}
.different-systems__flex{
    display: flex;
    justify-content: space-between;
    gap: 27px;
}
.different-systems__box {
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: var(--cs2-radius-lg);
    gap: 24px;
    background: #0001CC;
    box-shadow: var(--cs2-shadow);
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition);
}
.different-systems__box:hover {
    transform: translateY(-4px);
    box-shadow: var(--cs2-shadow-hover);
}
.different-systems__box:nth-child(2) {
    background: linear-gradient(135deg, #B746FF 0%, #9b3ad9 100%);
}
.different-systems__box:nth-child(3) {
    background: linear-gradient(135deg, #466FFF 0%, #3557e0 100%);
}
.different-systems__box:first-child {
    background: linear-gradient(135deg, #0001CC 0%, #0008a8 100%);
}
.different-systems__name strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    max-width: 250px;
    width: 100%;
    display: block;
}
.different-systems__name p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
}
.different-systems__image{
    display: flex;
    max-width: 160px;
    width: 100%;
}
.list-sites-sec{
    margin-top: 68px;
}
.list-sites-fon {
    background: #FFFFFF;
    padding: 50px;
    border-radius: var(--cs2-radius-lg);
    box-shadow: var(--cs2-shadow);
}
.list-sites-fon p {
    color: #5a6575;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}
.list-sites-fon h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
}
.list-sites-box {
    margin-top: 30px;
    background: #E9F3FF;
    padding: 20px;
    border-radius: var(--cs2-radius);
    gap: 23px;
    display: flex;
    align-items: center;
    box-shadow: var(--cs2-shadow-sm);
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition);
}
.list-sites-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--cs2-shadow);
    background: #e0edff;
}
.count-box{
    min-width: 105px;
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    line-height: 69.6px;
    text-align: left;
    color: #BBD7FF;
}
.list-sites-logo {
    background: #1a1a2e;
    max-width: 172px;
    width: 100%;
    height: 148px;
    border-radius: var(--cs2-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform var(--cs2-transition);
}
.list-sites-box:hover .list-sites-logo {
    transform: scale(1.02);
}
.list-sites-info strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #001D47;
}
.list-sites-info p {
    color: #356C8B;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
.list-sites-cnt{
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.list-sites-cnt div {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    gap: 11px;
    border-radius: 999px;
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition);
}
.list-sites-box:hover .list-sites-cnt div {
    transform: scale(1.02);
}
.list-sites-dat{
    background: #E2EFE5;
}
.list-sites-rating{
    background: #E2EFE5;
}
.list-sites-dat span{
    color: #27760F;
}
.list-sites-cases{
    background: #DEE1FF;
}
.list-sites-cases span{
    color: #5D6EC6;
}
.list-sites-deposit{
    background: #FFC3D9;
}
.list-sites-deposit span{
    color: #C65D83;
}
.list-sites-cnt div span{
    font-size: 12px;
    font-weight: 600;
    line-height: 14.32px;
    text-align: left;
}


.when-choosing-sec {
    margin-top: 50px;
}
.when-choosing__info h2 {
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a1628;
}
.when-choosing__info p {
    margin-top: 24px;
    margin-bottom: 28px;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.65;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.when-choosing-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
}
.when-choosing-box {
    width: calc(25% - 24px);
    background: #FFFFFF;
    padding: 44px 36px;
    gap: 18px;
    border-radius: var(--cs2-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--cs2-shadow-sm);
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition);
}
.when-choosing-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--cs2-shadow-hover);
}
.when-choosing-box img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.when-choosing-box p {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: #2d3748;
    text-align: center;
    letter-spacing: 0.01em;
    margin: 0;
}
.comments-sec{
    margin-top: 82px;
}
.comments-box {
    display: flex;
    align-items: start;
    margin-top: 46px;
    gap: 52px;
    padding: 50px 30px;
    border-radius: var(--cs2-radius-lg);
    background: #FFFFFF;
    box-shadow: var(--cs2-shadow-sm);
    transition: box-shadow var(--cs2-transition);
}
.comments-box:hover {
    box-shadow: var(--cs2-shadow);
}
.icon-kerik{
    content: url("../img/kerik.svg");
}
.comments-name {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.comments-name strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a202c;
}
.comments-name span {
    color: #718096;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}
.comments-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d3748;
}
.write-comment {
    margin-top: 80px;
    background: linear-gradient(135deg, #6A6BF8 0%, #5a5be8 50%, #4a4bd8 100%);
    padding: 50px 100px;
    border-radius: var(--cs2-radius-lg);
    position: relative;
    box-shadow: var(--cs2-shadow);
}
.write-comment:after {
    content: "";
    position: absolute;
    top: -74px;
    right: 0;
    background-image: url(../img/fon-contact.png);
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 861px;
    width: 100%;
    height: 588px;
    border-radius: 0 10px 10px 0;
}
.write-comment h2 {
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.write-comment-form{
    max-width: 558px;
    width: 100%;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}
.write-comment-flex{
    display: flex;
    gap: 18px;
}
.comment-input{
    width: 100%;
}
.comment-input label, .comment-textarea label{
    width: 100%;
    display: flex;
}
.comment-input input {
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.95);
    padding: 20px 23px;
    height: 66px;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    color: #3346AA;
    border-radius: 12px;
    transition: border-color var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition);
}
.comment-input input::placeholder {
    color: #6b7cd6;
}
.comment-input input:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    background: #fff;
}
.comment-textarea {
    margin-top: 25px;
}
.comment-textarea textarea {
    font-family: "Roboto", sans-serif;
    padding: 25px 23px;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.4);
    width: 100%;
    height: 141px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #3346AA;
    border-radius: 12px;
    transition: border-color var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition);
}
.comment-textarea textarea::placeholder {
    color: #6b7cd6;
}
.comment-textarea textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
    background: #fff;
}
.checkbox-form{
    margin: 25px 0;
}
.checkbox-form label{
    display: block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
}
.checkbox-form label small{
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 400;
    line-height: 16.41px;
    text-align: left;
    color: #FFFFFF;
}
.checkbox-form input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    top: 0;
    left: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background: #FFFFFF;
    border: 1px solid #3346AA;
}
.checkbox-form input:checked ~ .checkmark {
    background: #3346AA;
}

.checkbox-form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkbox-form input:checked ~ .checkmark:after {
    display: block;
}

.btn {
    background: linear-gradient(135deg, #FD1BAF 0%, #e0169d 100%);
    max-width: 159px;
    width: 100%;
    padding: 16px 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 27, 175, 0.35);
}
.btn:hover {
    background: linear-gradient(135deg, #e0169d 0%, #cf0088 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 27, 175, 0.45);
}
.btn:active {
    transform: translateY(0);
}


footer{
    margin-top: 34px;
}
.footer__main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}
.footer__logo {
    display: flex;
    transition: transform var(--cs2-transition), opacity var(--cs2-transition);
}
.footer__logo:hover {
    transform: scale(1.03);
    opacity: 0.9;
}
.footer__main p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    color: #718096;
}
.comments-sec h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a202c;
}



@media (max-width: 1599px){
    .container {
        max-width: 1400px;
    }
}
@media (max-width: 1399px){
    .different-systems__box {
        padding: 0 15px;
        gap: 9px;
    }
    .different-systems__image {
        max-width: 140px;
    }
    .different-systems__name strong {
        font-size: 20px;
    }
    .list-sites-fon {
        padding: 40px;
    }
}
@media (max-width: 1299px){
    .best-sites-photo {
        max-width: 480px;
        margin-left: -20px;
    }
    .best-sites-info h1 {
        margin-top: 30px;
    }
    h1 {
        font-size: 42px;
        line-height: 44px;
    }
    .best-sites-content {
        margin-top: 15px;
        padding-left: 24px;
    }
    .best-sites-content ul {
        margin-top: 10px;
    }
    .different-systems {
        margin-top: -20px;
    }
    .best-sites-sec:before {
        max-width: 1254px;
        height: 460px;
    }

    .write-comment {
        padding: 50px 50px;
    }
    h2 {
        font-size: 30px;
        line-height: 35.69px;
    }
    .different-systems__image {
        max-width: 128px;
    }
    .different-systems__box {
        padding: 10px 15px;
    }
    .different-systems__flex {
        gap: 10px;
    }
    .list-sites-fon {
        padding: 30px;
    }
    .list-sites-sec {
        margin-top: 50px;
    }
    .count-box {
        min-width: 95px;
        font-size: 48px;
        line-height: 60px;
    }
    .list-sites-box {
        margin-top: 25px;
        gap: 15px;
    }
    .list-sites-cnt {
        margin: 10px 0;
        gap: 14px;
    }

    .when-choosing-wrap {
        gap: 20px;
    }
    .when-choosing-box {
        width: calc(25% - 15px);
        padding: 40px 25px;
    }
    .comments-box {
        margin-top: 36px;
        gap: 30px;
        padding: 30px 30px;
    }
    .write-comment:after {
        top: -72px;
        max-width: 806px;
        height: 607px;
    }

}

@media (max-width: 1199px){
    .best-sites-photo {
        max-width: 400px;
        margin-left: 0;
    }
    h1 {
        font-size: 38px;
        line-height: 42px;
    }
    .best-sites-info h1 {
        margin-top: 25px;
    }
    .best-sites-sec:before {
        max-width: 1226px;
        height: 440px;
    }
    .different-systems {
        margin-top: 26px;
    }
    .different-systems__flex {
        gap: 15px;
        flex-wrap: wrap;
    }
    .different-systems__box {
        padding: 10px 15px;
        max-width: 49%;
    }
    .list-sites-fon {
        padding: 30px 20px;
    }
    .count-box {
        min-width: 80px;
        font-size: 42px;
        line-height: 50px;
    }
    h2 {
        font-size: 28px;
        line-height: 33px;
    }
    .when-choosing__info p {
        margin-top: 20px;
        margin-bottom: 20px;
        color: #6B6B6B;
    }
    .when-choosing-box {
        width: calc(33.333333% - 15px);
        padding: 40px 30px;
    }
    .comments-box {
        margin-top: 30px;
        gap: 25px;
        padding: 25px;
    }
    .comments-name {
        margin-top: 15px;
    }
    .write-comment {
        padding: 40px 40px;
        margin-top: 30px;
    }
    .comment-input input {
        padding: 13px 20px;
        height: 54px;
    }
    .write-comment-form {
        max-width: 520px;
        margin-top: 20px;
    }
    .comment-textarea {
        margin-top: 20px;
    }
    .write-comment:after {
        top: -67px;
        max-width: 710px;
        height: 555px;
    }


}
@media (max-width: 1020px){
    .best-sites-sec {
        background: #6A6BF8;
    }
    .best-sites-sec:before{
        display: none;
    }
    .best-sites-cnt {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .best-sites-content strong {
        font-size: 18px;
        line-height: 23px;
    }
    .best-sites-info h1 {
        max-width: 500px;
        width: 100%;
    }
    .different-systems__flex {
        gap: 10px;
    }
    .different-systems__box {
        max-width: 49%;
    }
    .list-sites-fon p {
        margin-top: 15px;
    }
    .list-sites-box {
        flex-wrap: wrap;
    }
    .list-sites-logo {
        max-width: 150px;
        height: 120px;
        padding: 8px;
    }
    .when-choosing-wrap {
        gap: 28px;
    }
    .when-choosing-box {
        width: calc(50% - 25px);
        padding: 40px 30px;
    }
    .comments-sec {
        margin-top: 60px;
    }
    .comments-box {
        margin-top: 25px;
        gap: 20px;
        padding: 20px;
    }
    h2 {
        font-size: 26px;
        line-height: 30px;
    }
    .write-comment {
        padding: 30px;
    }
    footer {
        margin-top: 26px;
    }
    .footer__main {
        padding: 15px 0;
    }

}
@media (max-width: 760px){
    .best-sites-content ul li {
        margin-top: 2px;
    }
    .best-sites-content {
        padding-left: 20px;
    }
    .best-sites-photo {
        max-width: 345px;
    }
    .different-systems__box {
        max-width: 510px;
    }
    .count-box {
        min-width: 75px;
        font-size: 36px;
        line-height: 35px;
    }
    .when-choosing-wrap {
        gap: 15px;
    }
    .when-choosing-box {
        width: calc(50% - 8px);
        padding: 30px 20px;
    }
    .comments-box {
        margin-top: 20px;
        gap: 15px;
        padding: 15px;
    }
    .write-comment:after{
        display: none;
    }
    .checkbox-form {
        margin: 15px 0;
    }
    .comment-textarea textarea {
        padding: 20px 20px;
        height: 125px;
    }
    .write-comment-flex {
        gap: 14px;
    }
    .write-comment {
        padding: 25px;
    }

}
@media (max-width: 570px){
    h1 {
        font-size: 34px;
        line-height: 38px;
    }
    .best-sites-content {
        padding-left: 10px;
    }
    .best-sites-content ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .different-systems__name strong {
        font-size: 18px;
        line-height: 24px;
    }
    .list-sites-fon {
        padding: 25px 15px;
    }
    .list-sites-cnt {
        gap: 10px;
        flex-wrap: wrap;
    }
    h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .when-choosing-box {
        width: 100%;
        padding: 30px 20px;
    }

    .write-comment-flex {
        flex-direction: column;
    }
    .write-comment {
        padding: 25px 20px;
    }
    .checkbox-form label small {
        font-size: 12px;
        line-height: 14px;
    }
    .btn {
        max-width: 150px;
        padding: 15px 20px;
    }
    .footer__main {
        padding: 15px 0;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

/* Template: list-sites hover, tags section */
.list-sites-box:hover {
    cursor: pointer;
}
.tags {
    margin-top: 40px;
}
.tags ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tags ul li {
    background: linear-gradient(135deg, #8488ee 0%, #6b6fd6 100%);
    padding: 10px 18px;
    border-radius: 999px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--cs2-shadow-sm);
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition);
}
.tags ul li:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--cs2-shadow);
    background: linear-gradient(135deg, #6b6fd6 0%, #5a5ec4 100%);
}
/* Кнопка «Загрузить еще» */
.load_more_commments {
    background: linear-gradient(135deg, #6A6BF8 0%, #5a5be8 100%);
    border: none;
    padding: 14px 32px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    display: block;
    margin: 32px auto 0;
    cursor: pointer;
    box-shadow: var(--cs2-shadow-sm);
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition);
}
.load_more_commments:hover {
    transform: translateY(-2px);
    box-shadow: var(--cs2-shadow);
    background: linear-gradient(135deg, #5a5be8 0%, #4a4bd8 100%);
}
.container_iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* ========== HOMEPAGE VISUAL POLISH ========== */

/* Hero gradient text accent */
.best-sites-info h1 {
    background: linear-gradient(135deg, #fff 0%, #c5d0ff 60%, #6A6BF8 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cs2GradientShift 6s ease infinite;
}

/* Hero "Содержание" block — subtle glow border */
.best-sites-content {
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #6A6BF8, #B746FF, #466FFF) 1;
    position: relative;
}

/* Feature cards (different-systems) — shimmer overlay */
.different-systems__box {
    position: relative;
    overflow: hidden;
}
.different-systems__box::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    animation: cs2Shimmer 3s ease-in-out infinite;
    pointer-events: none;
}
.different-systems__box:nth-child(2)::after { animation-delay: 0.5s; }
.different-systems__box:nth-child(3)::after { animation-delay: 1s; }

/* Staggered entrance for feature cards */
.different-systems__box:nth-child(1) { animation: cs2ScaleIn 0.5s ease 0.1s both; }
.different-systems__box:nth-child(2) { animation: cs2ScaleIn 0.5s ease 0.25s both; }
.different-systems__box:nth-child(3) { animation: cs2ScaleIn 0.5s ease 0.4s both; }

/* List items — staggered fade + left border accent on hover */
.list-sites-box {
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), background var(--cs2-transition), border-color 0.3s ease;
}
.list-sites-box:hover {
    border-left-color: #6A6BF8;
}
/* Gradient number styling */
.count-box {
    background: linear-gradient(180deg, #6A6BF8 0%, #B746FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* List items staggered animation */
.list-sites-box:nth-child(1) { animation: cs2FadeInUp 0.4s ease 0.05s both; }
.list-sites-box:nth-child(2) { animation: cs2FadeInUp 0.4s ease 0.1s both; }
.list-sites-box:nth-child(3) { animation: cs2FadeInUp 0.4s ease 0.15s both; }
.list-sites-box:nth-child(4) { animation: cs2FadeInUp 0.4s ease 0.2s both; }
.list-sites-box:nth-child(5) { animation: cs2FadeInUp 0.4s ease 0.25s both; }
.list-sites-box:nth-child(6) { animation: cs2FadeInUp 0.4s ease 0.3s both; }
.list-sites-box:nth-child(7) { animation: cs2FadeInUp 0.4s ease 0.35s both; }
.list-sites-box:nth-child(8) { animation: cs2FadeInUp 0.4s ease 0.4s both; }
.list-sites-box:nth-child(9) { animation: cs2FadeInUp 0.4s ease 0.45s both; }
.list-sites-box:nth-child(10) { animation: cs2FadeInUp 0.4s ease 0.5s both; }

/* When-choosing cards — gradient border on hover + scale */
.when-choosing-box {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), border-color 0.3s ease;
}
.when-choosing-box:hover {
    border-color: rgba(106, 107, 248, 0.3);
}
.when-choosing-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #6A6BF8, #B746FF, #466FFF);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.when-choosing-box:hover::before {
    opacity: 1;
}
/* Stagger when-choosing cards */
.when-choosing-box:nth-child(1) { animation: cs2FadeInUp 0.4s ease 0.05s both; }
.when-choosing-box:nth-child(2) { animation: cs2FadeInUp 0.4s ease 0.1s both; }
.when-choosing-box:nth-child(3) { animation: cs2FadeInUp 0.4s ease 0.15s both; }
.when-choosing-box:nth-child(4) { animation: cs2FadeInUp 0.4s ease 0.2s both; }
.when-choosing-box:nth-child(5) { animation: cs2FadeInUp 0.4s ease 0.25s both; }
.when-choosing-box:nth-child(6) { animation: cs2FadeInUp 0.4s ease 0.3s both; }
.when-choosing-box:nth-child(7) { animation: cs2FadeInUp 0.4s ease 0.35s both; }
.when-choosing-box:nth-child(8) { animation: cs2FadeInUp 0.4s ease 0.4s both; }

/* When-choosing card icon hover bounce */
.when-choosing-box img {
    transition: transform 0.35s ease;
}
.when-choosing-box:hover img {
    transform: scale(1.15) rotate(-5deg);
}

/* Comments section — subtle gradient bg */
.comments-sec {
    position: relative;
}
.comments-sec::before {
    content: '';
    position: absolute;
    top: -60px; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(106, 107, 248, 0.03));
    pointer-events: none;
}
.comments-box {
    position: relative;
    border-left: 3px solid transparent;
    transition: box-shadow var(--cs2-transition), border-color 0.3s ease, transform 0.3s ease;
}
.comments-box:hover {
    border-left-color: #6A6BF8;
    transform: translateX(4px);
}

/* Write comment CTA — animated gradient bg */
.write-comment {
    background-size: 200% 200%;
    animation: cs2GradientShift 8s ease infinite;
}

/* Submit button pulse */
.write-comment .btn {
    animation: cs2Pulse 2.5s ease infinite;
}
.write-comment .btn:hover {
    animation: none;
}

/* Tags — smooth colour pop on hover */
.tags ul li {
    position: relative;
    overflow: hidden;
}
.tags ul li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.tags ul li:hover::after {
    opacity: 1;
}

/* Footer subtle top border gradient */
footer {
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(106,107,248,0.3), transparent) 1;
}

/* Smooth scroll anchor offset for sticky header */
[id] {
    scroll-margin-top: 70px;
}

/* Logo badges in list-sites — subtle glow on hover */
.list-sites-logo {
    transition: transform var(--cs2-transition), box-shadow 0.3s ease;
}
.list-sites-box:hover .list-sites-logo {
    box-shadow: 0 0 20px rgba(106, 107, 248, 0.25);
}

/* Rating/meta badges — pop on hover */
.list-sites-cnt div {
    transition: transform var(--cs2-transition), box-shadow var(--cs2-transition), filter 0.3s ease;
}
.list-sites-box:hover .list-sites-cnt div {
    filter: brightness(1.08);
}

/* H2 — subtle underline decoration */
.list-sites-fon h2,
.when-choosing__info h2,
.comments-sec h2 {
    position: relative;
    display: inline-block;
}
.list-sites-fon h2::after,
.when-choosing__info h2::after,
.comments-sec h2::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 60px; height: 3px;
    background: linear-gradient(90deg, #6A6BF8, #B746FF);
    border-radius: 2px;
}
.when-choosing__info h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Brands page styles removed */
/* ========== Review Page (rv) — Light Theme ========== */

/* Override dark bp wrapper for review pages */
.bp.rv {
    background: #f5f7fb;
    color: #1a1a2e;
}

.rv-hero {
    position: relative;
    padding: 32px 0 40px;
    overflow: hidden;
    background: linear-gradient(160deg, #e8f0fe 0%, #f0ecff 40%, #ffe8f0 100%);
    min-height: auto;
}
.rv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(124,92,252,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(0,212,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.rv-hero__bg {
    display: none;
}
.rv-hero__overlay {
    display: none;
}
.rv-hero__inner {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 860px;
}
/* Override for ForceDrop-style reviews with flex layout */
.rv-fd .rv-hero__inner {
    max-width: 1200px;
}
.rv-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #8b95a8;
    margin-bottom: 16px;
}
.rv-breadcrumbs a {
    color: #7c5cfc;
    text-decoration: none;
    transition: color 0.2s;
}
.rv-breadcrumbs a:hover {
    color: #1a1a2e;
}
.rv-breadcrumbs span {
    color: #8b95a8;
}
.rv-hero__title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.rv-hero__sub {
    font-size: 16px;
    color: #4a5568;
    max-width: 560px;
    line-height: 1.65;
    margin: 0;
}

/* Review Content */
.rv-content {
    padding: 40px 0 0;
}
.rv-content__glass {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0,29,71,0.07);
}
.rv-article {
    max-width: 820px;
    margin: 0 auto;
}
.rv-article h2,
.rv-article h3,
.rv-article h4 {
    color: #1a1a2e;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.rv-article h2:first-child,
.rv-article h3:first-child {
    margin-top: 0;
}
.rv-article h2 {
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8f0fe;
}
.rv-article h3 {
    font-size: 22px;
}
.rv-article h4 {
    font-size: 18px;
}
.rv-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 20px;
}
.rv-article img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0,29,71,0.08);
}
.rv-article ul,
.rv-article ol {
    color: #4a5568;
    padding-left: 24px;
    margin: 0 0 20px;
    line-height: 1.8;
}
.rv-article li {
    margin-bottom: 8px;
}
.rv-article li::marker {
    color: #7c5cfc;
}
.rv-article a {
    color: #7c5cfc;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.rv-article a:hover {
    color: #1a1a2e;
}
.rv-article blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0ecff 0%, #e8f0fe 100%);
    border-left: 4px solid #7c5cfc;
    border-radius: 0 16px 16px 0;
    color: #1a1a2e;
    font-style: italic;
}
.rv-article strong {
    color: #1a1a2e;
    font-weight: 600;
}
.rv-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
}
.rv-article table th,
.rv-article table td {
    padding: 12px 16px;
    border: 1px solid #e8f0fe;
    text-align: left;
    color: #4a5568;
}
.rv-article table th {
    background: linear-gradient(135deg, #7c5cfc 0%, #4a2d8e 100%);
    color: #fff;
    font-weight: 600;
    border-color: rgba(124,92,252,0.3);
}

/* Review CTA */
.rv .bp-cta {
    padding: 0 0 60px;
    background: transparent;
}
.rv .bp-cta__box {
    background: linear-gradient(135deg, #1a1a6e 0%, #4a2d8e 50%, #7c5cfc 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}
.rv .bp-cta__box h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}
.rv .bp-cta__box p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin: 0 0 24px;
}
.rv .bp-btn--glow {
    background: #fff;
    color: #7c5cfc;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.rv .bp-btn--glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* Review Footer Override — keep it dark */
.rv + .site-footer,
.rv ~ .site-footer {
    background: #1a1a2e;
}

/* Review responsive */
@media (max-width: 768px) {
    .rv-hero {
        padding: 80px 0 50px;
    }
    .rv-hero__title {
        font-size: 28px;
    }
    .rv-hero__sub {
        font-size: 15px;
    }
    .rv-content__glass {
        padding: 32px 20px;
        border-radius: 20px 20px 0 0;
    }
    .rv-article h2 {
        font-size: 22px;
    }
    .rv-article h3 {
        font-size: 19px;
    }
    .rv .bp-cta__box {
        padding: 32px 20px;
    }
}
@media (max-width: 480px) {
    .rv-hero {
        padding: 70px 0 44px;
    }
    .rv-hero__inner {
        padding: 0 16px;
    }
    .rv-hero__title {
        font-size: 24px;
    }
    .rv-content__glass {
        padding: 24px 16px;
        border-radius: 16px 16px 0 0;
    }
}

/* ========== LIST-SITES BUTTONS ========== */
.list-sites-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}
.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.ls-btn:hover {
    transform: translateY(-2px);
}
.ls-btn--site {
    background: linear-gradient(135deg, #6A6BF8, #4a4bd8);
    color: #fff;
    box-shadow: 0 4px 15px rgba(106, 107, 248, 0.35);
}
.ls-btn--site:hover {
    box-shadow: 0 8px 25px rgba(106, 107, 248, 0.5);
    background: linear-gradient(135deg, #5a5be8, #3a3cc8);
}
.ls-btn--review {
    background: #fff;
    color: #6A6BF8;
    border: 2px solid #6A6BF8;
    box-shadow: 0 2px 10px rgba(106, 107, 248, 0.1);
}
.ls-btn--review:hover {
    background: #6A6BF8;
    color: #fff;
    box-shadow: 0 8px 20px rgba(106, 107, 248, 0.35);
}
.ls-btn svg {
    flex-shrink: 0;
}
@media (max-width: 570px) {
    .list-sites-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    .ls-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ========== REVIEW PAGE ANIMATIONS ========== */
.rv-animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv-animate-in.rv-visible {
    opacity: 1;
    transform: translateY(0);
}
.rv-animate-delay-1 { transition-delay: 0.15s; }
.rv-animate-delay-2 { transition-delay: 0.3s; }
.rv-animate-delay-3 { transition-delay: 0.45s; }

/* Review Hero badges */
.rv-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.rv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.rv-badge--verified {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}
.rv-badge--year {
    background: rgba(124, 92, 252, 0.12);
    color: #7c5cfc;
}
.rv-badge--rating {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

/* ========== FORCEDROP REVIEW TEMPLATE ========== */
.rv-fd-hero {
    background: linear-gradient(160deg, #0f0c29 0%, #1a1a4e 40%, #24243e 100%) !important;
    padding: 40px 0 60px !important;
    min-height: auto;
    position: relative;
    overflow: hidden;
}
.rv-fd-hero .rv-breadcrumbs a { color: #a78bfa; }
.rv-fd-hero .rv-breadcrumbs span { color: rgba(255,255,255,0.5); }
.rv-fd-hero .rv-hero__title {
    color: #fff !important;
    font-size: 44px;
}
.rv-fd-hero .rv-hero__sub {
    color: rgba(255,255,255,0.7);
}
.rv-fd-hero .rv-badge--verified { background: rgba(16,185,129,0.2); }
.rv-fd-hero .rv-badge--year { background: rgba(167,139,250,0.2); color: #c4b5fd; }
.rv-fd-hero .rv-badge--rating { background: rgba(245,158,11,0.2); }
.rv-fd-hero__flex {
    display: flex;
    align-items: center;
    gap: 48px;
}
.rv-fd-hero__text { flex: 1; }
.rv-fd-hero__visual { flex-shrink: 0; }
.rv-fd-hero__logo-card {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: cs2Float 5s ease-in-out infinite;
}
.rv-fd-hero__logo-img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}
.rv-fd-hero__actions { margin-top: 28px; }
.rv-fd-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(167,139,250,0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(99,102,241,0.3), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(236,72,153,0.3), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(139,92,246,0.4), transparent),
        radial-gradient(3px 3px at 10% 80%, rgba(99,102,241,0.2), transparent),
        radial-gradient(2px 2px at 90% 10%, rgba(167,139,250,0.3), transparent);
    animation: cs2GradientShift 12s ease infinite;
    background-size: 200% 200%;
}

/* ForceDrop buttons */
.rv-fd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}
.rv-fd-btn--primary {
    background: linear-gradient(135deg, #7c5cfc, #6366f1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124,92,252,0.4);
}
.rv-fd-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124,92,252,0.5);
}
.rv-fd-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.rv-fd-btn--outline:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

/* ForceDrop Stats */
.rv-fd-stats {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}
.rv-fd-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rv-fd-stats__card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,29,71,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.rv-fd-stats__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,29,71,0.12);
}
.rv-fd-stats__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.rv-fd-stats__value {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}
.rv-fd-stats__label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* ForceDrop Features */
.rv-fd-features {
    padding: 60px 0;
}
.rv-fd-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}
.rv-fd-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv-fd-feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,29,71,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid rgba(0,0,0,0.04);
}
.rv-fd-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,29,71,0.12);
}
.rv-fd-feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.rv-fd-feature-card__icon--purple { background: #f0ecff; color: #7c5cfc; }
.rv-fd-feature-card__icon--green { background: #ecfdf5; color: #10b981; }
.rv-fd-feature-card__icon--pink { background: #fdf2f8; color: #ec4899; }
.rv-fd-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}
.rv-fd-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ForceDrop Skins */
.rv-fd-skins {
    padding: 20px 0 60px;
}
.rv-fd-skins__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rv-fd-skin-card {
    background: linear-gradient(145deg, #1a1a2e, #2d2d5e);
    border-radius: 20px;
    padding: 24px 20px 20px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid rgba(124,92,252,0.15);
}
.rv-fd-skin-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 50px rgba(124,92,252,0.25);
}
.rv-fd-skin-card img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}
.rv-fd-skin-card:hover img {
    transform: scale(1.1);
}
.rv-fd-skin-card__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px;
}
.rv-fd-skin-card__rarity {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rv-fd-skin-card__rarity--covert {
    background: rgba(235,75,75,0.2);
    color: #eb4b4b;
}
.rv-fd-skin-card__rarity--gold {
    background: rgba(255,215,0,0.15);
    color: #ffd700;
}

/* ForceDrop Cases */
.rv-fd-cases {
    padding: 20px 0 60px;
}
.rv-fd-cases__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.rv-fd-case-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,29,71,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.rv-fd-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,29,71,0.1);
}
.rv-fd-case-card img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}
.rv-fd-case-card span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
}

/* ForceDrop CTA */
.rv-fd-cta {
    background: linear-gradient(135deg, #0f0c29, #1a1a4e, #302b63) !important;
}
.rv-fd-cta__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

/* ForceDrop Responsive */
@media (max-width: 900px) {
    .rv-fd-hero__flex { flex-direction: column; gap: 30px; }
    .rv-fd-hero__visual { order: -1; }
    .rv-fd-hero__logo-card { width: 140px; height: 140px; }
    .rv-fd-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .rv-fd-features__grid { grid-template-columns: 1fr; }
    .rv-fd-skins__grid { grid-template-columns: repeat(2, 1fr); }
    .rv-fd-cases__grid { grid-template-columns: repeat(3, 1fr); }
    .rv-fd-hero .rv-hero__title { font-size: 32px; }
}
@media (max-width: 480px) {
    .rv-fd-stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .rv-fd-stats__card { padding: 20px 16px; }
    .rv-fd-skins__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .rv-fd-cases__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rv-fd-cta__buttons { flex-direction: column; align-items: center; }
    .rv-fd-hero .rv-hero__title { font-size: 26px; }
}

/* ================================================================
   BEST CASES PAGE (.bc)
   ================================================================ */

/* --- Page wrapper --- */
.bc {
    background: #f5f7fb;
    color: #1a1a2e;
    overflow: hidden;
}
.bc h2, .bc h3, .bc h4 {
    color: #0a1628;
}
.bc p {
    color: #4a5568;
}

/* --- Section head --- */
.bc-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.bc-section-head h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #0a1628 0%, #466FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bc-section-head p {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6575;
}

/* --- Buttons --- */
.bc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.bc-btn--primary {
    background: linear-gradient(135deg, #466FFF 0%, #6A6BF8 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(70, 111, 255, 0.35);
}
.bc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(70, 111, 255, 0.45);
}
.bc-btn--outline {
    background: transparent;
    color: #466FFF;
    border: 2px solid #466FFF;
}
.bc-btn--outline:hover {
    background: #466FFF;
    color: #fff;
    transform: translateY(-2px);
}
.bc-btn--lg {
    padding: 18px 40px;
    font-size: 17px;
}

/* ===== HERO ===== */
.bc-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fce4ec 50%, #ede7f6 100%);
    overflow: hidden;
}
.bc-hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.bc-hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(80px);
}
.bc-hero__circle--1 {
    width: 500px; height: 500px;
    background: #466FFF;
    top: -150px; right: -100px;
    animation: cs2Float 8s ease-in-out infinite;
}
.bc-hero__circle--2 {
    width: 400px; height: 400px;
    background: #FD1BAF;
    bottom: -100px; left: -100px;
    animation: cs2Float 10s ease-in-out infinite 2s;
}
.bc-hero__circle--3 {
    width: 300px; height: 300px;
    background: #B746FF;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: cs2Float 12s ease-in-out infinite 4s;
}
.bc-hero__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.bc-hero__text {
    flex: 1;
    animation: cs2FadeInUp 0.7s ease both;
}
.bc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
}
.bc-hero__title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0a1628;
    margin-bottom: 20px;
}
.bc-hero__title span {
    background: linear-gradient(135deg, #466FFF 0%, #B746FF 50%, #FD1BAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bc-hero__sub {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 540px;
    margin-bottom: 28px;
}
.bc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.bc-hero__visual {
    flex: 0 0 380px;
    animation: cs2SlideInRight 0.8s ease 0.3s both;
}
.bc-hero__visual img {
    width: 100%;
    height: auto;
    animation: cs2Float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(70, 111, 255, 0.2));
}

/* ===== INTRO ===== */
.bc-intro {
    padding: 60px 0 40px;
}
.bc-intro__card {
    display: flex;
    gap: 24px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 29, 71, 0.06);
}
.bc-intro__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    border-radius: 14px;
}
.bc-intro__body p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}
.bc-goal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bc-goal-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #2d3748;
    padding: 10px 16px;
    background: #f7f9fc;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bc-goal-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(70, 111, 255, 0.08);
}
.bc-goal-list li svg {
    flex-shrink: 0;
}

/* ===== WHERE TO OPEN ===== */
.bc-where {
    padding: 60px 0;
}
.bc-criteria-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.bc-criteria-item {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 2px 16px rgba(0, 29, 71, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.bc-criteria-item.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.bc-criteria-item:nth-child(1).bc-visible { transition-delay: 0s; }
.bc-criteria-item:nth-child(2).bc-visible { transition-delay: 0.08s; }
.bc-criteria-item:nth-child(3).bc-visible { transition-delay: 0.16s; }
.bc-criteria-item:nth-child(4).bc-visible { transition-delay: 0.24s; }
.bc-criteria-item:nth-child(5).bc-visible { transition-delay: 0.32s; }
.bc-criteria-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(70, 111, 255, 0.12);
}
.bc-criteria-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #466FFF, #6A6BF8);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.bc-criteria-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.bc-criteria-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ===== CRITERIA DETAIL ===== */
.bc-criteria-detail {
    padding: 60px 0;
}
.bc-checklist {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bc-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0, 29, 71, 0.05);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.bc-check-item.bc-visible {
    opacity: 1;
    transform: translateX(0);
}
.bc-check-item:nth-child(1).bc-visible { transition-delay: 0s; }
.bc-check-item:nth-child(2).bc-visible { transition-delay: 0.08s; }
.bc-check-item:nth-child(3).bc-visible { transition-delay: 0.16s; }
.bc-check-item:nth-child(4).bc-visible { transition-delay: 0.24s; }
.bc-check-item:nth-child(5).bc-visible { transition-delay: 0.32s; }
.bc-check-item:hover {
    box-shadow: 0 6px 24px rgba(70, 111, 255, 0.1);
}
.bc-check-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #eef3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bc-check-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}
.bc-check-item p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

/* ===== CATEGORIES ===== */
.bc-categories {
    padding: 80px 0;
}
.bc-cat {
    background: #fff;
    border-radius: 24px;
    padding: 48px 44px;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(0, 29, 71, 0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.bc-cat.bc-visible {
    opacity: 1;
    transform: translateY(0);
}
.bc-cat__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.bc-cat__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bc-cat__header--knife .bc-cat__icon {
    background: linear-gradient(135deg, #eef3ff, #dce6ff);
    color: #466FFF;
}
.bc-cat__header--glove .bc-cat__icon {
    background: linear-gradient(135deg, #f3eaff, #e8d5ff);
    color: #B746FF;
}
.bc-cat__header--roi .bc-cat__icon {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #27760F;
}
.bc-cat__header--cheap .bc-cat__icon {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
}
.bc-cat__header--premium .bc-cat__icon {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c2185b;
}
.bc-cat__header h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.bc-cat__desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 800px;
}

/* --- Skin card gallery --- */
.bc-cat__gallery {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}
.bc-cat__gallery--6 {
    grid-template-columns: repeat(6, 1fr);
}
.bc-cat__gallery--8 {
    grid-template-columns: repeat(4, 1fr);
}
.bc-skin-card {
    background: #f7f9fc;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.bc-skin-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 36px rgba(70, 111, 255, 0.12);
    border-color: rgba(70, 111, 255, 0.15);
}
.bc-skin-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.bc-skin-card:hover img {
    transform: scale(1.08);
}
.bc-skin-card span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.3;
}

/* --- Detail blocks --- */
.bc-cat__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.bc-detail-block {
    background: #f7f9fc;
    border-radius: 16px;
    padding: 24px;
}
.bc-detail-block--warn {
    background: linear-gradient(135deg, #fff8e1, #fff3e0);
    border: 1px solid rgba(255, 152, 0, 0.15);
}
.bc-detail-block h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.bc-detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bc-detail-block li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 4px;
}
.bc-detail-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #466FFF;
}
.bc-detail-block--warn li::before {
    background: #ff9800;
}
.bc-detail-block p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== ROI SHOWCASE ===== */
.bc-roi-showcase {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    align-items: flex-start;
}
.bc-roi-case {
    flex: 0 0 200px;
    text-align: center;
    background: linear-gradient(135deg, #eef3ff, #f0f4ff);
    border-radius: 20px;
    padding: 24px 20px;
    position: sticky;
    top: 100px;
}
.bc-roi-case img {
    width: 140px;
    height: auto;
    margin-bottom: 12px;
    animation: cs2Float 4s ease-in-out infinite;
}
.bc-roi-case span {
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
}
.bc-roi-items {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.bc-roi-item {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bc-roi-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 29, 71, 0.08);
}
.bc-roi-item img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    margin-bottom: 6px;
}
.bc-roi-item span {
    font-size: 10px;
    font-weight: 600;
    color: #5a6575;
    line-height: 1.2;
    display: block;
}

/* ===== GOALS ===== */
.bc-goals {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #fce4ec 100%);
}
.bc-goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.bc-goal-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 29, 71, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border-top: 3px solid transparent;
}
.bc-goal-card.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.bc-goal-card:nth-child(1).bc-visible { transition-delay: 0s; }
.bc-goal-card:nth-child(2).bc-visible { transition-delay: 0.1s; }
.bc-goal-card:nth-child(3).bc-visible { transition-delay: 0.2s; }
.bc-goal-card:nth-child(4).bc-visible { transition-delay: 0.3s; }
.bc-goal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70, 111, 255, 0.12);
}
.bc-goal-card--knife { border-top-color: #466FFF; }
.bc-goal-card--glove { border-top-color: #B746FF; }
.bc-goal-card--safe { border-top-color: #27760F; }
.bc-goal-card--fun { border-top-color: #FD1BAF; }
.bc-goal-card__icon {
    margin-bottom: 16px;
}
.bc-goal-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
.bc-goal-card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.bc-goal-tip {
    font-size: 13px !important;
    color: #718096 !important;
    font-style: italic;
    padding: 8px 12px;
    background: #f7f9fc;
    border-radius: 10px;
    margin-top: 8px;
}

/* ===== DAILY CASES ===== */
.bc-daily {
    padding: 80px 0;
}
.bc-daily-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.bc-daily-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 29, 71, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.bc-daily-card.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.bc-daily-card:nth-child(1).bc-visible { transition-delay: 0s; }
.bc-daily-card:nth-child(2).bc-visible { transition-delay: 0.12s; }
.bc-daily-card:nth-child(3).bc-visible { transition-delay: 0.24s; }
.bc-daily-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70, 111, 255, 0.12);
}
.bc-daily-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #fff;
}
.bc-daily-card__badge--purple {
    background: linear-gradient(135deg, #9c27b0, #B746FF);
}
.bc-daily-card__badge--green {
    background: linear-gradient(135deg, #27760F, #4caf50);
}
.bc-daily-card > img {
    display: block;
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}
.bc-daily-card:hover > img {
    transform: scale(1.08) rotate(2deg);
}
.bc-daily-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
}
.bc-daily-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bc-daily-card li {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    padding: 6px 0;
    border-bottom: 1px solid #f0f3f8;
}
.bc-daily-card li:last-child {
    border-bottom: none;
}

/* ===== STEPS ===== */
.bc-guide {
    padding: 80px 0;
    background: #fff;
}
.bc-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.bc-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #466FFF, #B746FF, #FD1BAF);
    border-radius: 2px;
}
.bc-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.bc-step.bc-visible {
    opacity: 1;
    transform: translateX(0);
}
.bc-step:nth-child(1).bc-visible { transition-delay: 0s; }
.bc-step:nth-child(2).bc-visible { transition-delay: 0.1s; }
.bc-step:nth-child(3).bc-visible { transition-delay: 0.2s; }
.bc-step:nth-child(4).bc-visible { transition-delay: 0.3s; }
.bc-step:nth-child(5).bc-visible { transition-delay: 0.4s; }
.bc-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #466FFF, #6A6BF8);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(70, 111, 255, 0.3);
    position: relative;
    z-index: 1;
}
.bc-step__body h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.bc-step__body p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROVABLY FAIR ===== */
.bc-provably {
    padding: 60px 0;
}
.bc-provably__card {
    display: flex;
    gap: 32px;
    background: linear-gradient(135deg, #eef3ff, #f0f7ff);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(70, 111, 255, 0.1);
}
.bc-provably__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(70, 111, 255, 0.1);
}
.bc-provably__body h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}
.bc-provably__body > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.bc-provably__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.bc-provably__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
}
.bc-provably__warn {
    font-size: 14px !important;
    color: #c62828 !important;
    font-weight: 600;
    padding: 10px 16px;
    background: #fff5f5;
    border-radius: 10px;
    border-left: 3px solid #c62828;
    margin: 0;
}

/* ===== MISTAKES ===== */
.bc-mistakes {
    padding: 80px 0;
    background: #fff;
}
.bc-mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.bc-mistake-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff5f5;
    border-radius: 14px;
    padding: 18px 22px;
    border: 1px solid rgba(198, 40, 40, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(12px);
}
.bc-mistake-item.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.bc-mistake-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.08);
}
.bc-mistake-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef5350, #c62828);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bc-mistake-item p {
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    margin: 0;
}

/* ===== STRATEGIES ===== */
.bc-strategies {
    padding: 80px 0;
}
.bc-strat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bc-strat-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 29, 71, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.bc-strat-card.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.bc-strat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(70, 111, 255, 0.12);
}
.bc-strat-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3ff;
    border-radius: 16px;
}
.bc-strat-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.bc-strat-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* ===== FAQ ===== */
.bc-faq {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
}
.bc-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.bc-faq__item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.bc-faq__item:hover {
    border-color: #c5d0ff;
    box-shadow: 0 4px 20px rgba(70, 111, 255, 0.08);
}
.bc-faq__item.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bc-faq__item--open {
    border-color: #466FFF;
    box-shadow: 0 6px 24px rgba(70, 111, 255, 0.12);
}
.bc-faq__head {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
    transition: color 0.2s ease;
}
.bc-faq__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #466FFF 0%, #B746FF 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.bc-faq__question {
    flex: 1;
}
.bc-faq__head:hover {
    color: #466FFF;
}
.bc-faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #9ca3af;
}
.bc-faq__item--open .bc-faq__chevron {
    transform: rotate(180deg);
    color: #466FFF;
}
.bc-faq__panel {
    overflow: hidden;
}
.bc-faq__panel p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6575;
    padding: 0 22px 18px 68px;
    margin: 0;
}

/* ===== CONCLUSION ===== */
.bc-conclusion {
    padding: 80px 0;
}
.bc-conclusion__card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 44px;
    text-align: left;
    color: #1a1a2e;
    border: 1px solid #e8ecf4;
    box-shadow: 0 8px 40px rgba(70, 111, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.bc-conclusion__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #466FFF, #B746FF);
    border-radius: 24px 24px 0 0;
}
.bc-conclusion__card h2 {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #466FFF, #B746FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bc-conclusion__card > p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}
.bc-conclusion__card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.bc-conclusion__card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #1a1a2e;
    background: #f5f7ff;
    border-radius: 12px;
    border: 1px solid #e8ecf4;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bc-conclusion__card li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(70, 111, 255, 0.1);
}
.bc-conclusion__card li svg {
    flex-shrink: 0;
}
.bc-conclusion__card li svg path, .bc-conclusion__card li svg polyline {
    stroke: #466FFF;
}
.bc-conclusion__final {
    font-size: 15px;
    color: #777 !important;
    max-width: 600px;
    margin: 0 0 24px;
    font-style: italic;
    padding: 16px 20px;
    background: #fafbff;
    border-left: 3px solid #466FFF;
    border-radius: 0 8px 8px 0;
}
.bc-conclusion .bc-btn--primary {
    background: linear-gradient(135deg, #466FFF, #6A6BF8);
    color: #fff;
    box-shadow: 0 4px 20px rgba(70, 111, 255, 0.3);
}
.bc-conclusion .bc-btn--primary:hover {
    background: linear-gradient(135deg, #3a5ee6, #5a5be8);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(70, 111, 255, 0.4);
}

/* ===== TABLE OF CONTENTS ===== */
.bc-toc {
    padding: 0 0 40px;
}
.bc-toc__card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(70, 111, 255, 0.12);
    box-shadow: 0 4px 24px rgba(70, 111, 255, 0.06);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}
.bc-toc__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #466FFF, #6A6BF8, #B746FF);
    border-radius: 16px 16px 0 0;
}
.bc-toc__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}
.bc-toc__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.bc-toc__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #f8f9fc;
    border: 1px solid transparent;
}
.bc-toc__link:hover {
    background: rgba(70, 111, 255, 0.06);
    border-color: rgba(70, 111, 255, 0.15);
    color: #466FFF;
    transform: translateY(-1px);
}
.bc-toc__num {
    font-size: 12px;
    font-weight: 700;
    color: #466FFF;
    background: rgba(70, 111, 255, 0.08);
    border-radius: 6px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bc-toc__text {
    line-height: 1.3;
}

@media (max-width: 768px) {
    .bc-toc__links {
        grid-template-columns: 1fr;
    }
    .bc-toc__card {
        padding: 20px;
    }
}

/* ===== SCROLL TO TOP ===== */
.bc-scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #466FFF, #6A6BF8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(70, 111, 255, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}
.bc-scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bc-scroll-top:hover {
    background: linear-gradient(135deg, #3a5ee6, #5a5be8);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(70, 111, 255, 0.45);
}

/* ===== FOOTER OVERRIDE ===== */
.bc + footer {
    background: #0a1628;
    margin-top: 0;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #466FFF, #B746FF, #FD1BAF) 1;
}
.bc + footer p {
    color: #8892a4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .bc-hero__title {
        font-size: 42px;
    }
    .bc-hero__visual {
        flex: 0 0 300px;
    }
    .bc-criteria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bc-cat__gallery--6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .bc-roi-items {
        grid-template-columns: repeat(4, 1fr);
    }
    .bc-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bc-cat {
        padding: 36px 32px;
    }
}
@media (max-width: 900px) {
    .bc-hero__inner {
        flex-direction: column;
        text-align: center;
    }
    .bc-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }
    .bc-hero__actions {
        justify-content: center;
    }
    .bc-hero__visual {
        flex: 0 0 auto;
        max-width: 280px;
    }
    .bc-hero {
        padding: 80px 0 60px;
    }
    .bc-hero__title {
        font-size: 36px;
    }
    .bc-criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bc-cat__gallery--6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .bc-cat__gallery--8 {
        grid-template-columns: repeat(4, 1fr);
    }
    .bc-roi-showcase {
        flex-direction: column;
    }
    .bc-roi-case {
        flex: none;
        position: static;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        width: 100%;
    }
    .bc-roi-case img {
        width: 80px;
    }
    .bc-roi-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .bc-daily-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .bc-strat-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .bc-provably__card {
        flex-direction: column;
        padding: 32px;
    }
    .bc-conclusion__card {
        padding: 40px 28px;
    }
    .bc-conclusion__card ul {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .bc-hero__title {
        font-size: 28px;
    }
    .bc-hero__sub {
        font-size: 15px;
    }
    .bc-section-head h2 {
        font-size: 26px;
    }
    .bc-intro__card {
        flex-direction: column;
        padding: 28px 20px;
    }
    .bc-criteria-grid {
        grid-template-columns: 1fr;
    }
    .bc-cat {
        padding: 28px 20px;
    }
    .bc-cat__header h3 {
        font-size: 20px;
    }
    .bc-cat__gallery--6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .bc-cat__gallery--8 {
        grid-template-columns: repeat(2, 1fr);
    }
    .bc-roi-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .bc-goals-grid {
        grid-template-columns: 1fr;
    }
    .bc-steps::before {
        left: 19px;
    }
    .bc-step__num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .bc-conclusion__card h2 {
        font-size: 24px;
    }
}

/* ================================================================
   FREE CASES PAGE (fc-*)
   ================================================================ */

/* ===== FC HERO ===== */
.fc-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f5f7fb 0%, #eef2ff 50%, #fdf2f8 100%);
    overflow: hidden;
}
.fc-hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.fc-hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
}
.fc-hero__circle--1 { width: 500px; height: 500px; top: -100px; right: -80px; background: #466FFF; }
.fc-hero__circle--2 { width: 400px; height: 400px; bottom: -60px; left: -60px; background: #B746FF; }
.fc-hero__circle--3 { width: 300px; height: 300px; top: 40%; left: 50%; background: #FD1BAF; }
.fc-hero__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.fc-hero__text { flex: 1; }
.fc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(70, 111, 255, 0.1);
    color: #466FFF;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.fc-hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.fc-hero__title span {
    background: linear-gradient(135deg, #466FFF, #B746FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fc-hero__sub {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 28px;
    max-width: 520px;
}
.fc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.fc-hero__visual {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-hero__visual img {
    width: 100%;
    max-width: 320px;
    animation: fc-float 4s ease-in-out infinite;
}
@keyframes fc-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.fc-intro { padding: 0 0 20px; }

/* ===== FREE CASE SHOWCASE + MODAL ROULETTE ===== */
.fc-case { padding: 60px 0 80px; }

/* --- Showcase (big case on page) --- */
.fc-case__showcase {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px 48px;
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-radius: 32px;
    box-shadow: 0 12px 60px rgba(70, 111, 255, 0.12);
    border: 2px solid #e8edff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
}
.fc-case__showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 80px rgba(70, 111, 255, 0.18);
}
.fc-case__glow-bg {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 40%, rgba(70,111,255,0.15), transparent 70%);
    pointer-events: none;
    animation: fc-glow-pulse 3s ease-in-out infinite;
}
@keyframes fc-glow-pulse {
    0%,100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}
.fc-case__float-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.fc-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(70,111,255,0.3);
    border-radius: 50%;
    animation: fc-particle-float 4s ease-in-out infinite;
}
@keyframes fc-particle-float {
    0%,100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.7; }
}
.fc-case__big-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin: 0 auto 24px;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(70,111,255,0.25));
    animation: fc-case-hover 3s ease-in-out infinite;
}
@keyframes fc-case-hover {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}
.fc-case__name {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.fc-case__desc {
    font-size: 15px;
    color: #718096;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}
.fc-case__open-btn {
    font-size: 17px;
    padding: 16px 40px;
    position: relative;
    z-index: 2;
    animation: fc-btn-glow 2s ease-in-out infinite;
}
@keyframes fc-btn-glow {
    0%,100% { box-shadow: 0 4px 20px rgba(70,111,255,0.3); }
    50% { box-shadow: 0 4px 40px rgba(70,111,255,0.6); }
}
.fc-case__open-btn svg { margin-right: 8px; }
.fc-case__disclaimer {
    text-align: center;
    font-size: 13px;
    color: #a0aec0;
    margin-top: 20px;
    line-height: 1.5;
}

/* --- Modal --- */
.fc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.fc-modal--open {
    opacity: 1;
    visibility: visible;
}
.fc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,30,0.85);
    backdrop-filter: blur(8px);
}
.fc-modal__content {
    position: relative;
    z-index: 2;
    width: 96%;
    max-width: 1100px;
    max-height: 92vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #1a1a2e, #16213e);
    border-radius: 28px;
    padding: 40px 32px;
    border: 1px solid rgba(70,111,255,0.3);
    box-shadow: 0 30px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.fc-modal--open .fc-modal__content {
    transform: scale(1) translateY(0);
}
.fc-modal__close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: rgba(255,255,255,0.5);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 5;
}
.fc-modal__close-btn:hover { color: #fff; }
.fc-modal__title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

/* --- Modal Preview Phase --- */
.fc-modal__preview { text-align: center; }
.fc-modal__case-img-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.fc-modal__case-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(70,111,255,0.5));
    animation: fc-case-float 3s ease-in-out infinite;
}
@keyframes fc-case-float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.fc-modal__spin-btn {
    margin: 0 auto 28px;
    font-size: 18px;
    padding: 14px 40px;
    animation: fc-btn-pulse 2s ease-in-out infinite;
}
@keyframes fc-btn-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(70,111,255,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(70,111,255,0); }
}
.fc-cooldown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 28px;
    padding: 14px 30px;
    background: rgba(255,165,0,0.1);
    border: 1px solid rgba(255,165,0,0.3);
    border-radius: 12px;
    color: #ffa500;
    font-size: 16px;
    font-weight: 600;
}
.fc-cooldown__icon {
    font-size: 20px;
}
.fc-modal__drops-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 4px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
}
.fc-modal__drops-count {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}
.fc-modal__drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    max-height: 340px;
    overflow-y: auto;
    padding: 4px;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
}
.fc-modal__drops-grid::-webkit-scrollbar { width: 6px; }
.fc-modal__drops-grid::-webkit-scrollbar-track { background: transparent; }
.fc-modal__drops-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.fc-drop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s, border-color 0.2s;
}
.fc-drop-card:hover {
    transform: scale(1.05);
}
.fc-drop-card--gold { border-color: rgba(255,215,0,0.4); background: rgba(255,215,0,0.06); }
.fc-drop-card--red { border-color: rgba(235,75,75,0.4); background: rgba(235,75,75,0.06); }
.fc-drop-card--pink { border-color: rgba(211,44,230,0.4); background: rgba(211,44,230,0.06); }
.fc-drop-card--purple { border-color: rgba(136,71,255,0.4); background: rgba(136,71,255,0.06); }
.fc-drop-card--blue { border-color: rgba(75,105,255,0.3); }
.fc-drop-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 4px;
}
.fc-drop-card__info {
    text-align: center;
    width: 100%;
}
.fc-drop-card__name {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    line-height: 1.2;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fc-drop-card__badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.fc-drop-card__badge--gold { background: rgba(255,215,0,0.2); color: #FFD700; }
.fc-drop-card__badge--red { background: rgba(235,75,75,0.2); color: #EB4B4B; }
.fc-drop-card__badge--pink { background: rgba(211,44,230,0.2); color: #D32CE6; }
.fc-drop-card__badge--purple { background: rgba(136,71,255,0.2); color: #8847FF; }
.fc-drop-card__badge--blue { background: rgba(75,105,255,0.15); color: #4B69FF; }

/* --- Roulette inside modal --- */
.fc-roulette {
    position: relative;
    margin-bottom: 24px;
    display: none;
}
.fc-roulette__pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #466FFF);
    z-index: 5;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
}
.fc-roulette__pointer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #FFD700;
    filter: drop-shadow(0 0 6px rgba(255,215,0,0.8));
}
.fc-roulette__viewport {
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid rgba(70,111,255,0.3);
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
}
.fc-roulette__strip {
    display: flex;
    gap: 10px;
    will-change: transform;
}
.fc-roulette__cell {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.fc-roulette__cell img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
/* CS2 rarity colors on roulette cells */
.fc-roulette__cell--gold { border-color: rgba(255,215,0,0.5); background: rgba(255,215,0,0.08); }
.fc-roulette__cell--red { border-color: rgba(235,75,75,0.5); background: rgba(235,75,75,0.08); }
.fc-roulette__cell--pink { border-color: rgba(211,44,230,0.4); background: rgba(211,44,230,0.06); }
.fc-roulette__cell--purple { border-color: rgba(136,71,255,0.4); background: rgba(136,71,255,0.06); }
.fc-roulette__cell--blue { border-color: rgba(75,105,255,0.3); }
.fc-roulette__cell span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-top: 4px;
    line-height: 1.2;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fc-roulette__cell--flash {
    border-color: #FFD700 !important;
    background: rgba(255,215,0,0.15) !important;
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255,215,0,0.4);
    animation: fc-cell-flash 0.5s ease 3;
}
@keyframes fc-cell-flash {
    0%,100% { box-shadow: 0 0 15px rgba(255,215,0,0.3); }
    50% { box-shadow: 0 0 40px rgba(255,215,0,0.7); }
}

/* Spinning glow effect on viewport */
.fc-roulette--spinning .fc-roulette__viewport {
    box-shadow: 0 0 30px rgba(70,111,255,0.3);
}
.fc-roulette--slowing .fc-roulette__viewport {
    box-shadow: 0 0 50px rgba(255,215,0,0.3);
    transition: box-shadow 3s;
}

/* --- Result in modal --- */
.fc-modal .fc-case__result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: fc-result-appear 0.6s ease;
}
@keyframes fc-result-appear {
    0% { opacity: 0; transform: scale(0.8); }
    60% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
.fc-modal .fc-result__glow {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    border-radius: 20px;
    pointer-events: none;
}
.fc-modal .fc-result__glow--blue { background: radial-gradient(circle, #4B69FF, transparent 70%); }
.fc-modal .fc-result__glow--purple { background: radial-gradient(circle, #8847FF, transparent 70%); }
.fc-modal .fc-result__glow--pink { background: radial-gradient(circle, #D32CE6, transparent 70%); }
.fc-modal .fc-result__glow--red { background: radial-gradient(circle, #EB4B4B, transparent 70%); }
.fc-modal .fc-result__glow--gold { background: radial-gradient(circle, #FFD700, transparent 70%); opacity: 0.25; }
.fc-modal .fc-result__img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: fc-result-bounce 0.7s ease;
    filter: drop-shadow(0 4px 24px rgba(255,215,0,0.3));
}
@keyframes fc-result-bounce {
    0% { transform: scale(0) rotate(-10deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    70% { transform: scale(0.95) rotate(-2deg); }
    100% { transform: scale(1) rotate(0); }
}
.fc-modal .fc-result__info {
    text-align: center;
    position: relative;
    z-index: 2;
}
.fc-modal .fc-result__rarity {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.fc-modal .fc-result__rarity--blue { background: rgba(75,105,255,0.2); color: #4B69FF; }
.fc-modal .fc-result__rarity--purple { background: rgba(136,71,255,0.2); color: #8847FF; }
.fc-modal .fc-result__rarity--pink { background: rgba(211,44,230,0.2); color: #D32CE6; }
.fc-modal .fc-result__rarity--red { background: rgba(235,75,75,0.2); color: #EB4B4B; }
.fc-modal .fc-result__rarity--gold { background: rgba(255,215,0,0.25); color: #FFD700; }
.fc-modal .fc-result__name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}
.fc-result__buttons {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}
.fc-result__again {
    min-width: 180px;
}
.fc-result__close {
    color: rgba(255,255,255,0.7) !important;
    border-color: rgba(255,255,255,0.2) !important;
}
.fc-result__close:hover {
    color: #fff !important;
    border-color: rgba(255,255,255,0.4) !important;
}

/* ===== WHERE / WAYS ===== */
.fc-where { padding: 80px 0; }
.fc-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.fc-way-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0,29,71,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.fc-way-card.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
}
.fc-way-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(70,111,255,0.1);
}
.fc-way-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.fc-way-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.fc-way-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

/* ===== TYPES OF FREE CASES ===== */
.fc-types { padding: 60px 0 80px; }
.fc-type {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,29,71,0.06);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
.fc-type.bc-visible {
    opacity: 1;
    transform: translateY(0);
}
.fc-type__num {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #466FFF, #6A6BF8);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-type__content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.fc-type__content > p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}
.fc-type__img {
    margin: 16px 0;
    border-radius: 14px;
    overflow: hidden;
    max-height: 260px;
}
.fc-type__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.fc-where__img-block {
    text-align: center;
    margin-bottom: 32px;
}
.fc-where__img-block img {
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(70,111,255,0.12);
}
.fc-safety__shield {
    text-align: center;
    margin: 28px 0;
}
.fc-safety__shield img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(70,111,255,0.2));
}
.fc-type__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.fc-type__col h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.fc-type__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fc-type__col li {
    font-size: 14px;
    color: #4a5568;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}
.fc-type__col li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #466FFF;
    font-weight: 700;
}

/* ===== STRATEGY ===== */
.fc-strategy { padding: 60px 0 80px; }
.fc-strat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}
.fc-strat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0,29,71,0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
.fc-strat-card.bc-visible {
    opacity: 1;
    transform: translateY(0);
}
.fc-strat-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.fc-strat-card ol {
    padding-left: 20px;
    margin: 0;
}
.fc-strat-card li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Safety */
.fc-safety {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}
.fc-safety__col {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0,29,71,0.06);
}
.fc-safety__col--bad { border-top: 4px solid #e53e3e; }
.fc-safety__col--good { border-top: 4px solid #27760F; }
.fc-safety__col h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}
.fc-safety__col ul { list-style: none; padding: 0; margin: 0; }
.fc-safety__col li {
    font-size: 14px;
    color: #4a5568;
    padding: 6px 0 6px 20px;
    position: relative;
}
.fc-safety__col--bad li::before { content: '✕'; position: absolute; left: 0; color: #e53e3e; font-weight: 700; }
.fc-safety__col--good li::before { content: '✓'; position: absolute; left: 0; color: #27760F; font-weight: 700; }

/* Mistakes */
.fc-mistakes { margin-bottom: 40px; }
.fc-mistakes h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a2e;
}
.fc-mistakes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fc-mistake-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 14px;
    color: #4a5568;
    box-shadow: 0 2px 12px rgba(0,29,71,0.06);
    border-left: 4px solid #e53e3e;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
}
.fc-mistake-item.bc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GALLERIES ===== */
.fc-gallery, .fc-skins-gallery { padding: 60px 0; }
.fc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}
.fc-gallery__item {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,29,71,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(10px);
}
.fc-gallery__item.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s, transform 0.4s;
}
.fc-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(70,111,255,0.1);
}
.fc-gallery__item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}
.fc-gallery__item span {
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    line-height: 1.3;
}

.fc-skins__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.fc-skin-card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,29,71,0.05);
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(10px);
    border-bottom: 3px solid transparent;
}
.fc-skin-card--gold { border-bottom-color: #FFD700; }
.fc-skin-card--red { border-bottom-color: #EB4B4B; }
.fc-skin-card--pink { border-bottom-color: #D32CE6; }
.fc-skin-card--purple { border-bottom-color: #8847FF; }
.fc-skin-card--blue { border-bottom-color: #4B69FF; }
.fc-skin-card.bc-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s, transform 0.4s;
}
.fc-skin-card:hover { transform: translateY(-3px) scale(1.03); }
.fc-skin-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}
.fc-skin-card span {
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.2;
}

/* Conclusion */
.fc-conclusion { padding: 60px 0; }

/* Rating note */
.fc-rating-note {
    font-size: 14px;
    color: #718096;
    text-align: center;
    padding: 16px 24px;
    margin-bottom: 40px;
    background: #f8fafc;
    border-radius: 14px;
    line-height: 1.6;
}

/* FAQ */
.fc-faq { padding: 60px 0 80px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .fc-hero { padding: 80px 0 50px; }
    .fc-hero__inner { flex-direction: column; gap: 30px; text-align: center; }
    .fc-hero__visual { flex: none; }
    .fc-hero__visual img { max-width: 220px; }
    .fc-hero__actions { justify-content: center; }
    .fc-hero__sub { margin-left: auto; margin-right: auto; }
    .fc-case__showcase { padding: 40px 20px 36px; }
    .fc-case__big-img { width: 160px; height: 160px; }
    .fc-case__name { font-size: 22px; }
    .fc-modal__content { padding: 28px 16px; border-radius: 20px; }
    .fc-modal__title { font-size: 18px; margin-bottom: 20px; }
    .fc-roulette__cell { flex: 0 0 110px; height: 110px; }
    .fc-roulette__cell img { width: 60px; height: 60px; }
    .fc-modal .fc-result__img { width: 120px; height: 120px; }
    .fc-modal .fc-result__name { font-size: 18px; }
    .fc-result__buttons { flex-direction: column; }
    .fc-type { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .fc-type__details { grid-template-columns: 1fr; }
    .fc-strat-grid { grid-template-columns: 1fr; }
    .fc-safety { grid-template-columns: 1fr; }
    .fc-mistakes__grid { grid-template-columns: 1fr; }
    .fc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .fc-skins__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== GLOBAL SCROLL TO TOP ===== */
.global-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #466FFF, #6A6BF8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(70, 111, 255, 0.35);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
.global-scroll-top--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.global-scroll-top:hover {
    box-shadow: 0 6px 28px rgba(70, 111, 255, 0.5);
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .global-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===== Free Case Modal — Mobile fixes ===== */
@media (max-width: 600px) {
    .fc-modal__content {
        padding: 20px 12px;
        border-radius: 18px;
        max-height: 95vh;
        width: 98%;
    }
    .fc-modal__title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .fc-modal__case-img {
        width: 120px;
        height: 120px;
    }
    .fc-modal__spin-btn {
        font-size: 15px;
        padding: 12px 28px;
        margin-bottom: 16px;
    }
    .fc-cooldown {
        font-size: 13px;
        padding: 10px 16px;
        margin-bottom: 16px;
    }
    .fc-modal__drops-grid {
        grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
        gap: 6px;
        max-height: 200px;
    }
    .fc-drop-card img {
        width: 50px;
        height: 50px;
    }
    .fc-drop-card span {
        font-size: 9px;
    }

    /* Roulette cells smaller on mobile */
    .fc-roulette__cell {
        flex: 0 0 100px;
        height: 100px;
        border-radius: 10px;
    }
    .fc-roulette__cell img {
        width: 60px;
        height: 60px;
    }
    .fc-roulette__cell span {
        font-size: 8px;
    }
    .fc-roulette__viewport {
        padding: 10px 0;
    }
    .fc-roulette__pointer {
        width: 3px;
    }

    /* Result screen */
    .fc-modal .fc-case__result {
        padding: 24px 12px;
        gap: 12px;
    }
    .fc-modal .fc-result__img {
        width: 110px;
        height: 110px;
    }
    .fc-modal .fc-result__name {
        font-size: 17px;
    }
    .fc-result__buttons {
        gap: 8px;
    }
    .fc-result__buttons .bc-btn {
        font-size: 14px;
        padding: 10px 20px;
        min-width: 140px;
    }
}

/* ===== ZOOM OVERLAY (Best Cases & Free Cases) ===== */
.bc-zoom-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 10, 30, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    cursor: zoom-out;
}
.bc-zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}
.bc-zoom-overlay__inner {
    max-width: 520px;
    max-height: 80vh;
    padding: 20px;
    animation: bc-zoom-in .3s ease;
}
.bc-zoom-overlay__inner img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 20px 60px rgba(70, 111, 255, 0.3));
}
@keyframes bc-zoom-in {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}