/* Variables */
:root {
    --body: #131417;
    --body-rgb: 19, 20, 23;
    --surface: #1a1b1f;
    --surface-2: #1f2024;
    --normal: #c7cae5;
    --light: #D0D5EE;
    --muted: #737984;
    --primary: #737984;
    --primary-rgb: 115, 121, 132;
    --accent: #c7cae5;
    --shadow: #1a1b1f;
    --border: rgba(66, 67, 76, 0.35);
    --border-mid: rgba(66, 67, 76, 0.5);
    --border-strong: rgba(66, 67, 76, 0.7);
    --font: "Satoshi-Variable", -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 64px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    /* glow */
    --radius: 24;
    --size: 160;
    --bg-spot-opacity: 0;
    --border-spot-opacity: 0;
    --border-light-opacity: 0;
    --x: 0; --y: 0;
}

/* Page fade-in */
body.page-loading { opacity: 0; }
body.page-ready {
    opacity: 1;
    transition: opacity .5s ease;
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, rgba(199,202,229,0.4) 0%, rgba(199,202,229,0.9) 100%);
    z-index: 9999;
    transition: width .1s linear;
    pointer-events: none;
}

/* Active nav link */
header#c_header .c_header__nav ul li a.nav-active {
    color: #fff;
    background: rgba(255,255,255,0.09);
    border-radius: 20px;
}

/* Footer brand */
.c_footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(66,67,76,0.3);
    flex-direction: column;
}

.c_footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--normal);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.c_footer__brand-logo img { width: 32px; height: 32px; }
.c_footer__brand-logo:hover { color: #fff; }

.c_footer__brand-tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}


    font-family: Satoshi-Variable;
    src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-display: block;
}

html { scroll-behavior: smooth; margin-top: 0 !important; -webkit-font-smoothing: antialiased; }

section[id] {
    scroll-margin-top: 90px;
}

body {
    background: var(--body);
    font-family: var(--font);
    font-size: 15px;
    color: var(--normal);
    margin: 0; padding: 0;
    overflow-x: hidden;
}

body.menu-open, body.modal-open { overflow: hidden; }
*, *:before, *:after { box-sizing: border-box; }

a { color: var(--normal); text-decoration: none; transition: color .3s; }
a:hover { color: #fff; }
img { user-select: none; -webkit-user-drag: none; }

::-webkit-scrollbar { width: 5px; background: transparent; }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 3px; }

.container { max-width: 1280px; padding: 0 60px; margin: 0 auto; position: relative; }

/* Mobile menu */
#mobile-menu {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(19, 20, 23, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 90;
    padding-top: 100px;
    padding-left: 32px;
    padding-right: 32px;
    border-left: 1px solid rgba(66, 67, 76, 0.4);
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
body.menu-open #mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}
#mobile-menu ul { list-style: none; text-align: left; padding: 0; margin: 0; }
#mobile-menu ul li a {
    font-size: 22px;
    font-weight: 600;
    color: var(--normal);
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(66,67,76,0.2);
    transition: color .2s, padding-left .2s;
    letter-spacing: -0.02em;
}
#mobile-menu ul li a:hover { color: #fff; padding-left: 6px; }
.mobile-forums-btn {
    display: inline-block !important;
    margin-top: 20px;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0a0b0f !important;
    background: var(--normal) !important;
    border-radius: 40px !important;
    padding: 12px 28px !important;
    border-bottom: none !important;
    transition: background .2s, transform .2s !important;
    width: 100% !important;
    text-align: center !important;
}
.mobile-forums-btn:hover {
    background: #fff !important;
    color: #0a0b0f !important;
    padding-left: 28px !important;
}


#mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 89;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
body.menu-open #mobile-menu-backdrop {
    opacity: 1;
    pointer-events: all;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--normal);
    opacity: 0.5;
    margin-bottom: 18px;
    text-align: center;
}

/* Header pill */
header#c_header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 920px;
    z-index: 50;
    border-radius: 40px;
    background: rgba(19, 20, 23, 0.88);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(66, 67, 76, 0.55);
    box-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
}

header#c_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 16px 0 12px;
    gap: 0;
}

header#c_header .c_header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
header#c_header .c_header__logo img { width: 40px; height: 40px; }

header#c_header .c_header__nav { flex: 1; }

header#c_header .c_header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; padding: 0;
    gap: 4px;
    list-style: none;
}

header#c_header .c_header__nav ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--light);
    padding: 8px 14px;
    border-radius: 20px;
    transition: color .25s, background .25s;
    white-space: nowrap;
}

header#c_header .c_header__nav ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
}

header#c_header .c_header__contact { display: flex; align-items: center; flex-shrink: 0; }

/* Forums button */
.c_btn_redirect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background: rgba(199, 202, 229, 0.1);
    border: 1px solid rgba(199, 202, 229, 0.2);
    border-radius: 40px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--normal);
    transition: background .25s, border-color .25s, color .25s;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}
.c_btn_redirect:hover {
    background: rgba(199, 202, 229, 0.17);
    border-color: rgba(199, 202, 229, 0.35);
    color: #fff;
}

/* Hamburger */
#c_header__hamburger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 40px; height: 40px;
    cursor: pointer;
    z-index: 91;
}

