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

:root {
    --bg: #050a0f;
    --bg-2: #0a121a;
    --accent: #00ff88;
    --accent-2: #00cc6a;
    --text: #e0e6ed;
    --text-dim: #8b9bb4;
    --border: rgba(0, 255, 136, 0.15);
    --card-bg: rgba(10, 18, 26, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === SCANLINES === */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.6;
}

.scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* === CUSTOM CURSOR === */
body {
    cursor: none;
}

.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 99999 !important;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    opacity: 1 !important;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 2px solid var(--accent);
    opacity: 0.8;
    background: rgba(0, 255, 136, 0.1);
    transition: width 0.15s, height 0.15s, border-color 0.15s, opacity 0.15s;
}

.cursor.hover {
    width: 4px;
    height: 4px;
}

.cursor-follower.hover {
    width: 48px;
    height: 48px;
    border-color: var(--accent);
    opacity: 1;
    background: rgba(0, 255, 136, 0.2);
}

@media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    width: 90%;
    max-width: 520px;
    padding: 40px;
}

.preloader-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: center;
}

.preloader-terminal {
    min-height: 140px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    padding: 20px;
    font-size: 0.8rem;
    color: var(--accent);
    line-height: 1.8;
    margin-bottom: 28px;
    overflow: hidden;
}

.preloader-terminal .line {
    display: block;
    opacity: 0;
    animation: termFadeIn 0.2s forwards;
}

@keyframes termFadeIn {
    to { opacity: 1; }
}

.preloader-bar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.preloader-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.15s linear;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.preloader-percent {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    min-width: 40px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* === MATRIX CANVAS === */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 32px;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* === HERO === */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 64px;
}

.hero-small {
    min-height: 50vh;
    padding-top: 120px;
}

.glitch-wrapper {
    display: inline-block;
}

.glitch {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 4px;
    position: relative;
    text-transform: uppercase;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff0055;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ccff;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(14px, 9999px, 127px, 0); }
    20% { clip: rect(80px, 9999px, 30px, 0); }
    40% { clip: rect(30px, 9999px, 110px, 0); }
    60% { clip: rect(90px, 9999px, 20px, 0); }
    80% { clip: rect(10px, 9999px, 100px, 0); }
    100% { clip: rect(60px, 9999px, 50px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(20px, 9999px, 30px, 0); }
    40% { clip: rect(90px, 9999px, 10px, 0); }
    60% { clip: rect(40px, 9999px, 80px, 0); }
    80% { clip: rect(110px, 9999px, 50px, 0); }
    100% { clip: rect(10px, 9999px, 120px, 0); }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-top: 16px;
    opacity: 0.9;
}

.desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.25);
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* === SECTIONS === */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: 2px;
}

/* === SERVICES === */
.services {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(4px);
    transform-style: preserve-3d;
    will-change: transform;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.08);
}

.card.featured {
    border-color: #ff5555;
    box-shadow: 0 0 40px rgba(255, 85, 85, 0.15);
    position: relative;
    overflow: hidden;
}

.card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff5555, #ff8888);
}

.card.featured:hover {
    border-color: #ff5555;
    box-shadow: 0 15px 50px rgba(255, 85, 85, 0.25);
}

.card.featured h3 {
    color: #ff5555;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff5555, #ff8888);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 85, 85, 0.4);
}

.card-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* === PROCESS === */
.process-video {
    margin-bottom: 60px;
}

.process-screen {
    position: relative;
    background: linear-gradient(145deg, rgba(0, 15, 15, 0.95) 0%, rgba(0, 8, 8, 0.98) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 100px rgba(0, 255, 136, 0.05);
}

.process-scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    padding: 60px 20px 40px;
}

.scene-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    animation: particleRise 4s ease-in-out infinite;
}

.floating-particles::before { left: 20%; animation-delay: 0s; }
.floating-particles::after { left: 80%; animation-delay: 2s; }

@keyframes particleRise {
    0%, 100% { opacity: 0; transform: translateY(100px) scale(0); }
    50% { opacity: 0.8; transform: translateY(-50px) scale(1); }
}

.process-scene {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    padding: 40px;
}

.process-scene.active {
    opacity: 1;
    visibility: visible;
}

.scene-content {
    text-align: center;
    z-index: 2;
    max-width: 500px;
    width: 100%;
}

.scene-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-ring-3d {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent);
    border-bottom-color: var(--accent);
    animation: ring3DRotate 3s linear infinite;
}

@keyframes ring3DRotate {
    from { transform: rotate(0deg) rotateX(0deg); }
    50% { transform: rotate(180deg) rotateX(180deg); }
    to { transform: rotate(360deg) rotateX(360deg); }
}

.icon-ring {
    position: absolute;
    inset: -4px;
    border: 1px dashed rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    animation: ringRotate 8s linear infinite reverse;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.scene-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.6));
    animation: iconBounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.05); }
}

.scene-title {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.scene-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.scene-visual {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

/* === SCENE 1: CYBER FORM === */
.cyber-form {
    position: relative;
    background: rgba(0, 10, 10, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    overflow: hidden;
    width: 340px;
    max-width: 90vw;
}

.cyber-form-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.cyber-form-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.cyber-form-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.cyber-form-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.cyber-form-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.cyber-header {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05));
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.cyber-title {
    font-size: 0.7rem;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1.5px;
}

.cyber-status {
    font-size: 0.7rem;
    background: var(--accent);
    color: var(--bg);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

.cyber-body {
    padding: 20px;
}

.cyber-input {
    margin-bottom: 16px;
    position: relative;
}

.cyber-input:last-child {
    margin-bottom: 0;
}

.cyber-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(0, 255, 136, 0.6);
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.cyber-value {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 24px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.15);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.value-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.typing-cursor {
    color: var(--accent);
    animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    animation: inputScan 2s ease-in-out infinite;
}

@keyframes inputScan {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.cyber-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(0, 255, 136, 0.05);
    border-top: 1px solid rgba(0, 255, 136, 0.15);
}

.cyber-btn {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.3));
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--accent);
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cyber-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 200, 100, 0.4));
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

.btn-particles {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: btnShine 1.5s infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cyber-timer {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: rgba(0, 255, 136, 0.8);
}

.timer-sec {
    color: var(--accent);
    font-weight: 700;
    animation: timerPulse 1s infinite;
}

@keyframes timerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Progress Bar */
.scene-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), rgba(0, 255, 136, 0.6));
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    transition: width 0.1s linear;
}

.progress-glow {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.8));
    filter: blur(8px);
}

/* Scene Dots */
.scene-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.scene-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scene-dot.active {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    transform: scale(1.3);
}

.scene-dot:hover {
    border-color: var(--accent);
}

/* Play/Pause Button */
.play-pause {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-pause:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* === PROCESS SCENE 2: PAYMENT === */
.payment-container {
    position: relative;
    width: 280px;
    height: 180px;
}

.card-3d {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.card-front {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 150, 100, 0.25) 100%);
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    padding: 14px;
    position: relative;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-8px) rotateY(5deg); }
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { background-position: 200% 50%; }
    50% { background-position: -200% 50%; }
}

.card-chip {
    width: 36px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 5px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.card-chip::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(0, 0, 0, 0.3);
}

