/* ============================================
   SECRETKA LANDING - Сайт в разработке
   Детективный стиль с анимациями
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #8B4513;
    --color-accent: #A0522D;
    --color-dark: #050505;
    --color-dark-gray: #0f0f0f;
    --color-gray: #1a1a1a;
    --color-light-gray: #2d2d2d;
    --color-text: #d4d4c4;
    --color-text-light: #f5f5e6;
    --color-border: #3a3a2a;
    --color-shadow: rgba(0, 0, 0, 0.8);
    --font-main: 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Arial Black', 'Arial', sans-serif;
    /* Armenian Flag Colors */
    --flag-red: #D90012;
    --flag-blue: #0033A0;
    --flag-orange: #F2A800;
}

body {
    font-family: var(--font-main);
    background: 
        radial-gradient(circle at 12% 45%, rgba(217, 0, 18, 0.12), transparent 42%),
        radial-gradient(circle at 88% 55%, rgba(0, 51, 160, 0.1), transparent 48%),
        linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(15, 15, 15, 0.9)),
        url('img/man2.jpg') center left / 800px auto no-repeat fixed,
        url('img/man.jpg') center right / 800px auto no-repeat fixed;
    background-size: auto, auto, auto, 800px auto, 800px auto;
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, transparent 60px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0px, transparent 80px),
        radial-gradient(circle at 20% 30%, rgba(217, 0, 18, 0.15), transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(242, 168, 0, 0.12), transparent 55%);
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(217, 0, 18, 0), 
        rgba(217, 0, 18, 0.8), 
        rgba(217, 0, 18, 0)
    );
    mix-blend-mode: screen;
    animation: scanMove 8s linear infinite;
}

.scan-line-1 { left: 15%; animation-delay: 0s; }
.scan-line-2 { left: 50%; animation-delay: 3s; }
.scan-line-3 { left: 85%; animation-delay: 6s; }

@keyframes scanMove {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 3px solid var(--color-primary);
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--flag-red) 0%, var(--flag-red) 33.33%, 
        var(--flag-blue) 33.33%, var(--flag-blue) 66.66%, 
        var(--flag-orange) 66.66%, var(--flag-orange) 100%
    );
    z-index: 3;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flag-ribbon {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.stripe {
    width: 40px;
    height: 6px;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.stripe-red { background: var(--flag-red); }
.stripe-blue { background: var(--flag-blue); }
.stripe-orange { background: var(--flag-orange); }

.logo-section {
    position: relative;
}

.logo-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f7f2ea 100%);
    padding: 20px 40px;
    border-radius: 16px;
    border: 2px solid rgba(139, 69, 19, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4), 
        inset 0 2px 6px rgba(255, 255, 255, 0.6);
    position: relative;
    animation: logoPulse 3s ease-in-out infinite;
}

.logo-panel::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 12px;
    border: 1px dashed rgba(139, 69, 19, 0.3);
    opacity: 0.8;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(139, 69, 19, 0.6));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding: 60px 0;
}

.hero-content {
    text-align: center;
}

.case-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(217, 0, 18, 0.2);
    border: 2px solid rgba(217, 0, 18, 0.5);
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(217, 0, 18, 0.3); }
    50% { box-shadow: 0 0 40px rgba(217, 0, 18, 0.6); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-text-light);
    margin-bottom: 30px;
    text-shadow: 
        2px 2px 8px var(--color-shadow), 
        0 0 20px rgba(139, 69, 19, 0.8);
}

.title-line {
    display: block;
    letter-spacing: 8px;
    animation: titleSlide 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.progress-section {
    margin-top: 40px;
}

.progress-label {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--flag-red), var(--color-primary));
    width: 0%;
    border-radius: 6px;
    animation: progressFill 3s ease-out 1s forwards;
    box-shadow: 0 0 20px rgba(217, 0, 18, 0.5);
}

@keyframes progressFill {
    to { width: 75%; }
}

.progress-text {
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: center;
    font-weight: bold;
}

/* ============================================
   HERO VISUAL
   ============================================ */

.hero-visual {
    position: relative;
}

.evidence-board {
    background: rgba(10, 8, 6, 0.9);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.evidence-board::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.6);
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.board-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 15px;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.evidence-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: var(--color-primary);
}

.evidence-icon,
.evidence-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    filter: sepia(20%) saturate(0.8);
    transition: filter 0.3s ease;
}

.evidence-item:hover .evidence-icon,
.evidence-item:hover .evidence-photo {
    filter: sepia(0%) saturate(1);
}

.evidence-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 80px 0;
    background: rgba(5, 5, 5, 0.3);
    margin: 60px 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px var(--color-shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--color-dark-gray), var(--color-gray));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 69, 19, 0.1), 
        transparent
    );
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(139, 69, 19, 0.5));
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--color-text);
    line-height: 1.7;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.timeline-section {
    padding: 80px 0;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--color-primary), 
        rgba(139, 69, 19, 0.3)
    );
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 80px;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-gray);
    border: 3px solid var(--color-primary);
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.6);
}

.timeline-item.active .timeline-marker {
    background: var(--flag-red);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(217, 0, 18, 0.6); 
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(217, 0, 18, 0.9); 
        transform: scale(1.2);
    }
}

.timeline-content {
    background: rgba(10, 10, 10, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-primary);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--color-text);
    font-size: 0.9rem;
}

.timeline-item.completed .timeline-content p {
    color: #4CAF50;
}

.timeline-item.active .timeline-content p {
    color: var(--flag-red);
    font-weight: bold;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 3px solid var(--color-primary);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(139, 69, 19, 0.5));
}

.footer-text p {
    color: var(--color-text);
    margin-bottom: 5px;
}

.footer-text p:first-child {
    color: var(--color-text-light);
    font-weight: bold;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line {
        letter-spacing: 4px;
    }
    
    .evidence-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .case-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }
}