:root {
    --bg-color: #0b0e14;
    --card-bg: #161b22;
    --primary: #00f2ff;
    --accent: #7000ff;
    --text: #e6edf3;
    --error: #ff3e3e;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}


header {
    padding: 20px 0;
    border-bottom: 1px solid #30363d;
    position: sticky;
    top: 0;
    background: rgba(11, 14, 20, 0.95);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 15px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover { color: var(--primary); }


.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #30363d;
    color: var(--text);
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 11px;
    transition: 0.3s;
}
.container{
    padding-bottom: 40px;
}
.lang-btn.active {
    border-color: var(--primary);
    
    color: var(--primary);
    background: rgba(0, 242, 255, 0.1);
}

.btn-sos {
    background: var(--error);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    color: white !important;

}

.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1f2e 0%, #0b0e14 100%);
}

.hero-content { width: 100%; }

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.btn-main {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-main:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
}


.section-title { 
    text-align: center; 
    margin-top: 80px; 
    font-family: 'Orbitron'; 
    font-size: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #30363d;
    transition: 0.3s;
    min-height: 360px;

}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon { font-size: 45px; margin-bottom: 20px; }





.tools-section { padding: 100px 0; background: #0d1117; }

.input-wrapper {
  position: relative;
  display: flex; 
  align-items: center;
z-index: 10;
}


.clear-icon {
  position: absolute;
  right: 40px; 
  cursor: pointer;
  color: #888;
  font-size: 18px;
  line-height: 1;
  padding: 5px;
  user-select: none; 
}

.clear-icon:hover {
  color: #fff;
}


.toggle-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    
}

.password-checker {
    max-width: 450px;
    margin: 40px auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #30363d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.password-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center; 
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}


.password-checker, .password-rules {
  flex: 1;
  min-width: 300px;
}


.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.rules-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}


.rules-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}




.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 15px;
    padding-right: 45px; /* Место для глаза */
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #30363d;
    background: #0d1117;
    color: white;
    font-size: 16px;
}

.toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 22px;
    z-index: 20;
}

.meter {
    height: 8px;
    background: #30363d;
    margin-top: 25px;
    border-radius: 4px;
    transition: 0.5s ease;
    width: 0%;
}



.flip-card {
    background-color: transparent;
    perspective: 1000px; 
    cursor: pointer;
    padding: 0px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}


.flipped .flip-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; 
    padding: 20px;

}

.card-back {
    transform: rotateY(180deg);
    border-radius: inherit;
    
}



.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-color); 
    color: var(--text); 
    font-family: 'Roboto', sans-serif; 
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    
}

.accordion-container {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--card-bg); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

.accordion-header {
    background-color: var(--card-bg);
    color: var(--text);
    cursor: pointer;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.4s;
    font-weight: 600;
}


.accordion-header:hover {
    background-color: #21262d; 
}

.scam-icon {
    font-size: 1.6em;
    margin-right: 20px;
    color: var(--accent); 
}

.accordion-title {
    flex-grow: 1;
    font-size: 1.12em;
}

.accordion-indicator {
    font-size: 1.8em;
    margin-left: 20px;
    transition: transform 0.4s ease;
    color: var(--primary); 
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    background-color: var(--card-bg);
}

.accordion-content p {
    padding: 15px 0 25px 0;
    margin: 0;
    color: var(--text);
    line-height: 1.5;
}


.accordion-header.active .accordion-indicator {
    transform: rotate(45deg);
    color: var(--text); 
}