.card-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.card-holder {
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-logo {
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.crypto-options {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 6px;
}

.crypto-coin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: coinFloat 2s ease-in-out infinite;
}

.crypto-coin.btc {
    background: linear-gradient(135deg, #f7931a, #ffaa33);
    animation-delay: 0s;
}

.crypto-coin.eth {
    background: linear-gradient(135deg, #627eea, #8a9fff);
    animation-delay: 0.3s;
}

.crypto-coin.usdt {
    background: linear-gradient(135deg, #26a17b, #3dd19b);
    animation-delay: 0.6s;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.payment-shield {
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    animation: shieldPulse 2s infinite;
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
}

/* === PROCESS SCENE 3: WORK === */
.work-container {
    text-align: center;
}

.radar-scan {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    margin: 0 auto 16px;
    overflow: hidden;
}

.radar-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.radar-circle.c1 { inset: 10px; }
.radar-circle.c2 { inset: 25px; }
.radar-circle.c3 { inset: 40px; }

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent));
    transform-origin: left center;
    animation: radarSweep 2s linear infinite;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: 30px;
    right: 35px;
    opacity: 0;
    animation: radarBlip 2s infinite;
}

@keyframes radarBlip {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.work-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 6px;
    min-width: 180px;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'JetBrains Mono', monospace;
}

.stat-value.active {
    color: var(--accent);
    animation: statusPulse 1.5s infinite;
}

.stat-value.percent {
    color: var(--accent);
    font-weight: 700;
}

/* === PROCESS SCENE 4: RESULT === */
.result-container {
    position: relative;
}

.archive-box {
    position: relative;
    width: 80px;
    height: 60px;
    margin: 0 auto 16px;
}

.archive-lid {
    width: 90px;
    height: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 200, 100, 0.4));
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: lidOpen 1s ease-in-out infinite;
}

@keyframes lidOpen {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(-10deg); }
}

.archive-body {
    width: 80px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.3));
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.archive-success {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    animation: successPop 0.5s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successPop {
    to { opacity: 1; transform: scale(1); }
}

.success-check {
    font-size: 1.2rem;
    color: var(--bg);
    font-weight: 700;
}

.success-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: ringExpand 1s ease-out forwards;
}

@keyframes ringExpand {
    from { opacity: 1; transform: scale(0.5); }
    to { opacity: 0; transform: scale(1.5); }
}

.files-list {
    text-align: left;
    margin-bottom: 12px;
}

.file-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 6px;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fileRowIn 0.5s ease forwards;
    max-width: 240px;
}

.file-row:nth-child(1) { animation-delay: 0.3s; }
.file-row:nth-child(2) { animation-delay: 0.5s; }
.file-row:nth-child(3) { animation-delay: 0.7s; }

@keyframes fileRowIn {
    to { opacity: 1; transform: translateX(0); }
}

.file-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.file-name {
    flex: 1;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    font-size: 0.65rem;
    color: rgba(0, 255, 136, 0.6);
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

.download-anim {
    position: relative;
    height: 40px;
}

.download-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: downloadBounce 1s ease-in-out infinite;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.download-line {
    width: 60px;
    height: 2px;
    background: rgba(0, 255, 136, 0.3);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 28px 32px;
    transition: border-color 0.3s;
}

.step:hover {
    border-color: var(--accent);
}

.step-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
    min-width: 48px;
}

.step-body h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.step-body p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-q-mark {
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.faq-toggle {
    width: 12px;
    height: 12px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform 0.3s;
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 0;
    transform: translateY(-50%);
}

.faq-item.active .faq-toggle::after {
    transform: translateY(-50%) rotate(90deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* === REVIEWS === */
.reviews {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        var(--bg);
    background-size: 40px 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: linear-gradient(145deg, rgba(15,25,35,0.9) 0%, rgba(8,14,20,0.95) 100%);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-left: 3px solid var(--accent);
    padding: 32px;
    height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 48px rgba(0, 255, 136, 0.12);
}

.review-quote {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.06;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.review-stars {
    color: #ffcc00;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.25);
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
}

.review-text::before {
    content: '«';
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 2px;
}

.review-text::after {
    content: '»';
    color: var(--accent);
    font-size: 1.2rem;
    margin-left: 2px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.3);
    flex-shrink: 0;
}

.review-author span:last-child {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

/* === TARIFFS === */
.tariffs {
    background: var(--bg);
}

.tariffs-grid {
    align-items: stretch;
}

.tariff {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    will-change: transform;
}

.tariff:hover {
    border-color: var(--accent);
}

.tariff.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.06);
}

.tariff.featured.red {
    border-color: #ff5555;
    box-shadow: 0 0 40px rgba(255, 85, 85, 0.15);
}

.tariff.featured.red .badge {
    background: linear-gradient(135deg, #ff5555, #ff8888);
}

.tariff.featured.red h3 {
    color: #ff5555;
}

.tariff.featured.red .price {
    color: #ff5555;
}

.tariff.featured.red:hover {
    box-shadow: 0 0 60px rgba(255, 85, 85, 0.25);
}

.badge {
    position: absolute;
    top: -12px;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tariff h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.tariff ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    flex: 1;
}

.tariff ul li {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-left: 20px;
    position: relative;
}

.tariff ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 15, 0.92);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.modal-icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
}

.modal-title {
    font-size: 1.15rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    flex: 1;
    margin: 0;
}

.modal-price {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

/* === TELEGRAM MANAGER MODAL === */
.tg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.tg-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tg-modal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.15);
}

.tg-modal-overlay.active .tg-modal {
    transform: scale(1);
}

.tg-modal .tg-big-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 136, 204, 0.1);
    border: 2px solid #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: tgPulse 2s infinite;
    overflow: hidden;
    padding: 4px;
}

.tg-modal .tg-big-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes tgPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(0, 136, 204, 0); }
}

.tg-modal h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.tg-modal .tg-subtitle {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.tg-timer-display {
    font-size: 3rem;
    font-family: 'JetBrains Mono', monospace;
    color: #0088cc;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}

.tg-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
}

.tg-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0088cc, #00a8ff);
    border-radius: 2px;
    transition: width 1s linear;
    width: 100%;
}