#c_header__hamburger span {
    background: var(--normal);
    border-radius: 2px;
    display: block;
    height: 2px; width: 24px;
    margin-bottom: 5px;
    transition: .35s var(--ease);
}
#c_header__hamburger span:nth-child(2) { width: 16px; }
#c_header__hamburger span:nth-child(3) { margin-bottom: 0; }
#c_header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); width: 24px; }
#c_header__hamburger.active span:nth-child(2) { opacity: 0; }
#c_header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); width: 24px; }

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(19,20,23,0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 90;
    padding-top: 120px;
    transition: transform .45s var(--ease), opacity .45s var(--ease);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
body.menu-open #mobile-menu { transform: translateY(0); opacity: 1; pointer-events: all; }
#mobile-menu ul { list-style: none; text-align: center; padding: 0; margin: 0; }
#mobile-menu ul li a { font-size: 28px; font-weight: 600; color: var(--normal); display: block; padding: 18px 20px; border-bottom: 1px solid rgba(66,67,76,0.2); transition: color .2s; }
#mobile-menu ul li a:hover { color: #fff; }
.mobile-forums-btn { display: inline-block !important; margin-top: 12px; font-size: 16px !important; font-weight: 600 !important; color: var(--body) !important; background: var(--normal) !important; border-radius: 20px !important; padding: 12px 36px !important; border-bottom: none !important; transition: opacity .2s !important; }
.mobile-forums-btn:hover { opacity: 0.85 !important; color: var(--body) !important; }

/* Buttons */
.c_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 13px 28px;
    border-radius: 40px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    color: var(--normal);
    transition: .25s var(--ease);
}

.c_btn_secondary {
    background: radial-gradient(58.59% 58.59% at 50% 91.01%, #565761 0, rgba(40,43,52,0.7) 100%), #282b34;
    box-shadow: 0 16px 36px rgba(26,27,34,0.42);
    border-top: 1.5px solid rgba(40,43,52,0.7);
    border-left: none; border-right: none; border-bottom: none;
}
.c_btn_secondary:hover { filter: brightness(1.15) saturate(1.8); box-shadow: 0 0 24px rgba(199,202,229,0.12), 0 16px 36px rgba(26,27,34,0.42); transform: translateY(-1px); }

.c_btn_ghost {
    background: transparent;
    border: 1px solid rgba(66,67,76,0.6);
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 28px;
}
.c_btn_ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(199,202,229,0.25); color: var(--normal); box-shadow: 0 0 16px rgba(199,202,229,0.06); transform: translateY(-1px); }

.c_btn-list { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; margin: 40px 0 0; }

/* Hero */
#c_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: calc(var(--header-height) + 80px);
    overflow: hidden;
}

#c_hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 120px;
    z-index: 2;
}

.c_hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--normal);
    opacity: 0.6;
    margin-bottom: 28px;
    animation: fadeInDown .7s var(--ease) .2s both;
}

.c_hero__video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.c_hero__video-bg video {
    position: absolute; top: 40%; left: 50%;
    min-width: 120%; min-height: 120%;
    transform: translate(-50%,-50%) scale(1.3);
    filter: blur(8px) brightness(0.4) contrast(1.2) saturate(0.3) hue-rotate(200deg);
    opacity: 0;
    animation: videoFadeIn 2s ease .5s forwards;
}
.c_hero__video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom,
        rgba(19,20,23,0.85) 0%,
        rgba(19,20,23,0.5) 50%,
        rgba(19,20,23,0.8) 85%,
        #131417 100%
    );
}

#c_hero .c_hero--title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 24px;
    animation: fadeInDown .8s var(--ease) .35s both;
}

#c_hero .c_hero--text {
    max-width: 560px;
    animation: fadeInDown .8s var(--ease) .5s both;
}
#c_hero .c_hero--text p {
    font-size: 18px;
    font-weight: 300;
    color: var(--light);
    line-height: 1.65;
    margin: 0 0 4px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.c_btn-list { animation: fadeInDown .8s var(--ease) .65s both; }