/*Миф реальность*/
.accordion-section-vars {
    padding: 40px 0;
    font-family: var(--font-family, sans-serif);
}
.section-title-vars {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--text);
}
.accordion-container-vars {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item-vars {
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.accordion-header-vars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.accordion-header-vars:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.accordion-icon-vars {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--primary);
}
.accordion-header-vars[aria-expanded="true"] .accordion-icon-vars {
    transform: rotate(45deg);
}
.accordion-content-vars {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.content-inner-vars {
    padding: 0 20px 20px 20px;
    color: var(--text);
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.content-inner-vars p {
    margin-top: 10px;
    font-size: 14px;
}
.header-text {
    display: flex;
    align-items: center;
    gap: 15px;
}
.label-vars {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--bg-color);
}
.myth-label-vars {
    background: var(--error);
}
.fact-label-vars {
    background: var(--primary);
}




    .cyber-scam-section {
        max-width: 750px;
        margin: 40px auto;
        padding: 20px;
        background: var(--bg-color);
    }

   
    .cyber-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .cyber-header h2 {
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 1.8rem;
        text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
        margin: 0;
    }

    .cyber-stack {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    
    .cyber-step-card {
        background: rgba(22, 27, 34, 0.8);
        border: 2px solid;
        padding: 25px;
        border-radius: 12px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: inset 0 0 15px rgba(255,255,255,0.05);
    }

/*   интсрукция*/
    .card-critical {
        border-color: var(--error);
        box-shadow: 0 0 20px rgba(255, 62, 62, 0.2);
    }
    .card-critical .step-id { color: var(--error); filter: drop-shadow(0 0 5px var(--error)); }
    .card-critical .step-title { color: #fff; text-shadow: 0 0 10px var(--error); }

    
    .card-info {
        border-color: var(--primary);
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    }
    .card-info .step-id { color: var(--primary); filter: drop-shadow(0 0 5px var(--primary)); }
    .card-info .step-title { color: #fff; text-shadow: 0 0 10px var(--primary); }

    .card-process {
        border-color: var(--accent);
        box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
    }
    .card-process .step-id { color: var(--accent); filter: drop-shadow(0 0 5px var(--accent)); }
    .card-process .step-title { color: #fff; text-shadow: 0 0 10px var(--accent); }

    .cyber-step-card:hover {
        transform: scale(1.02);
        background: rgba(22, 27, 34, 1);
    }

    .step-id {
        font-family: 'Courier New', monospace;
        font-weight: 900;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .step-title {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .step-content {
        font-size: 1rem;
        color: #ffffff;
        line-height: 1.6;
        font-weight: 400;
    }

    .step-content b {
        color: #fff;
        background: rgba(255,255,255,0.1);
        padding: 0 4px;
        border-radius: 3px;
    }

    .step-content ul {
        margin: 15px 0 0 0;
        padding-left: 20px;
        list-style: none;
    }

    .step-content li {
        margin-bottom: 10px;
        position: relative;
    }

    .step-content li::before {
        content: "⚡";
        position: absolute;
        left: -25px;
        color: inherit;
    }

    /* Кнопка вызова 102 */
    .cyber-action-zone {
        margin-top: 40px;
        text-align: center;
    }

    .btn-call-102 {
        display: inline-flex;
        align-items: center;
        background: var(--error);
        color: #fff;
        border: none;
        padding: 18px 45px;
        font-weight: 900;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 3px;
        font-size: 1.2rem;
        border-radius: 4px;
        box-shadow: 0 0 30px var(--error);
        transition: 0.3s;
        cursor: pointer;
    }

    .btn-call-102:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 50px var(--error);
        filter: brightness(1.2);
    }

    .blink-dot {
        width: 12px;
        height: 12px;
        background: #fff;
        border-radius: 50%;
        margin-right: 15px;
        display: inline-block;
        animation: pulse 1s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.5); opacity: 0.5; }
        100% { transform: scale(1); opacity: 1; }
    }







/*  бегущая строка с логотипами*/
.logo-slider {
  overflow: hidden;
  padding: 20px 0; 
  background: var(--bg-color);
  white-space: nowrap;
  position: relative;
  width: 100%;
}


.logo-slider::before, .logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.logo-slider::before { left: 0; background: linear-gradient(to right, var(--bg-color), transparent); }
.logo-slider::after { right: 0; background: linear-gradient(to left, var(--bg-color), transparent); }

	
	
	

.logo-track {
  display: inline-flex;
  align-items: center;
  animation: scroll 20s linear infinite;
}

.logo-item {
  margin: 0 40px;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  height: 80px; 
  width: auto;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

















    