.tg-log-lines {
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.8;
    min-height: 120px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.tg-log-lines .log-line {
    opacity: 0;
    animation: logAppear 0.3s forwards;
}

.tg-log-lines .log-line.new {
    color: var(--accent);
}

.tg-log-lines .log-line.done {
    color: #0088cc;
}

@keyframes logAppear {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.tg-modal .tg-cancel {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.tg-modal .tg-cancel:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tg-modal .tg-redirect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 8px;
}

.tg-modal .tg-redirect-btn:hover {
    background: #0099e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

.tg-modal .tg-redirect-btn.hidden {
    display: none;
}

/* === FORM === */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(139, 155, 180, 0.5);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b9bb4'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--bg-2);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #ff5577;
    margin-top: 6px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff5577;
    box-shadow: 0 0 0 2px rgba(255, 85, 119, 0.1);
}

.form-group.error .error-msg {
    display: block;
}

.input-row {
    display: flex;
    gap: 8px;
}

.input-row input {
    flex: 1;
}

.btn-check {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: inherit;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn-check:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn-check:disabled {
    opacity: 0.5;
    cursor: wait;
}

.check-result {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 85, 85, 0.08);
    border: 1px solid rgba(255, 85, 85, 0.3);
    display: none;
    font-size: 0.8rem;
}

.check-result.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.check-result .result-line {
    display: block;
    margin-bottom: 4px;
    font-family: inherit;
}

.check-result .result-line.ok { color: var(--accent); }
.check-result .result-line.warn { color: #ffcc00; }
.check-result .result-line.danger { color: #ff5555; }
.check-result .result-line:last-child { margin-bottom: 0; }

/* === VK SCAN PANEL === */
.vk-scan-panel {
    margin-top: 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    display: none;
    overflow: hidden;
}

.vk-scan-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.vk-scan-header {
    background: rgba(0, 255, 136, 0.08);
    padding: 10px 14px;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.vk-scan-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 1s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.vk-scan-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

.vk-scan-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}

.vk-scan-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.2s linear;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.vk-scan-percent {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    min-width: 36px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.vk-scan-log {
    padding: 14px;
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-dim);
    min-height: 120px;
    max-height: 160px;
    overflow-y: auto;
}

.vk-scan-log .log-line {
    display: block;
}

.vk-scan-log .log-line.ok { color: var(--accent); }
.vk-scan-log .log-line.warn { color: #ffcc00; }
.vk-scan-log .log-line.danger { color: #ff5555; }

.vk-scan-final {
    display: none;
    padding: 16px;
    border-top: 1px solid rgba(255, 85, 85, 0.3);
    background: rgba(255, 85, 85, 0.05);
}

.vk-scan-final.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.vk-scan-alert {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff5555;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.vk-scan-data {
    display: grid;
    gap: 8px;
}

.vk-scan-data > div {
    font-size: 0.78rem;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
}

.vk-scan-data > div span:first-child {
    color: var(--text);
}

.vk-scan-danger {
    color: #ff5555;
    font-weight: 700;
}

.vk-scan-found {
    color: var(--accent);
    font-weight: 700;
}

/* === WHATSAPP SCAN PANEL === */
.whatsapp-scan-panel {
    margin-top: 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    display: none;
    overflow: hidden;
}

.whatsapp-scan-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.whatsapp-scan-header {
    background: rgba(0, 255, 136, 0.08);
    padding: 10px 14px;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.whatsapp-scan-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 1s infinite;
}

.whatsapp-scan-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid var(--border);
}

.whatsapp-scan-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}

.whatsapp-scan-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.2s linear;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.whatsapp-scan-percent {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    min-width: 36px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.whatsapp-scan-log {
    padding: 14px;
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-dim);
    min-height: 120px;
    max-height: 160px;
    overflow-y: auto;
}

.whatsapp-scan-log .log-line {
    display: block;
}

.whatsapp-scan-log .log-line.ok { color: var(--accent); }
.whatsapp-scan-log .log-line.warn { color: #ffcc00; }
.whatsapp-scan-log .log-line.danger { color: #ff5555; }

.whatsapp-scan-final {
    display: none;
    padding: 16px;
    border-top: 1px solid rgba(255, 85, 85, 0.3);
    background: rgba(255, 85, 85, 0.05);
}

.whatsapp-scan-final.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.whatsapp-scan-alert {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff5555;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.whatsapp-scan-data {
    display: grid;
    gap: 8px;
}

.whatsapp-scan-data > div {
    font-size: 0.78rem;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
}

.whatsapp-scan-data > div span:first-child {
    color: var(--text);
}

/* === ONLINE STATS === */
.online-stats {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 28px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: statShine 3s infinite;
}

@keyframes statShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stat-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.stat-live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
    50% { opacity: 0.4; box-shadow: 0 0 0 transparent; }
}

/* === TICKER === */
.ticker {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-inner {
    display: flex;
    gap: 48px;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.ticker-item .icon {
    color: var(--accent);
    font-weight: 700;
}

.ticker-item .time {
    color: var(--text-dim);
    opacity: 0.6;
    font-size: 0.75rem;
}


.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loader {
    display: flex;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(5, 10, 15, 0.3);
    border-top-color: var(--bg);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SUCCESS === */
.success-msg {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.success-msg.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.success-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
}

.success-msg h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.success-msg p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.cta-section p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* === FOOTER === */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: var(--bg);
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.footer-top .logo {
    margin-bottom: 12px;
}

.footer-top p {
    font-size: 0.8rem;
    color: var(--text-dim);
    max-width: 500px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-terminal {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-dim);
    opacity: 0.5;
    letter-spacing: 0.5px;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.footer-stat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.footer-stat-dot.online {
    background: #00ff88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}

.footer-stat-dot.pulse {
    background: #ffcc00;
    box-shadow: 0 0 6px rgba(255, 204, 0, 0.5);
    animation: footerDotPulse 1.5s infinite;
}

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

/* === LIVE FEED === */
.live-feed {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    border-top: 1px solid rgba(0, 255, 136, 0.15);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.live-feed-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: liveFeedScroll 30s linear infinite;
}

.live-feed-label {
    background: #ff0040;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
    animation: liveLabelPulse 1.5s infinite;
}

@keyframes liveLabelPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-feed-items {
    display: flex;
    gap: 40px;
}

.live-feed-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
    animation: liveDotBlink 1.2s infinite;
    flex-shrink: 0;
}

@keyframes liveDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes liveFeedScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === MATRIX SIDES === */
#matrixSides {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* === SERVICES DETAIL === */
.services-detail {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.services-detail .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-detail-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.08);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
}

.service-detail-title h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 4px;
}

.service-detail-price {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.service-detail-body {
    padding: 32px 36px;
}

.service-detail-body > p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

.service-detail-list .check {
    color: var(--accent);
    font-weight: 700;
}

.service-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.service-detail-meta .meta-item {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border: 1px solid var(--border);
}

/* === GUARANTEES === */
.guarantees {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.guarantee-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 36px;
    transition: border-color 0.3s, transform 0.3s;
}

.guarantee-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.guarantee-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 12px;
}

.guarantee-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.guarantee-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.guarantee-tags .tag {
    font-size: 0.7rem;
    color: var(--accent);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 4px 10px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === SECURITY LEVEL === */
.security-level {
    padding: 80px 0;
    background: var(--bg-2);
    position: relative;
    z-index: 1;
}

.security-bars {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-bar-item {
    display: grid;
    grid-template-columns: 200px 1fr 100px;
    align-items: center;
    gap: 16px;
}

.security-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-align: right;
}

.security-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.security-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
    transition: width 1s ease;
}

.security-value {
    font-size: 0.78rem;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    text-align: left;
}

@media (max-width: 768px) {
    .security-bar-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .security-label {
        text-align: left;
    }
    .security-value {
        text-align: right;
    }
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .service-detail-list {
        grid-template-columns: 1fr;
    }
}

/* === VIP TARIFF === */
.tariff.vip {
    border-color: #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1);
    position: relative;
    padding-top: 52px;
}

.tariff.vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 204, 0, 0.04) 50%,
        transparent 60%
    );
    animation: vipShine 4s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes vipShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tariff.vip .badge {
    background: #ffcc00;
    color: #000;
    animation: vipPulse 1.5s infinite;
    z-index: 2;
}

@keyframes vipPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 204, 0, 0); }
}

.tariff.vip h3 {
    color: #ffcc00;
}

.tariff.vip .price {
    color: #ffcc00;
}

/* === AUDIO TOGGLE === */
.audio-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.audio-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.2);
}

.audio-toggle.active {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

/* === ABOUT PAGE === */
.about-intro {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 28px;
    text-align: center;
    transition: border-color 0.3s;
}

.stat-item:hover {
    border-color: var(--accent);
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    position: relative;
    z-index: 1;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 36px;
    transition: border-color 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    will-change: transform;
}

.mission-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.08);
}

.mission-icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.mission-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.team {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
}

.team-card h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.timeline {
    padding: 80px 0;
    background: var(--bg-2);
    position: relative;
    z-index: 1;
}

.timeline-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.timeline-year {
    min-width: 80px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-align: right;
    position: relative;
    z-index: 1;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -38px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-2);
}

.timeline-body {
    padding-left: 24px;
}

.timeline-body h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 6px;
}