.c_hero__price-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 20px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--normal);
    background: rgba(199,202,229,0.07);
    border: 1px solid rgba(199,202,229,0.15);
    border-radius: 20px;
    padding: 7px 16px;
    animation: fadeInDown .8s var(--ease) .75s both;
}
.c_hero__price-hint svg { opacity: 0.6; flex-shrink: 0; }
.scroll-down-indicator {
    position: absolute; bottom: 32px; left: 50%;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 20; opacity: 0;
    animation: fadeInUpFixed 1s ease 1.2s forwards;
}
.scroll-down-text { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.scroll-down-icon { fill: none; stroke: var(--muted); stroke-width: 1.5; animation: bounceDown 2.5s ease-in-out infinite; }

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(22, 23, 28, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(66,67,76,0.6);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 199;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, background .2s, border-color .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
#back-to-top:hover {
    background: rgba(199,202,229,0.12);
    border-color: rgba(199,202,229,0.3);
    color: #fff;
    box-shadow: 0 0 16px rgba(199,202,229,0.1);
    transform: translateY(-2px);
}

/* Stats reveal */
.c_stats__item[data-stat] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
.c_stats__item[data-stat].stat-visible {
    opacity: 1;
    transform: translateY(0);
}


.c_stats { padding: 0 0 60px; }
.c_stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(42.59% 55% at 50% 100%, rgba(80,91,135,0.2) 0%, rgba(136,138,158,0) 100%),
                linear-gradient(180deg, #141519 0%, rgba(19,20,23,0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 48px;
    flex-wrap: wrap;
}
.c_stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 40px;
    flex: 1;
    min-width: 120px;
}
.c_stats__icon { color: var(--muted); margin-bottom: 2px; }
.c_stats__number {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--normal);
}
.c_stats__label {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.c_stats__divider { width: 1px; height: 40px; background: var(--border-mid); flex-shrink: 0; }

/* Features */
#c_offer {
    margin: 80px 0 120px;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

#c_offer .c_offer__animation {
    display: flex; align-items: center; justify-content: center;
    position: absolute; left: 50%; top: 0;
    transform: translate(-50%,0);
    z-index: -1; pointer-events: none;
}
#c_offer .c_offer__animation img {
    max-width: 200%;
    position: relative; top: -430px;
    opacity: 0.9; mix-blend-mode: screen;
    filter: grayscale(30%) sepia(0%) hue-rotate(0deg) saturate(20%) brightness(100%);
}

.c_offer--subtitle {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--normal);
    text-align: center;
    margin: 0 0 72px;
    line-height: 1.1;
}

.c_offer__list { display: flex; flex-wrap: wrap; gap: 20px; }

.c_offer__list__row {
    background: radial-gradient(42.59% 25.59% at 50% 111.01%, #505b8765 0%, rgba(136,138,158,0) 100%),
                linear-gradient(180deg, #12141a 0%, rgba(24,25,26,0) 100%);
    border-top: 1px solid rgba(66,67,76,0.28);
    border-radius: 24px;
    padding: 36px;
    min-width: calc(33.33% - 14px);
    max-width: calc(33.33% - 14px);
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s;
}
.c_offer__list__row:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(199,202,229,0.08); }
.c_offer__list__row:first-child { min-width: calc(65% - 10px); max-width: calc(65% - 10px); }
.c_offer__list__row:nth-child(2) { min-width: calc(35% - 10px); max-width: calc(35% - 10px); }

.c_offer__list__row--icon { width: 100%; height: 64px; margin-bottom: 36px; position: relative; }
.c_offer__list__row--icon img {
    position: absolute; left: -35px; top: 6px;
    opacity: 0.9;
    filter: grayscale(100%) sepia(8%) hue-rotate(200deg) saturate(35%) brightness(95%);
}

.c_offer__list__row__content .content--title {
    font-size: 22px; font-weight: 600; color: var(--normal); margin: 0 0 12px; letter-spacing: -0.02em;
}
.c_offer__list__row__content .content--text p {
    font-size: 16px; font-weight: 300; color: var(--light); line-height: 1.55; margin: 0;
}

/* Glow */
[data-glow] {
    --border-size: calc(var(--border, 4) * 1px);
    --spotlight-size: calc(var(--size, 160) * 1px);
    background-image: radial-gradient(var(--spotlight-size) var(--spotlight-size) at calc(var(--x,0)*1px) calc(var(--y,0)*1px),
        rgba(199,202,229,calc(var(--bg-spot-opacity,0)*0.33)),
        rgba(199,202,229,calc(var(--bg-spot-opacity,0)*0.13)),
        transparent);
    border: 1px solid rgba(66,67,76,0.5);
    position: relative;
}


[data-glow]::before {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius)*1px);
    border: 1.5px solid transparent;
    background:
        radial-gradient(calc(var(--spotlight-size)*2.5) calc(var(--spotlight-size)*2.5) at calc(var(--x,0)*1px) calc(var(--y,0)*1px),
            rgba(199,202,229,calc(var(--border-spot-opacity,0)*0.9)),
            rgba(160,165,200,calc(var(--border-spot-opacity,0)*0.5)),
            transparent 70%)
        border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 1;
}


[data-glow]::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius)*1px);
    border: 1px solid transparent;
    background:
        radial-gradient(calc(var(--spotlight-size)*.6) calc(var(--spotlight-size)*.6) at calc(var(--x,0)*1px) calc(var(--y,0)*1px),
            rgba(240,242,255,calc(var(--border-light-opacity,0)*1.0)),
            rgba(199,202,229,calc(var(--border-light-opacity,0)*0.5)),
            transparent 65%)
        border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    filter: brightness(3.5);
}

@media (pointer:coarse),(max-width:900px) {
    [data-glow] { background-image: none !important; }
    [data-glow]::before,[data-glow]::after { display: none !important; }
}

/* Showcase */
#c_showcase-carousel {
    width: 100%; padding: 20px 0 80px;
    overflow: hidden; position: relative; z-index: 1;
}
#c_showcase-carousel .container { display: flex; flex-direction: column; align-items: center; }

