

 /* ── BASE ── */

.vk-faq {

 position: relative;

 padding: 80px 44px;

 background: #000000;

 overflow: hidden;

 isolation: isolate;

 }



.vk-faq__grain {

 position: absolute;

 inset: 0;

 z-index: 0;

 opacity: 0.03;

 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

 background-size: 180px;

 pointer-events: none;

 }



 /* ── HEADER ── */

.vk-faq__header {

 text-align: center;

 margin-bottom: 52px;

 position: relative;

 z-index: 1;

 }



.vk-faq__eye {

 font-family: 'Inter', -apple-system, sans-serif;

 font-size: 10px;

 font-weight: 700;

 letter-spacing: 0.18em;

 text-transform: uppercase;

 color: #AAFF00;

 margin-bottom: 12px;

 display: flex;

 align-items: center;

 justify-content: center;

 gap: 12px;

 }

.vk-faq__eye-line {

 width: 22px;

 height: 2px;

 background: #AAFF00;

 display: block;

 flex-shrink: 0;

 border-radius: 1px;

 }



.vk-faq__title {

 font-family: 'Bebas Neue', sans-serif;

 font-size: clamp(38px, 5vw, 60px);

 line-height: 0.92;

 text-transform: uppercase;

 letter-spacing: 0.02em;

 color: #FFFFFF;

 margin: 0;

 }



.vk-faq__subtitle {

 font-family: 'Inter', -apple-system, sans-serif;

 font-size: 14px;

 color: #555555;

 margin: 14px 0 0;

 letter-spacing: 0.02em;

 }



 /* ── FAQ CONTAINER ── */

.vk-faq__wrap {

 max-width: 820px;

 margin: 0 auto;

 border: 1px solid rgba(255,255,255,0.06);

 border-radius: 12px;

 overflow: hidden;

 position: relative;

 z-index: 1;

 background: #0A0A0A;

 }



 /* ── GROUP LABEL ── */

.vk-faq__group-label {

 font-family: 'Inter', -apple-system, sans-serif;

 font-size: 9px;

 font-weight: 800;

 letter-spacing: 0.18em;

 text-transform: uppercase;

 color: #AAFF00;

 background: #050505;

 padding: 12px 28px;

 border-bottom: 1px solid rgba(255,255,255,0.06);

 }

.vk-faq__group-label:not(:first-child) {

 border-top: 1px solid rgba(255,255,255,0.06);

 }



 /* ── FAQ ITEM ── */

.vk-faq__item {

 border-bottom: 1px solid rgba(255,255,255,0.06);

 position: relative;

 transition: background 0.25s ease;

 }

.vk-faq__item:last-child { border-bottom: none; }



.vk-faq__item::before {

 content: '';

 position: absolute;

 left: 0;

 top: 0;

 bottom: 0;

 width: 2px;

 background: #AAFF00;

 transform: scaleY(0);

 transform-origin: top;

 transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

 z-index: 2;

 }

.vk-faq__item.is-open::before {

 transform: scaleY(1);

 }

.vk-faq__item.is-open {

 background: rgba(170,255,0,0.01);

 }



 /* ── QUESTION BUTTON ── */

.vk-faq__q {

 width: 100%;

 padding: 22px 28px;

 background: transparent;

 border: none;

 cursor: pointer;

 display: flex;

 align-items: center;

 justify-content: space-between;

 gap: 20px;

 text-align: left;

 transition: background 0.2s ease;

 }

.vk-faq__q:hover { background: rgba(255,255,255,0.02); }

.vk-faq__item.is-open.vk-faq__q { background: transparent; }



.vk-faq__q span {

 font-family: 'Inter', -apple-system, sans-serif;

 font-size: 14px;

 font-weight: 600;

 color: #FFFFFF;

 line-height: 1.45;

 transition: color 0.2s ease;

 }

.vk-faq__item.is-open.vk-faq__q span { color: #AAFF00; }



 /* ── ICON ── */

.vk-faq__icon {

 width: 30px;

 height: 30px;

 border-radius: 6px;

 background: rgba(255,255,255,0.04);

 border: 1px solid rgba(255,255,255,0.08);

 display: flex;

 align-items: center;

 justify-content: center;

 color: #555555;

 flex-shrink: 0;

 transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;

 }

.vk-faq__item.is-open.vk-faq__icon {

 background: #AAFF00;

 border-color: #AAFF00;

 color: #000000;

 box-shadow: 0 0 12px rgba(170,255,0,0.2);

 }

.vk-faq__q:hover.vk-faq__icon {

 border-color: rgba(255,255,255,0.15);

 color: #888888;

 }



.vk-faq__icon-v {

 transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;

 transform-origin: center;

 }

.vk-faq__item.is-open.vk-faq__icon-v {

 transform: rotate(90deg);

 opacity: 0;

 }



 /* ── ANSWER ── */

.vk-faq__a {

 max-height: 0;

 overflow: hidden;

 transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

 }

.vk-faq__item.is-open.vk-faq__a {

 max-height: 500px;

 }



.vk-faq__a-inner {

 padding: 0 28px 24px 28px;

 font-family: 'Inter', -apple-system, sans-serif;

 font-size: 13px;

 color: #888888;

 line-height: 1.8;

 }



.vk-faq__link {

 display: inline-block;

 /* 11px uppercase text is only ~15px tall; pad it out to a 24px tap target. */

 margin-top: 6px;

 padding: 6px 2px;

 min-height: 24px;

 line-height: 1.5;

 color: #AAFF00;

 font-weight: 700;

 font-size: 11px;

 letter-spacing: 0.08em;

 text-transform: uppercase;

 text-decoration: none;

 transition: opacity 0.2s ease, transform 0.2s ease;

 }

.vk-faq__link:hover {

 opacity: 0.8;

 transform: translateX(3px);

 }



 /* ── DIVIDER ── */

.vk-faq__divider {

 height: 1px;

 margin-top: 80px;

 background: linear-gradient(90deg, transparent 0%, rgba(170,255,0,0.25) 25%, rgba(170,255,0,0.4) 50%, rgba(170,255,0,0.25) 75%, transparent 100%);

 position: relative;

 z-index: 1;

 }



 /* ── RESPONSIVE ── */

 @media (max-width: 960px) {

.vk-faq { padding: 64px 28px; }

.vk-faq__divider { margin-top: 64px; }

 }



 @media (max-width: 640px) {

.vk-faq { padding: 52px 16px; }

.vk-faq__header { margin-bottom: 36px; }

.vk-faq__wrap { border-radius: 10px; }

.vk-faq__q { padding: 18px 20px; }

.vk-faq__q span { font-size: 13px; }

.vk-faq__a-inner { padding: 0 20px 20px; font-size: 12px; }

.vk-faq__group-label { padding: 10px 20px; }

.vk-faq__divider { margin-top: 48px; }

 }



 @media (max-width: 375px) {

.vk-faq { padding: 40px 12px; }

.vk-faq__q { padding: 16px 16px; }

.vk-faq__a-inner { padding: 0 16px 18px; }

.vk-faq__group-label { padding: 10px 16px; }

 }



 /* ── ACCESSIBILITY ── */

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

.vk-faq__a { transition: none; }

.vk-faq__item::before { transition: none; }

.vk-faq__icon-v { transition: none; }

.vk-faq__icon { transition: none; }

 }