.timeline-body p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
    
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.mobile-open {
        display: flex;
    }
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .step {
        flex-direction: column;
        gap: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* === TRACKING PAGE === */
.tracking-search {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tracking-box {
    max-width: 520px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    text-align: center;
}

.tracking-box h2 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.tracking-box > p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.tracking-form .form-group {
    margin-bottom: 16px;
}

.tracking-form input {
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tracking-result {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.tracking-result.hidden {
    display: none;
}

.result-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.result-header h3 {
    font-size: 1.2rem;
    color: var(--text);
}

.order-id {
    color: var(--accent);
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.order-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

.info-item {
    text-align: center;
}

.info-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.info-item .value {
    font-size: 0.95rem;
    color: var(--text);
}

.info-item .value.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.status-section {
    margin-bottom: 32px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.processing {
    background: rgba(255, 204, 0, 0.1);
    border-color: #ffcc00;
    color: #ffcc00;
}

.status-badge.completed {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.status-time {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.status-progress {
    margin-bottom: 32px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.5s ease;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 136, 0.2);
    z-index: -1;
}

.step:last-child::before {
    display: none;
}

.step.active .step-circle {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
}

.step.completed .step-circle {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.step.completed::before {
    background: var(--accent);
}

.step-circle {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dim);
    transition: all 0.3s;
}

.step.active .step-circle {
    animation: pulseStep 1.5s infinite;
}

@keyframes pulseStep {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
}

.step.active .step-label {
    color: var(--accent);
}

.timeline {
    margin-bottom: 32px;
}

.timeline h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}

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

.timeline-event {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--border);
    transition: border-color 0.3s;
}

.timeline-event.completed {
    border-left-color: var(--accent);
}

.timeline-event.current {
    border-left-color: #ffcc00;
    background: rgba(255, 204, 0, 0.05);
}

.timeline-event .event-time {
    font-size: 0.75rem;
    color: var(--text-dim);
    min-width: 60px;
}

.timeline-event .event-desc {
    font-size: 0.85rem;
    color: var(--text);
}

.timeline-event.completed .event-desc {
    color: var(--accent);
}

.download-section {
    padding: 24px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--accent);
    text-align: center;
    margin-bottom: 24px;
}

.download-section.hidden {
    display: none;
}

.download-section h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.download-section > p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.download-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.notification-settings {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.notification-settings h4 {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.notification-settings > p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

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

.notify-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
}

.notify-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.history-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.history-section.hidden {
    display: none;
}

.history-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
    cursor: pointer;
}

.history-item:hover {
    border-color: var(--accent);
}

.history-info h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.history-info p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.history-status {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.history-status.pending {
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
}

.history-status.completed {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent);
}

/* === VK PROFILE SECTION (как в ВКонтакте) === */
.vk-profile-section {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", sans-serif;
    color: #000000;
}

/* --- Шапка --- */
.vk-header {
    position: relative;
    background: #fff;
}

.vk-cover-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(90deg, #4b76b8 0%, #6a93d1 50%, #8ab4e9 100%);
    overflow: hidden;
}

.vk-cover {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.5 0 6.5-2.5 7.5-6C19.5 8.5 22.5 6 26 6s6.5 2.5 7.5 6c1 3.5 4 6 7.5 6s6.5-2.5 7.5-6C49.5 8.5 52.5 6 56 6s6.5 2.5 7.5 6c1 3.5 4 6 7.5 6s6.5-2.5 7.5-6C79.5 8.5 82.5 6 86 6s6.5 2.5 7.5 6c1 3.5 4 6 7.5 6' stroke='rgba(255,255,255,0.08)' fill='none' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.vk-header-bottom {
    display: flex;
    align-items: flex-end;
    padding: 0 24px;
    position: relative;
    margin-top: -60px;
    padding-bottom: 16px;
    gap: 20px;
}

.vk-avatar-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.vk-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    overflow: hidden;
    background: #e1e4e8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.vk-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vk-header-info {
    flex: 1;
    padding-bottom: 8px;
    min-width: 0;
}

.vk-name-wrap {
    margin-bottom: 12px;
}

.vk-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.vk-online {
    font-size: 0.82rem;
    color: #818c99;
    margin: 0;
}

.vk-header-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.vk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.15s, opacity 0.15s;
    line-height: 1.4;
}

.vk-btn-primary {
    background: #0077ff;
    color: #ffffff;
}

.vk-btn-primary:hover {
    background: #0065d9;
}

.vk-btn-secondary {
    background: #f0f2f5;
    color: #000000;
    padding: 8px 12px;
    font-size: 1rem;
}

.vk-btn-secondary:hover {
    background: #e7e8ec;
}

/* --- Навигация --- */
.vk-nav {
    display: flex;
    gap: 4px;
    padding: 0 24px;
    border-bottom: 1px solid #e7e8ec;
    background: #ffffff;
}

.vk-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 12px;
    color: #000000;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: border-color 0.15s;
}

.vk-nav-link:hover {
    border-bottom-color: #99a2ad;
}

.vk-nav-link.active {
    border-bottom-color: #000000;
    color: #000000;
}

.vk-nav-count {
    color: #818c99;
    font-weight: 400;
}

/* --- Тело профиля --- */
.vk-body {
    display: flex;
    gap: 24px;
    padding: 20px 24px 30px;
    background: #f0f2f5;
}

.vk-col-left {
    width: 280px;
    flex-shrink: 0;
}

.vk-col-right {
    flex: 1;
    min-width: 0;
}

.vk-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.vk-block-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #818c99;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
}

.vk-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vk-info-row {
    display: flex;
    gap: 8px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.vk-info-label {
    color: #818c99;
    min-width: 110px;
    flex-shrink: 0;
}

.vk-info-val {
    color: #000000;
    font-weight: 500;
    word-break: break-word;
}

/* Блок предупреждения */
.vk-block-warn {
    border: 1px solid #f5d67b;
    background: #fffbf0;
}

.vk-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #8a6d1f;
    margin-bottom: 8px;
}

.vk-warn-text {
    font-size: 0.85rem;
    color: #8a6d1f;
    line-height: 1.5;
    margin: 0;
}

/* Фотографии */
.vk-block-photos {
    padding: 16px;
}

.vk-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.vk-block-count {
    color: #818c99;
    font-size: 0.85rem;
}

.vk-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.vk-photo-card {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e1e4e8;
    cursor: pointer;
    transition: opacity 0.15s;
}

.vk-photo-card:hover {
    opacity: 0.85;
}

.vk-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #e7e8ec 0%, #dce1e6 100%);
}

/* --- Экран загрузки взлома VK --- */
.vk-hack-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vk-hack-overlay.active {
    display: flex;
}

.vk-hack-container {
    width: 100%;
    max-width: 640px;
    background: #0a0a0a;
    border: 1px solid #1a3a1a;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.15), inset 0 0 40px rgba(0, 255, 136, 0.03);
}

.vk-hack-header {
    background: #111;
    padding: 10px 16px;
    font-size: 0.75rem;
    color: var(--accent);
    border-bottom: 1px solid #1a3a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.vk-hack-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: hackDotPulse 1s infinite;
}

@keyframes hackDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.vk-hack-terminal {
    padding: 20px 16px;
    min-height: 280px;
    max-height: 320px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    line-height: 1.7;
    color: #00ff88;
}

.vk-hack-terminal .term-line {
    display: block;
    opacity: 0;
    animation: termFadeIn 0.15s forwards;
    white-space: pre-wrap;
    word-break: break-all;
}

.vk-hack-terminal .term-line.ok { color: #00ff88; }
.vk-hack-terminal .term-line.warn { color: #ffcc00; }
.vk-hack-terminal .term-line.err { color: #ff5555; }
.vk-hack-terminal .term-line.info { color: #66ccff; }

@keyframes termFadeIn {
    to { opacity: 1; }
}

.vk-hack-progress-wrap {
    padding: 16px 20px 12px;
    border-top: 1px solid #1a3a1a;
}

.vk-hack-progress-bar {
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.vk-hack-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #00ccff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.vk-hack-progress-text {
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
}

.vk-hack-status {
    padding: 0 20px 16px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

/* --- Модальное окно VK --- */
.vk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vk-modal-overlay.active {
    display: flex;
}

.vk-modal {
    background: linear-gradient(145deg, #0a121a 0%, #050a0f 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.08);
    animation: vkModalIn 0.35s ease;
}

@keyframes vkModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vk-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vk-modal-close:hover {
    color: var(--accent);
}

.vk-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    animation: vkIconPulse 2s infinite;
}

@keyframes vkIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.vk-modal-title {
    font-size: 1.3rem;
    color: #ff5555;
    margin-bottom: 12px;
    font-weight: 700;
}

.vk-modal-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.vk-modal-price {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.vk-modal-price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.vk-modal-price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.vk-modal-features {
    text-align: left;
    margin-bottom: 24px;
    padding: 0 8px;
}

.vk-modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 255, 136, 0.06);
}

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

.vk-modal-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.vk-modal-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: var(--bg);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 12px;
}

.vk-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.vk-modal-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin: 0;
}

/* === WHATSAPP PROFILE SECTION === */
.wa-profile-section {
    margin-top: 40px;
    background: #111b21;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #e9edef;
}

/* --- Шапка WhatsApp --- */
.wa-header {
    background: #25d366;
    position: relative;
}

.wa-header-bar {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
    color: #fff;
    font-size: 1rem;
}

.wa-header-back {
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.9;
}

.wa-header-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
}

.wa-header-menu {
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.9;
}

.wa-header-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px 32px;
    text-align: center;
}