.hz-carousel {
    width: 100%; min-height: 600px; position: relative;
    padding: 20px 0; overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.hz-track { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; perspective: 1000px; }
.hz-slide {
    position: absolute; top: 0; left: 50%;
    width: 85vw; max-width: 420px;
    transform-origin: center center;
    will-change: transform, opacity, filter;
}

.hz-card {
    background: radial-gradient(42.59% 25.59% at 50% 111.01%, #505b8765 0%, rgba(136,138,158,0) 100%),
                linear-gradient(180deg, #12141a 0%, rgba(24,25,26,0) 100%);
    border: 1px solid rgba(66,67,76,0.5);
    border-radius: 24px; padding: 20px;
    display: flex; flex-direction: column;
    height: 560px; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.hz-card-image {
    flex: 1;
    background: #0f1012; border-radius: 16px;
    margin-bottom: 20px; overflow: hidden;
    position: relative; cursor: pointer;
    min-height: 300px;
}
.hz-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hz-card-zoom {
    position: absolute; bottom: 10px; right: 10px;
    width: 34px; height: 34px;
    background: rgba(19,20,23,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(66,67,76,0.6);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--normal); opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}
.hz-card-image:hover .hz-card-zoom { opacity: 1; }

.hz-card-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin: 0 0 8px; }
.hz-card-desc { font-size: 15px; font-weight: 300; color: var(--light); margin: 0 0 16px; }

.hz-card-content {
    padding: 20px 20px 20px;
}

.hz-card-content .hz-card-title,
.hz-card-content .hz-card-desc,
.hz-card-content .hz-tags {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
}

.hz-slide.is-active .hz-card-content .hz-card-title { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.hz-slide.is-active .hz-card-content .hz-card-desc  { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.hz-slide.is-active .hz-card-content .hz-tags       { opacity: 1; transform: translateY(0); transition-delay: .3s; }
.hz-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

.c_tag { border-radius: 16px; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 8px; color: var(--normal); }
.c_tag_html { background: #e34f26; }
.c_tag_css  { background: #2f5dff; }
.c_tag_js   { background: #e38c26; }

.hz-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; width: 100%; position: relative; z-index: 20; }
.hz-prev, .hz-next {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(66,67,76,0.6);
    background: transparent; color: rgba(199,202,229,0.5);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, color .2s;
}
.hz-prev:hover, .hz-next:hover { border-color: rgba(199,202,229,0.35); color: var(--normal); }
.hz-dots { display: flex; gap: 8px; align-items: center; }
.hz-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18); cursor: pointer; transition: background .2s, width .2s, height .2s, border .2s; border: none; padding: 0; }
.hz-dot.active { background: transparent; border: 2px solid var(--normal) !important; width: 9px; height: 9px; }

/* Product Section */
#c_product { margin: 0 0 80px; padding: 80px 0; }

.c_product__intro {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    color: var(--light);
    margin: 0 auto 32px;
    max-width: 480px;
    line-height: 1.6;
}

.c_product__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 80px;
}
.c_product__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--light);
    background: rgba(199,202,229,0.07);
    border: 1px solid rgba(199,202,229,0.15);
    border-radius: 20px;
    padding: 6px 14px;
}
.c_product__tag svg { opacity: 0.6; flex-shrink: 0; }


.c_product__rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.c_product__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.c_product__row.in-view {
    opacity: 1;
    transform: translateY(0);
}
.c_product__row--reverse { direction: rtl; }
.c_product__row--reverse > * { direction: ltr; }


.c_product__row-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(66,67,76,0.5);
    cursor: pointer;
    background: #0f1012;
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    transition: border-color .3s, box-shadow .3s, transform .15s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}
.c_product__row-media:hover {
    border-color: rgba(199,202,229,0.25);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.c_product__row-media img { width: 100%; display: block; }


.c_product__row-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255,255,255,0.06) 40%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.06) 60%,
        transparent 80%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}
.c_product__row.in-view .c_product__row-media::before {
    animation: shineSweep .9s cubic-bezier(.4,0,.2,1) .4s forwards;
}

@keyframes shineSweep {
    0%   { left: -100%; opacity: 1; }
    100% { left: 160%;  opacity: 1; }
}

.c_product__row-zoom {
    position: absolute;
    bottom: 12px; right: 12px;
    width: 34px; height: 34px;
    background: rgba(19,20,23,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(66,67,76,0.6);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--normal);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}
.c_product__row-media:hover .c_product__row-zoom { opacity: 1; }


.c_product__row-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c_product__row.in-view .c_product__row-desc    { animation: fadeInLeft .5s cubic-bezier(.4,0,.2,1) .25s both; }
.c_product__row--reverse.in-view .c_product__row-desc    { animation: fadeInRight .5s cubic-bezier(.4,0,.2,1) .25s both; }

.c_product__chips span {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease, background .2s, border-color .2s;
}
.c_product__row.in-view .c_product__chips span {
    opacity: 1;
    transform: translateY(0);
}
.c_product__row.in-view .c_product__chips span:nth-child(1) { transition-delay: .35s; }
.c_product__row.in-view .c_product__chips span:nth-child(2) { transition-delay: .45s; }
.c_product__row.in-view .c_product__chips span:nth-child(3) { transition-delay: .55s; }
.c_product__row.in-view .c_product__chips span:nth-child(4) { transition-delay: .65s; }
.c_product__row.in-view .c_product__chips span:nth-child(5) { transition-delay: .75s; }
.c_product__row.in-view .c_product__chips span:nth-child(6) { transition-delay: .85s; }


.c_product__row-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 16px 14px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(199,202,229,0.7);
    letter-spacing: 0.04em;
    text-align: center;
    background: linear-gradient(to top, rgba(10,10,14,0.7) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
    z-index: 3;
}
.c_product__row-media:hover .c_product__row-caption {
    opacity: 1;
    transform: translateY(0);
}


.c_product__row-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
}
.c_product__row.in-view .c_product__row-title {
    animation: fadeInLeft .5s cubic-bezier(.4,0,.2,1) .15s both;
}
.c_product__row--reverse.in-view .c_product__row-title {
    animation: fadeInRight .5s cubic-bezier(.4,0,.2,1) .15s both;
}

.c_product__row-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--light);
    line-height: 1.65;
    margin: 0 0 20px;
}

.c_product__chips span:hover {
    background: rgba(199,202,229,0.13);
    border-color: rgba(199,202,229,0.22);
}

.c_product__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.c_product__chips span {
    font-size: 12px;
    font-weight: 500;
    color: var(--light);
    background: rgba(199,202,229,0.06);
    border: 1px solid rgba(199,202,229,0.11);
    border-radius: 20px;
    padding: 5px 12px;
    letter-spacing: 0.01em;
}


/* Requirements */
.c_product__requirements {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px auto 0;
    max-width: 900px;
    justify-content: center;
}
.c_product__req-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    margin-right: 4px;
}
.c_product__req-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}
.c_product__req-item {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(66,67,76,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .c_product__row { grid-template-columns: 1fr; gap: 32px; }
    .c_product__row--reverse { direction: ltr; }
    .c_product__rows { gap: 56px; }
}
@media (max-width: 640px) {
    .c_product__requirements { padding: 24px 20px; }
}

/* Floating Register Pill */
#floating-pill {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 18px;
    background: rgba(22, 23, 28, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(66, 67, 76, 0.7);
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.05) inset;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}

#floating-pill.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

#floating-pill.hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(80px);
    pointer-events: none;
    transition: transform .35s ease, opacity .3s ease;
}

.floating-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--normal);
    box-shadow: 0 0 8px rgba(199,202,229,0.5);
    flex-shrink: 0;
    animation: pillPulse 2.5s ease-in-out infinite;
}

.floating-pill__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--light);
    letter-spacing: -0.01em;
}

.floating-pill__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 18px;
    background: var(--normal);
    color: #0a0b0f;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.floating-pill__btn:hover {
    background: #fff;
    color: #0a0b0f;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(199,202,229,0.25);
}

.floating-pill__close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(66,67,76,0.5);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s;
    flex-shrink: 0;
    padding: 0;
}
.floating-pill__close:hover {
    background: rgba(255,255,255,0.12);
    color: var(--normal);
}

@keyframes pillPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* Pricing */
#c_pricing { margin: 80px 0; padding: 80px 0; }
#c_pricing .container { display: flex; flex-direction: column; align-items: center; }

#c_pricing .c_pricing--title {
    font-size: clamp(32px,4vw,48px);
    font-weight: 700; letter-spacing: -0.04em;
    color: var(--normal); text-align: center; margin: 0 0 12px;
}
#c_pricing .c_pricing--subtitle {
    font-size: 17px; font-weight: 300; color: var(--light);
    text-align: center; line-height: 1.6; margin: 0 0 56px; max-width: 500px;
}
#c_pricing .c_pricing__cards { display: flex; gap: 24px; width: 100%; max-width: 800px; justify-content: center; flex-wrap: wrap; }

#c_pricing .c_pricing__card {
    background: radial-gradient(42.59% 25.59% at 50% 111.01%, #505b8765 0%, rgba(136,138,158,0) 100%),
                linear-gradient(180deg, #12141a 0%, rgba(24,25,26,0) 100%);
    border: 1px solid rgba(66,67,76,0.5);
    border-radius: 24px; padding: 32px 28px;
    min-width: 280px; max-width: 340px; flex: 1;
    display: flex; flex-direction: column; align-items: center;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
#c_pricing .c_pricing__card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(199,202,229,0.15), 0 0 0 1px rgba(199,202,229,0.1); }

#c_pricing .c_pricing__card--popular {
    background: radial-gradient(42.59% 25.59% at 50% 111.01%, rgba(199,202,229,0.25) 0%, rgba(199,202,229,0) 100%),
                linear-gradient(180deg, #12141a 0%, rgba(24,25,26,0) 100%);
    border: 1px solid rgba(199,202,229,0.4);
}
#c_pricing .c_pricing__card--badge {
    position: absolute; top: -12px; right: 24px;
    background: linear-gradient(135deg, #c7cae5 0%, #9ca3d4 100%);
    color: #0a0b0f; font-size: 12px; font-weight: 700; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px;
}
#c_pricing .c_pricing__card--duration { font-size: 18px; font-weight: 600; color: var(--normal); margin: 0 0 12px; }
#c_pricing .c_pricing__card--price { font-size: 48px; font-weight: 700; font-family: var(--font); color: var(--normal); margin: 0 0 6px; line-height: 1; letter-spacing: -0.02em; }
#c_pricing .c_pricing__card--price span { font-size: 22px; font-weight: 300; color: var(--light); vertical-align: super; font-family: var(--font); letter-spacing: 0; }
#c_pricing .c_pricing__card--original {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    margin: 0 0 4px;
}
#c_pricing .c_pricing__card--original s {
    text-decoration-color: rgba(199,202,229,0.3);
}
#c_pricing .c_pricing__card--period { font-size: 14px; font-weight: 300; color: var(--light); margin: 0 0 24px; }