.wa-avatar {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-online-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    background: #25d366;
    border: 3px solid #111b21;
    border-radius: 50%;
}

.wa-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.wa-status {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 20px 0;
}

.wa-header-actions {
    display: flex;
    gap: 12px;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.15s, transform 0.15s;
}

.wa-btn-primary {
    background: #fff;
    color: #111b21;
}

.wa-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* --- Тело профиля WhatsApp --- */
.wa-body {
    padding: 16px;
    background: #0b141a;
}

.wa-block {
    background: #111b21;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.wa-block-label {
    font-size: 0.78rem;
    color: #8696a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.wa-info-list {
    padding: 4px 0;
}

.wa-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(134, 150, 160, 0.1);
}

.wa-info-row:last-child {
    border-bottom: none;
}

.wa-info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.wa-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wa-info-label {
    font-size: 0.78rem;
    color: #8696a0;
}

.wa-info-val {
    font-size: 0.92rem;
    color: #e9edef;
    font-weight: 500;
    word-break: break-word;
}

/* Блок предупреждения */
.wa-block-warn {
    background: linear-gradient(135deg, #1a2a1a 0%, #111b21 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.wa-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffcc00;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.wa-warn-text {
    font-size: 0.85rem;
    color: #d4a017;
    line-height: 1.5;
    margin: 0;
    padding: 0 18px 14px;
}

/* Медиа блок */
.wa-block-media {
    padding-bottom: 14px;
}

.wa-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 10px;
}

.wa-block-count {
    color: #8696a0;
    font-size: 0.82rem;
}

.wa-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0 3px;
}

.wa-media-item {
    aspect-ratio: 1;
    background: #202c33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: opacity 0.15s;
}

.wa-media-item:hover {
    opacity: 0.8;
}

.wa-media-placeholder {
    opacity: 0.6;
}

/* WhatsApp модалка */
.wa-modal .vk-modal-icon {
    animation: waIconPulse 2s infinite;
}

@keyframes waIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === TELEGRAM PROFILE SECTION === */
.tg-profile-section {
    margin-top: 40px;
    background: #17212b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

/* --- Шапка Telegram --- */
.tg-header {
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
    position: relative;
}

.tg-header-bar {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
    color: #fff;
    font-size: 1rem;
}

.tg-header-back {
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.9;
}

.tg-header-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
}

.tg-header-menu {
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.9;
}

.tg-header-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 36px;
    text-align: center;
}

.tg-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.25);
    margin-bottom: 16px;
    background: #242f3d;
}

.tg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.tg-username {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 6px 0;
}

.tg-status {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 20px 0;
}

.tg-header-actions {
    display: flex;
    gap: 12px;
}

.tg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.15s, transform 0.15s;
}

.tg-btn-primary {
    background: #fff;
    color: #2aabee;
}

.tg-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.tg-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.tg-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* --- Тело профиля Telegram --- */
.tg-body {
    padding: 16px;
    background: #0e1621;
}

.tg-block {
    background: #17212b;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.tg-block-label {
    font-size: 0.78rem;
    color: #6c7883;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.tg-info-list {
    padding: 4px 0;
}

.tg-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(108, 120, 131, 0.1);
}

.tg-info-row:last-child {
    border-bottom: none;
}

.tg-info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tg-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.tg-info-label {
    font-size: 0.78rem;
    color: #6c7883;
}

.tg-info-val {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
}

/* Статистика */
.tg-stats-row {
    display: flex;
    justify-content: space-around;
    padding: 14px 18px;
    gap: 8px;
}

.tg-stat-box {
    text-align: center;
    flex: 1;
}

.tg-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2aabee;
}

.tg-stat-label {
    font-size: 0.78rem;
    color: #6c7883;
    margin-top: 2px;
}

/* Блок предупреждения */
.tg-block-warn {
    background: linear-gradient(135deg, #1a2a2a 0%, #17212b 100%);
    border: 1px solid rgba(255, 204, 0, 0.15);
}

.tg-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffcc00;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.tg-warn-text {
    font-size: 0.85rem;
    color: #d4a017;
    line-height: 1.5;
    margin: 0;
    padding: 0 18px 14px;
}

/* Медиа блок */
.tg-block-media {
    padding-bottom: 14px;
}

.tg-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 10px;
}

.tg-block-count {
    color: #6c7883;
    font-size: 0.82rem;
}

.tg-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0 3px;
}

.tg-media-item {
    aspect-ratio: 1;
    background: #242f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: opacity 0.15s;
}

.tg-media-item:hover {
    opacity: 0.8;
}

.tg-media-placeholder {
    opacity: 0.6;
}

/* Telegram модалка */
.tg-modal .vk-modal-icon {
    animation: tgIconPulse 2s infinite;
}

@keyframes tgIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === ДЕТАЛИЗАЦИЯ PROFILE SECTION === */
.det-profile-section {
    margin-top: 40px;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

/* --- Шапка Детализации --- */
.det-header {
    background: linear-gradient(135deg, #e94560 0%, #c23a51 100%);
    position: relative;
}

.det-header-bar {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
    color: #fff;
    font-size: 1rem;
}

.det-header-back {
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.9;
}

.det-header-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
}

.det-header-menu {
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.9;
}

.det-header-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 36px;
    text-align: center;
}

.det-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.25);
    margin-bottom: 16px;
    background: #16213e;
}

.det-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.det-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.det-operator {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 4px 0;
    font-weight: 500;
}

.det-period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px 0;
}

.det-header-actions {
    display: flex;
    gap: 12px;
}

.det-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.15s, transform 0.15s;
}

.det-btn-primary {
    background: #fff;
    color: #e94560;
}

.det-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.det-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.det-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* --- Тело профиля Детализации --- */
.det-body {
    padding: 16px;
    background: #0f0f1a;
}

.det-block {
    background: #1a1a2e;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.det-block-label {
    font-size: 0.78rem;
    color: #8b8b9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.det-info-list {
    padding: 4px 0;
}

.det-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(139, 139, 154, 0.1);
}

.det-info-row:last-child {
    border-bottom: none;
}

.det-info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.det-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.det-info-label {
    font-size: 0.78rem;
    color: #8b8b9a;
}

.det-info-val {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
}

/* Блок предупреждения */
.det-block-warn {
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1a2e 100%);
    border: 1px solid rgba(233, 69, 96, 0.15);
}

.det-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e94560;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.det-warn-text {
    font-size: 0.85rem;
    color: #d4899a;
    line-height: 1.5;
    margin: 0;
    padding: 0 18px 14px;
}

/* Детализация модалка */
.det-modal .vk-modal-icon {
    animation: detIconPulse 2s infinite;
}

@keyframes detIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === INSTAGRAM PROFILE SECTION === */
.ig-profile-section {
    margin-top: 40px;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
}

/* --- Шапка Instagram --- */
.ig-header {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    position: relative;
}

.ig-header-bar {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 16px;
    color: #fff;
    font-size: 1rem;
}

.ig-header-back {
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.9;
}

.ig-header-username {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
}

.ig-header-menu {
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.9;
}