#c_pricing .c_pricing__card--features { list-style: none; padding: 0; margin: 0 0 28px; width: 100%; flex-grow: 1; }
#c_pricing .c_pricing__card--features li {
    font-size: 14px; font-weight: 300; color: var(--light); line-height: 1.6; padding: 6px 0;
    display: flex; align-items: center; gap: 10px;
}
#c_pricing .c_pricing__card--features li:before { content: "✓"; color: #c7cae5; font-weight: 700; font-size: 16px; }

#c_pricing .c_pricing__card--button {
    background: linear-gradient(135deg, #c7cae5 0%, #9ca3d4 100%);
    color: #0a0b0f; font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 14px 40px; border-radius: 12px; border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s, filter .2s; text-decoration: none;
    display: block; width: 100%; text-align: center;
}
#c_pricing .c_pricing__card--button:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 28px rgba(199,202,229,0.3); filter: brightness(1.08); color: #0a0b0f; }
#c_pricing .c_pricing__urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--normal);
    background: rgba(199,202,229,0.06);
    border: 1px solid rgba(199,202,229,0.15);
    border-radius: 12px;
    padding: 11px 20px;
    margin-bottom: 40px;
    text-align: center;
}
#c_pricing .c_pricing__urgency svg {
    color: var(--normal);
    flex-shrink: 0;
    opacity: 0.9;
}

#c_pricing .c_pricing__register {
    margin: 28px 0 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    text-align: center;
}
#c_pricing .c_pricing__register a {
    color: var(--normal);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(199,202,229,0.45);
    font-weight: 600;
    transition: color .2s, text-decoration-color .2s;
}
#c_pricing .c_pricing__register a:hover {
    color: #fff;
    text-decoration-color: rgba(255,255,255,0.7);
}


/* Before / After Slider */
#c_case-studies {
    margin: 0 0 80px;
    padding: 80px 0 0;
}

.c_ba__intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--light);
    margin: 0 auto 48px;
    opacity: 0.7;
}

.c_ba__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c_ba__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c_ba__caption {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.c_ba__slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(66,67,76,0.5);
    cursor: ew-resize;
    user-select: none;
    aspect-ratio: 16/9;
    background: #0f1012;
    touch-action: none;
}

.c_ba__slider:hover {
    border-color: rgba(199,202,229,0.2);
}


.c_ba__after {
    position: absolute;
    inset: 0;
}
.c_ba__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}


.c_ba__before {
    position: absolute;
    inset: 0;
    overflow: hidden;

}
.c_ba__before img {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Handle */
.c_ba__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    width: 2px;
}

.c_ba__handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255,255,255,0.7);
}


.c_ba__drag-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: rgba(10,10,14,0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 7px 14px;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: opacity .5s ease;
    white-space: nowrap;
}
.c_ba__drag-hint svg { opacity: 0.7; flex-shrink: 0; }
.c_ba__slider.hint-visible .c_ba__drag-hint { opacity: 1; }
.c_ba__slider.dragged .c_ba__drag-hint { opacity: 0; transition: opacity .3s ease; }


.c_ba__handle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(19,20,23,0.88);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.c_ba__slider.entry-animate .c_ba__handle-btn {
    animation: handlePulse 1s ease .3s 2;
}
@keyframes handlePulse {
    0%   { box-shadow: 0 0 0 0 rgba(199,202,229,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(199,202,229,0); }
    100% { box-shadow: 0 0 0 0 rgba(199,202,229,0); }
}

/* Labels */
.c_ba__labels {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
    pointer-events: none;
    z-index: 10;
}

.c_ba__label-before,
.c_ba__label-after {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.c_ba__label-before {
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.55);
}

.c_ba__label-after {
    background: rgba(199,202,229,0.12);
    color: var(--normal);
    border: 1px solid rgba(199,202,229,0.2);
}

/* Community Videos */
#c_videos {
    margin: 0 0 80px;
    padding: 80px 0 0;
    overflow: hidden;
}

.c_videos__carousel {
    width: 100%;
    position: relative;
}

.c_videos__track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 340px;
    perspective: 1000px;
}

.c_videos__slide {
    position: absolute;
    left: 50%;
    top: 0;
    width: 560px;
    max-width: 85vw;
    transform-origin: center center;
    will-change: transform, opacity, filter;
}

.c_video__card {
    display: block;
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(66,67,76,0.45);
    background: #0f1012;
    transition: border-color .3s;
}

.c_video__card:hover {
    border-color: rgba(199,202,229,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(199,202,229,0.06);
    transform: translateY(-2px);
}

.c_video__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.c_video__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.8);
    transition: filter .3s;
}

.c_video__card:hover .c_video__thumb img {
    filter: brightness(0.6) saturate(0.7);
}

.c_video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 52px;
    height: 52px;
    background: rgba(19,20,23,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(199,202,229,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--normal);
    padding-left: 3px;
    opacity: 0;
    transition: opacity .25s, transform .25s;
}

.c_video__card:hover .c_video__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.c_video__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(14,15,18,0.95);
    border-top: 1px solid rgba(66,67,76,0.3);
}

.c_video__creator {
    font-size: 13px;
    font-weight: 600;
    color: var(--normal);
    letter-spacing: -0.01em;
}

.c_video__yt {
    color: var(--muted);
    opacity: 0.45;
    transition: opacity .2s, color .2s;
    flex-shrink: 0;
}

.c_video__card:hover .c_video__yt {
    opacity: 0.9;
    color: #ff4444;
}

.c_videos__controls {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 24px;
}
.c_videos__prev, .c_videos__next {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(66,67,76,0.6);
    background: transparent; color: rgba(199,202,229,0.5);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, color .2s;
}
.c_videos__prev:hover, .c_videos__next:hover { border-color: rgba(199,202,229,0.35); color: var(--normal); }
.c_videos__dots { display: flex; gap: 8px; align-items: center; }
.c_videos__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    cursor: pointer; transition: background .2s, width .2s, height .2s, border .2s;
    border: none; padding: 0;
}
.c_videos__dot.active { background: transparent; border: 2px solid var(--normal) !important; width: 9px; height: 9px; }

/* FAQ */
#c_faq { margin: 80px 0 120px; }
#c_faq .c_faq--title { font-size: clamp(32px,4vw,48px); font-weight: 700; letter-spacing: -0.04em; color: var(--normal); text-align: center; margin: 0 0 56px; }
#c_faq .c_faq__list { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 720px; margin: 0 auto; }

#c_faq .c_faq__list__row.card {
    background: radial-gradient(42.59% 25.59% at 50% 111.01%, #505b8765 0%, rgba(136,138,158,0) 100%),
                linear-gradient(180deg, #12141a 0%, rgba(24,25,26,0) 100%);
    border: 1px solid rgba(66,67,76,0.5);
    border-radius: 24px; padding: 28px 32px;
    position: relative; overflow: hidden;
    transition: border-color .3s, background .3s;
}
#c_faq .c_faq__list__row.card.open,
#c_faq .c_faq__list__row.card:hover {
    background: radial-gradient(42.59% 25.59% at 50% 111.01%, rgba(86,87,97,0.30) 0%, rgba(86,87,97,0) 100%),
                linear-gradient(180deg, #12141a 0%, rgba(24,25,26,0) 100%);
    border-color: rgba(199,202,229,0.18);
    box-shadow: 0 0 20px rgba(199,202,229,0.04);
}

#c_faq .faq-question {
    background: transparent; border: none; display: flex;
    align-items: center; justify-content: space-between;
    width: 100%; font-family: var(--font); font-size: 20px; font-weight: 600;
    color: var(--normal); cursor: pointer; margin: 0; padding: 0;
    text-align: left; gap: 16px; letter-spacing: -0.02em;
}
#c_faq .faq-question:after { content: "+"; color: var(--light); font-size: 24px; font-weight: 300; flex-shrink: 0; transition: transform .4s, color .4s; }
#c_faq .faq-question[aria-expanded="true"]:after { content: "−"; color: var(--normal); transform: rotate(180deg); }

#c_faq .faq-answer { margin: 0; padding: 0; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .4s ease, margin-top .3s ease; }
#c_faq .faq-answer p { font-size: 15px; font-weight: 300; color: var(--light); line-height: 1.7; margin: 0; }

/* Footer */
#c_footer { border-top: 1px solid #c7cae5; margin: 146px 0 0; padding: 56px 0 0; }
#c_footer .c_footer__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; }
#c_footer .c_footer__top__aboutus { min-width: 590px; max-width: 590px; }
#c_footer .c_footer__top__aboutus--text p { font-size: 16px; color: #c7cae5; line-height: 1.4; margin: 0; }
#c_footer .c_footer__top__menu--title { font-size: 18px; font-weight: 600; color: var(--normal); margin: 0 0 24px; }
#c_footer .c_footer__top__menu--list { list-style: none; padding: 0; margin: 0; }
#c_footer .c_footer__top__menu--list li { margin-bottom: 12px; }
#c_footer .c_footer__top__menu--list li a { font-size: 18px; color: var(--light); transition: color .2s, padding-left .2s; }
#c_footer .c_footer__top__menu--list li a:hover { color: var(--normal); padding-left: 4px; }
#c_footer .c_footer__top__menu--list li a:hover { color: var(--normal); }
#c_footer .c_footer__bottom { border-top: 1px solid #c7cae5; padding: 24px 0 32px; text-align: center; }
#c_footer .c_footer__bottom--payments { display: flex; justify-content: center; align-items: center; gap: 32px; margin-bottom: 18px; flex-wrap: wrap; }
#c_footer .c_footer__bottom--payments img { user-select: none; pointer-events: none; }
#c_footer .c_footer__bottom--payments img[alt="MasterCard"] { filter: drop-shadow(0 2px 8px #EB001B55); }
#c_footer .c_footer__bottom--payments img[alt="Visa"]       { filter: drop-shadow(0 2px 8px #1A1F7155); }
#c_footer .c_footer__bottom--payments img[alt="PayPal"]     { filter: drop-shadow(0 2px 8px #00308755); }
#c_footer .c_footer__bottom--payments img[alt="Stripe"]     { filter: drop-shadow(0 2px 8px #635BFF55); }
#c_footer .c_footer__bottom--payments img[alt="Paysafecard"]{ filter: drop-shadow(0 2px 8px #0087D055); }
#c_footer .c_footer__bottom--payments img[alt="Bitcoin"]    { filter: drop-shadow(0 2px 8px #F7931A55); }
#c_footer .c_footer__bottom--copyright { font-size: 14px; font-weight: 300; color: var(--light); }