.ig-header-body {
    padding: 20px;
}

.ig-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.ig-avatar-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.ig-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000;
    box-sizing: border-box;
}

.ig-stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
    gap: 8px;
}

.ig-stat-box {
    text-align: center;
    flex: 1;
}

.ig-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.ig-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
}

.ig-user-info {
    text-align: center;
    margin-bottom: 16px;
}

.ig-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.ig-bio {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 4px 0;
}

.ig-website {
    font-size: 0.82rem;
    color: #a8d8ff;
    text-decoration: none;
}

.ig-website:hover {
    text-decoration: underline;
}

.ig-header-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.15s, transform 0.15s;
}

.ig-btn-primary {
    background: #fff;
    color: #833ab4;
}

.ig-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.ig-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.ig-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* --- Тело профиля Instagram --- */
.ig-body {
    background: #000000;
}

.ig-tabs {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
}

.ig-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    color: #8e8e8e;
    cursor: pointer;
    transition: color 0.15s;
}

.ig-tab.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.ig-tab:hover {
    color: #fff;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 2px;
}

.ig-grid-item {
    aspect-ratio: 1;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: opacity 0.15s;
}

.ig-grid-item:hover {
    opacity: 0.8;
}

.ig-grid-placeholder {
    opacity: 0.5;
}

/* Блоки Instagram */
.ig-block {
    background: #121212;
    border-radius: 10px;
    margin: 12px;
    overflow: hidden;
}

.ig-block-label {
    font-size: 0.78rem;
    color: #8e8e8e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.ig-info-list {
    padding: 4px 0;
}

.ig-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(142, 142, 142, 0.1);
}

.ig-info-row:last-child {
    border-bottom: none;
}

.ig-info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ig-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ig-info-label {
    font-size: 0.78rem;
    color: #8e8e8e;
}

.ig-info-val {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
}

/* Блок предупреждения */
.ig-block-warn {
    background: linear-gradient(135deg, #1a1212 0%, #121212 100%);
    border: 1px solid rgba(253, 29, 29, 0.15);
}

.ig-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fd1d1d;
    padding: 14px 18px 0;
    margin-bottom: 4px;
}

.ig-warn-text {
    font-size: 0.85rem;
    color: #e08080;
    line-height: 1.5;
    margin: 0;
    padding: 0 18px 14px;
}

/* Instagram модалка */
.ig-modal .vk-modal-icon {
    animation: igIconPulse 2s infinite;
}

@keyframes igIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(253, 29, 29, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(253, 29, 29, 0); }
}

/* === EMAIL PROFILE SECTION === */
.email-profile-section {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    border: 1px solid var(--border);
}

/* --- Шапка Email --- */
.email-header {
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    color: #000;
    position: relative;
}

.email-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
}

.email-header-back, .email-header-menu {
    cursor: pointer;
    font-size: 1.2rem;
}

.email-header-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    text-align: center;
}

.email-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0,0,0,0.2);
    margin-bottom: 12px;
}

.email-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.email-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #000;
}

.email-target {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0 0 2px;
    color: #000;
}

.email-service {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0 0 16px;
    color: #000;
}

.email-header-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 320px;
}

.email-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.email-btn-primary {
    background: #000;
    color: #ffcc00;
}

.email-btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.email-btn-secondary {
    background: rgba(0,0,0,0.2);
    color: #000;
}

.email-btn-secondary:hover {
    background: rgba(0,0,0,0.3);
}

/* --- Тело профиля Email --- */
.email-body {
    padding: 16px;
    background: #1a1a2e;
}

.email-block {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.email-block-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.email-info-icon {
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.email-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.email-info-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.email-info-val {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.email-block-warn {
    background: rgba(255, 204, 0, 0.05);
    border-color: rgba(255, 204, 0, 0.2);
}

.email-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.email-warn-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

/* Email модалка */
.email-modal .vk-modal-icon {
    animation: emailIconPulse 2s infinite;
}

@keyframes emailIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 204, 0, 0); }
}

@keyframes igIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* === ROBLOX PROFILE SECTION === */
.roblox-profile-section {
    margin-top: 40px;
    border-radius: 12px;
    background: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* --- Шапка Roblox --- */
.roblox-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roblox-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

.roblox-header-back {
    cursor: pointer;
}

.roblox-header-menu {
    cursor: pointer;
}

.roblox-header-body {
    text-align: center;
}

.roblox-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
}

.roblox-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #00ff88;
}

.roblox-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #00ff88;
    border: 2px solid #1a1a2e;
    border-radius: 50%;
}

.roblox-name {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.roblox-username {
    font-size: 0.9rem;
    color: #8b8b9a;
    margin: 0 0 8px 0;
}

.roblox-status {
    font-size: 0.85rem;
    color: #00ff88;
    margin: 0 0 16px 0;
}

.roblox-stats-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.roblox-stat-box {
    text-align: center;
}

.roblox-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.roblox-stat-label {
    font-size: 0.75rem;
    color: #8b8b9a;
}

.roblox-header-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.roblox-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.roblox-btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
}

.roblox-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

/* --- Тело профиля Roblox --- */
.roblox-body {
    padding: 16px;
    background: #1a1a2e;
}

.roblox-block {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.roblox-block-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roblox-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roblox-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.roblox-info-icon {
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.roblox-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.roblox-info-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.roblox-info-val {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.roblox-block-warn {
    background: rgba(255, 204, 0, 0.05);
    border-color: rgba(255, 204, 0, 0.2);
}

.roblox-warn-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.roblox-warn-text {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

/* === GEO LOCATION MODAL === */
.det-geo-modal {
    max-width: 480px;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    background: #1a1a2e;
    border: 1px solid rgba(233, 69, 96, 0.2);
    display: flex;
    flex-direction: column;
}

.det-geo-modal .vk-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.det-geo-modal .vk-modal-close:hover {
    background: rgba(233, 69, 96, 0.6);
}

.det-geo-header {
    text-align: center;
    padding: 20px 20px 12px;
    background: linear-gradient(135deg, #e94560 0%, #c23a51 100%);
    color: #fff;
    flex-shrink: 0;
}

.det-geo-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}

.det-geo-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 3px 0;
    color: #fff;
}

.det-geo-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Карта */
.det-geo-map {
    position: relative;
    padding: 12px;
    background: #0f0f1a;
    flex-shrink: 0;
}

.det-map-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    opacity: 0.4;
}

.det-map-cell {
    aspect-ratio: 1;
    background: #242438;
    border-radius: 4px;
    position: relative;
}

.det-map-cell.det-tower {
    background: #2a2a40;
    display: flex;
    align-items: center;
    justify-content: center;
}

.det-map-cell.det-tower.hot {
    background: rgba(233, 69, 96, 0.25);
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.tower-pulse {
    width: 8px;
    height: 8px;
    background: #e94560;
    border-radius: 50%;
    display: block;
    position: relative;
}

.det-tower.hot .tower-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #e94560;
    border-radius: 50%;
    animation: towerPulse 1.5s infinite;
}

@keyframes towerPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Overlay с треком */
.det-map-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    pointer-events: none;
}

.det-map-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.det-track-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #e94560;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0.5;
}

.det-track-dot.active {
    opacity: 1;
    box-shadow: 0 0 12px rgba(233, 69, 96, 0.6);
    animation: activeDot 2s infinite;
}

@keyframes activeDot {
    0%, 100% { box-shadow: 0 0 12px rgba(233, 69, 96, 0.6); }
    50% { box-shadow: 0 0 20px rgba(233, 69, 96, 0.9); }
}

.det-track-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #e94560, rgba(233, 69, 96, 0.3));
    transform-origin: left center;
    opacity: 0.6;
}

/* Список вышек */
.det-geo-towers {
    padding: 0 16px;
    max-height: 180px;
    overflow-y: auto;
    flex-shrink: 1;
}