/* Lightbox */
#lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease);
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(10,10,14,0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    cursor: pointer;
    transition: backdrop-filter .5s ease, -webkit-backdrop-filter .5s ease, background .5s ease;
}
#lightbox.open #lightbox__backdrop {
    background: rgba(10,10,14,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
#lightbox__close {
    position: absolute; top: 20px; right: 20px;
    width: 42px; height: 42px; z-index: 2;
    background: rgba(19,20,23,0.9);
    border: 1px solid rgba(66,67,76,0.6);
    border-radius: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--light); transition: background .2s, color .2s;
}
#lightbox__close:hover { background: rgba(199,202,229,0.1); color: #fff; }
#lightbox__inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    max-width: 90vw; max-height: 90vh;
    transform: scale(0.94) translateY(12px);
    transition: transform .4s var(--spring);
}
#lightbox.open #lightbox__inner { transform: scale(1) translateY(0); }
#lightbox__img {
    max-width: 90vw; max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7);
    border: 1px solid rgba(66,67,76,0.5);
    object-fit: contain;
    display: block;
}
#lightbox__title { font-size: 14px; font-weight: 500; color: var(--light); letter-spacing: 0.04em; opacity: 0.7; margin: 0; }

/* Animations */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInUpFixed { from { opacity:0; transform:translateX(-50%) translateY(14px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
@keyframes bounceDown { 0%,100% { transform:translateY(0); } 50% { transform:translateY(8px); } }
@keyframes videoFadeIn { from { opacity:0; } to { opacity:1; } }

/* Responsive */
@media (max-width: 980px) {
    header#c_header { top: 10px; width: calc(100% - 24px); }
    header#c_header .c_header__contact, header#c_header .c_header__nav { display: none; }
    #c_header__hamburger { display: flex; }
    #c_hero { padding-top: 160px; min-height: auto; }
    #c_offer { margin: 80px 0; }
    .c_offer__list__row, .c_offer__list__row:first-child, .c_offer__list__row:nth-child(2) { min-width: 100%; max-width: 100%; }
    #c_pricing .c_pricing__cards { flex-direction: column; align-items: center; }
    #c_pricing .c_pricing__card { min-width: 100%; max-width: 480px; }
    #c_footer .c_footer__top { flex-wrap: wrap; gap: 40px 0; }
    #c_footer .c_footer__top__aboutus, #c_footer .c_footer__top__menu { min-width: 100%; max-width: 100%; }
    .c_stats__item { padding: 0 24px; }
}

@media (max-width: 768px) {
    :root { --header-height: 56px; }
    .container { padding: 0 20px; }
    .hz-carousel { min-height: 550px; }
    .hz-card { height: 480px; }
    .c_stats__inner { padding: 24px 20px; gap: 0; }
    .c_stats__item { padding: 8px 16px; }
    .c_stats__divider { width: 100%; height: 1px; }
    .c_hero__video-bg video { filter: blur(10px) brightness(0.3) contrast(1.3) saturate(0.2) hue-rotate(200deg); }
}

@media (max-width: 600px) {
    #c_footer .c_footer__bottom--payments { gap: 16px; }
    .c_offer--subtitle { font-size: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}

@media (max-width: 480px) {
    #c_hero .c_hero--title { font-size: 38px; }
    .c_hero__video-bg video { display: none; }
    .c_btn-list { flex-direction: column; align-items: center; }
    .c_btn_secondary, .c_btn_ghost { width: 100%; max-width: 280px; justify-content: center; }
    .c_product__row { grid-template-columns: 1fr; gap: 24px; }
    .c_product__row--reverse { direction: ltr; }
    .hz-carousel { min-height: 460px; }
    .hz-card { height: 420px; }
    .c_videos__track { height: 280px; }
    .c_videos__slide { max-width: 90vw; }
    .c_ba__slider { aspect-ratio: 4/3; }
    #floating-pill { bottom: 16px; max-width: calc(100vw - 32px); }
    .c_cta__btn { width: 100%; justify-content: center; }
    #c_pricing .c_pricing__card { padding: 24px 20px; }
    .c_compare { max-width: 100%; }
}


#c_product,
#c_videos {
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}