.det-tower-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 139, 154, 0.1);
    transition: background 0.15s;
}

.det-tower-item:last-child {
    border-bottom: none;
}

.det-tower-item.hot {
    background: rgba(233, 69, 96, 0.08);
    margin: 0 -20px;
    padding: 14px 20px;
    border-left: 3px solid #e94560;
}

.det-tower-marker {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.det-tower-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.det-tower-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.det-tower-meta {
    font-size: 0.72rem;
    color: #8b8b9a;
}

.det-tower-time {
    font-size: 0.72rem;
    color: #e94560;
}

.det-tower-signal {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00ff88;
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
}

/* Summary */
.det-geo-summary {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: #0f0f1a;
    border-top: 1px solid rgba(139, 139, 154, 0.1);
    gap: 8px;
    flex-shrink: 0;
}

.det-geo-stat {
    text-align: center;
    flex: 1;
}

.det-geo-stat-val {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e94560;
}

.det-geo-stat-label {
    font-size: 0.7rem;
    color: #8b8b9a;
    margin-top: 2px;
}

/* Адаптивность */
@media (max-width: 720px) {
    .vk-body {
        flex-direction: column;
    }
    .vk-col-left {
        width: 100%;
    }
    .vk-header-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -50px;
    }
    .vk-header-info {
        padding-bottom: 0;
    }
    .vk-header-actions {
        justify-content: center;
    }
    .vk-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .vk-modal {
        padding: 32px 20px;
    }
}

/* === GLOBAL MAP STYLES === */
.global-map-section {
    background: #000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.map-container {
    position: relative;
    width: 100%;
    height: 550px;
    background: #000505;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.08), inset 0 0 80px rgba(0, 255, 136, 0.03);
}

#globalMapCanvas {
    width: 100%;
    height: 100%;
}

.section-subtitle {
    color: #666;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* === TELEGRAM MANAGER BUTTON === */
.tg-manager-btn {
    position: fixed;
    bottom: 24px;
    right: 92px;
    width: 56px;
    height: 56px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    transition: all 0.3s;
    border: none;
    font-size: 1.6rem;
}

.tg-manager-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 136, 204, 0.6);
}

.tg-manager-btn .tg-icon {
    filter: grayscale(1) brightness(2);
    font-size: 1.4rem;
}

@media (max-width: 480px) {
    .tg-manager-btn {
        right: 80px;
        bottom: 12px;
    }
}

/* === LIVE NOTIFICATIONS === */
.live-notifications {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.live-notification {
    background: rgba(0, 10, 10, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 340px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 136, 0.1);
    animation: slideInLeft 0.5s ease forwards;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.live-notification.hiding {
    animation: slideOutLeft 0.5s ease forwards;
}

@keyframes slideOutLeft {
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.live-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.live-notification-icon.vk { background: rgba(0, 119, 255, 0.2); }
.live-notification-icon.wa { background: rgba(37, 211, 102, 0.2); }
.live-notification-icon.tg { background: rgba(0, 136, 204, 0.2); }
.live-notification-icon.ig { background: rgba(225, 48, 108, 0.2); }
.live-notification-icon.det { background: rgba(255, 165, 0, 0.2); }
.live-notification-icon.email { background: rgba(155, 89, 182, 0.2); }
.live-notification-icon.geo { background: rgba(231, 76, 60, 0.2); }
.live-notification-icon.vip { background: rgba(255, 215, 0, 0.2); }

.live-notification-body {
    flex: 1;
    min-width: 0;
}

.live-notification-title {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-notification-time {
    font-size: 0.7rem;
    color: rgba(0, 255, 136, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-notification-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@media (max-width: 768px) {
    .live-notifications {
        bottom: 90px;
        left: 12px;
    }
    
    .live-notification {
        min-width: 240px;
        max-width: 280px;
        padding: 12px 14px;
    }
}

/* === ADMIN PANEL BASE === */
.admin-container {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
}

/* === GUARANTEE VIDEO SECTION === */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 15, 15, 0.95) 0%, var(--bg) 100%);
}

.guarantee-video {
    background: rgba(0, 10, 10, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.guarantee-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-scene {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.scene-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.guarantee-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: rgba(0, 10, 10, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0.4;
}

.step-circle.active {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    opacity: 1;
    transform: scale(1.1);
}

.step-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.step-number {
    font-size: 0.65rem;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    margin-top: 4px;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.step-connector::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: connectorFlow 2s infinite;
}

.step-connector.active {
    background: rgba(0, 255, 136, 0.4);
}

.step-connector.active::after {
    animation: none;
}

@keyframes connectorFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.scene-content {
    text-align: center;
}

.scene-title {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.scene-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    min-height: 50px;
    line-height: 1.6;
}

.scene-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.scene-tag {
    font-size: 0.8rem;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.scene-tag.active {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.scene-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.guarantee-play {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.guarantee-progress {
    flex: 1;
    max-width: 300px;
    height: 4px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.guarantee-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
}

.guarantee-dots {
    display: flex;
    gap: 8px;
}

.guarantee-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guarantee-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transform: scale(1.3);
}

.guarantee-badge-final {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 40px;
    background: rgba(0, 10, 10, 0.6);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.guarantee-badge-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.badge-shield {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    animation: shieldPulse 2s infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-content {
    flex: 1;
}

.badge-content h4 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.badge-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.badge-verified {
    font-size: 0.75rem;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'JetBrains Mono', monospace;
    animation: verifiedPulse 2s infinite;
}

@keyframes verifiedPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

@media (min-width: 1024px) {
    .guarantee-scene {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .scene-visual {
        flex: 1;
        min-width: 400px;
    }
    
    .scene-content {
        flex: 1;
        text-align: left;
    }
    
    .scene-tags {
        justify-content: flex-start;
    }
}
    
@media (max-width: 768px) {
    .guarantee-video {
        padding: 24px;
        min-height: auto;
    }
    
    .scene-visual {
        gap: 20px;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-connector {
        width: 40px;
    }
    
    .scene-title {
        font-size: 1.4rem;
    }
    
    .scene-text {
        font-size: 0.9rem;
        min-height: 60px;
    }
    
    .guarantee-badge-final {
         flex-direction: column;
         text-align: center;
         padding: 24px;
     }
}

/* === FAQ DETAILS (about.html) === */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
}

details[open] summary span:last-child {
    transform: rotate(45deg);
}

details summary span:last-child {
    transition: transform 0.3s ease;
}

/* === SERVICES RADAR === */
@keyframes svc-radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes svc-blip {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

/* === SERVICES CARD SCAN EFFECT === */
.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover .service-detail-icon {
    animation: svc-iconPulse 0.6s ease;
}

@keyframes svc-iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* === GUARANTEES SHIELD === */
@keyframes guar-shieldRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes guar-shieldRotateRev {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes guar-shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes guar-orbitDot {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    50% { transform: translateX(20px) scale(0.6); opacity: 0.5; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* === INDEX REVIEWS CAROUSEL === */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    animation: revCarouselScroll 40s linear infinite;
    width: max-content;
}

.reviews-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes revCarouselScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.reviews-carousel-track .review-card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
}

/* === VIDEO TESTIMONIALS === */
.vid-main-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.vid-player {
    background: #0a0a0a;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.1);
}

.vid-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
    overflow: hidden;
}

/* Silhouette */
.vid-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}

.silhouette-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: vidGlow 3s ease-in-out infinite;
}

@keyframes vidGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.silhouette-figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border-radius: 50% 50% 45% 45%;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
}

.vid-silhouette.talking .silhouette-figure {
    animation: vidTalk 0.4s ease-in-out infinite;
}

@keyframes vidTalk {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.03); }
}

.silhouette-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    backdrop-filter: blur(8px);
    border-radius: 50%;
    z-index: 2;
}

/* Waveform */
.vid-waveform {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    z-index: 3;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.vid-waveform.playing {
    opacity: 1;
}

.vid-waveform span {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.vid-waveform.playing span {
    animation: vidWave 0.8s ease-in-out infinite;
}

.vid-waveform.playing span:nth-child(1) { animation-delay: 0s; }
.vid-waveform.playing span:nth-child(2) { animation-delay: 0.1s; }
.vid-waveform.playing span:nth-child(3) { animation-delay: 0.2s; }
.vid-waveform.playing span:nth-child(4) { animation-delay: 0.05s; }
.vid-waveform.playing span:nth-child(5) { animation-delay: 0.15s; }
.vid-waveform.playing span:nth-child(6) { animation-delay: 0.25s; }
.vid-waveform.playing span:nth-child(7) { animation-delay: 0.1s; }
.vid-waveform.playing span:nth-child(8) { animation-delay: 0.2s; }
.vid-waveform.playing span:nth-child(9) { animation-delay: 0.05s; }
.vid-waveform.playing span:nth-child(10) { animation-delay: 0.3s; }
.vid-waveform.playing span:nth-child(11) { animation-delay: 0.15s; }
.vid-waveform.playing span:nth-child(12) { animation-delay: 0.25s; }
.vid-waveform.playing span:nth-child(13) { animation-delay: 0s; }
.vid-waveform.playing span:nth-child(14) { animation-delay: 0.1s; }
.vid-waveform.playing span:nth-child(15) { animation-delay: 0.2s; }
.vid-waveform.playing span:nth-child(16) { animation-delay: 0.05s; }
.vid-waveform.playing span:nth-child(17) { animation-delay: 0.15s; }
.vid-waveform.playing span:nth-child(18) { animation-delay: 0.25s; }
.vid-waveform.playing span:nth-child(19) { animation-delay: 0.1s; }
.vid-waveform.playing span:nth-child(20) { animation-delay: 0.3s; }

@keyframes vidWave {
    0%, 100% { height: 8px; }
    50% { height: 36px; }
}

/* Play overlay */
.vid-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s;
}

.vid-play-overlay:hover {
    background: rgba(0, 0, 0, 0.15);
}

.vid-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.9);
    border: none;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.7);
}

/* Subtitles */
.vid-subtitles {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 5;
    opacity: 1;
    transition: opacity 0.15s ease;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* Top bar */
.vid-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    z-index: 4;
}

.vid-rec {
    color: #ff5555;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    animation: vidRecBlink 1.5s infinite;
}

@keyframes vidRecBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.vid-anon {
    color: var(--accent);
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}

/* Info bar */
.vid-info-bar {
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
}

.vid-info-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vid-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
}

.vid-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.vid-service {
    color: var(--accent);
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}

.vid-rating {
    color: var(--accent);
    font-size: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Controls */
.vid-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: #111;
    border-top: 1px solid rgba(0, 255, 136, 0.15);
}

.vid-ctrl-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 6px;
}

.vid-ctrl-btn:hover {
    background: rgba(0, 255, 136, 0.1);
}

.vid-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.2s;
}

.vid-progress:hover {
    height: 8px;
}

.vid-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.vid-time {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    min-width: 90px;
    text-align: right;
}

/* Thumbnails */
.vid-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.vid-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.vid-thumb:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    background: rgba(0, 255, 136, 0.05);
}

.vid-thumb.active {
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.vid-thumb.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
}

.thumb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.thumb-info {
    flex: 1;
    min-width: 0;
}

.thumb-name {
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb-service {
    color: var(--text-dim);
    font-size: 0.7rem;
    margin-top: 2px;
}

.thumb-duration {
    color: var(--accent);
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 255, 136, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vid-screen {
        aspect-ratio: 4 / 3;
    }

    .vid-silhouette {
        width: 140px;
        height: 140px;
    }

    .silhouette-figure {
        width: 80px;
        height: 80px;
    }

    .vid-subtitles {
        font-size: 0.85rem;
        bottom: 12px;
    }

    .vid-info-bar {
        top: 40px;
    }

    .vid-controls {
        gap: 10px;
        padding: 12px;
    }

    .vid-time {
        min-width: 70px;
        font-size: 0.7rem;
    }

    .vid-thumbnails {
        grid-template-columns: 1fr 1fr;
    }
}

/* === BLOG PAGE === */

/* Slider */
.blog-featured {
    overflow: hidden;
}

.blog-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    min-height: 420px;
}

.blog-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(30px);
    pointer-events: none;
}

.blog-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    animation: blogSlideIn 0.6s ease;
}

@keyframes blogSlideIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px;
    align-items: center;
}

.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Terminal in slider */
.slide-terminal {
    width: 100%;
    max-width: 400px;
    background: #0a0a0a;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #111;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.terminal-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-header .dot.red { background: #ff5555; }
.terminal-header .dot.yellow { background: #ffaa00; }
.terminal-header .dot.green { background: #00ff88; }

.terminal-title {
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-left: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 2;
}

.term-line {
    white-space: nowrap;
    overflow: hidden;
}

/* Radar in slider */
.slide-radar {
    position: relative;
    width: 250px;
    height: 250px;
}

.radar-rings .ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 136, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-rings .r1 { width: 250px; height: 250px; }
.radar-rings .r2 { width: 170px; height: 170px; }
.radar-rings .r3 { width: 90px; height: 90px; }

.radar-sweep-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 3px;
    background: linear-gradient(to right, rgba(0, 255, 136, 0.8), transparent);
    transform-origin: left center;
    animation: blogRadarSweep 3s linear infinite;
}

@keyframes blogRadarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-blip {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 12px #00ff88;
    animation: blogBlip 2s infinite;
}

.radar-blip.b1 { top: 25%; left: 60%; animation-delay: 0s; }
.radar-blip.b2 { top: 65%; left: 30%; animation-delay: 0.5s; }
.radar-blip.b3 { top: 40%; left: 70%; width: 7px; height: 7px; animation-delay: 1s; }

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

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 2;
}

/* Slide info */
.slide-info {
    padding: 20px 0;
}

.slide-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
}

.slide-info h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.slide-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.slide-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.slide-meta span {
    font-size: 0.85rem;
    color: var(--accent);
    background: rgba(0, 255, 136, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}

/* Slider controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    width: 30px;
    border-radius: 5px;
}

/* Blog articles grid */
.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blog-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.blog-card-header.wa { background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), transparent); }
.blog-card-header.det { background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent); }
.blog-card-header.ig { background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), transparent); }
.blog-card-header.vk { background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), transparent); }
.blog-card-header.tg { background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), transparent); }

.blog-category {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-body p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

.blog-read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-read-more:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--accent);
}

.read-more-text {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.read-more-arrow {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.blog-full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease, margin 0.3s ease;
    padding: 0;
    margin: 0;
}

.blog-full-text.expanded {
    max-height: 2000px;
    padding: 20px 0 0;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-full-text p {
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.8;
}

.blog-full-text strong {
    color: var(--accent);
}

.blog-result-badge {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-result-badge span {
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(0, 255, 136, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}

/* Blog stat cards */
.blog-stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.blog-stat-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.blog-stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    margin-bottom: 8px;
}

.blog-stat-label {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .slide-visual {
        order: -1;
    }

    .slide-info h3 {
        font-size: 1.3rem;
    }

    .slide-terminal {
        max-width: 100%;
    }

    .terminal-body {
        font-size: 0.75rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* === CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 350px;
    max-height: 450px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), #00cc88);
    color: #000;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 0.9rem;
}

.chat-message.client {
    background: var(--accent);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.admin {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 4px;
}

.chat-input {
    padding: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    outline: none;
}

.chat-input input:focus {
    border-color: var(--accent);
}

.chat-input button {
    padding: 10px 20px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s;
}

.chat-input button:hover {
    transform: scale(1.05);
}

.chat-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
    font-size: 1.5rem;
}

.chat-toggle.active {
    display: flex;
}

.chat-unread {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
