@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');

:root {
    --accent: #6b6bff;
    --accent2: #7b4eff;
    --bg: #0a0d18;
    --panel: #121624;
    --text: #eef2ff;
    --muted: #98a1c0;
}

/* ---------- BASE ---------- */
body {
    margin: 0;
    background: var(--bg);
    font-family: 'Orbitron', sans-serif;
    color: var(--text);
}

/* ---------- HEADER ---------- */
.header {
    text-align: center;
    padding: 40px 20px;
}

.logo {
    font-size: clamp(36px, 10vw, 70px);
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(123,78,255,0.6);
}

.subtitle {
    margin-top: 10px;
    color: var(--muted);
}



/* ---------- SLIDER ---------- */
/* ---------- SLIDER ---------- */
.slider {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 60px;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 100%;               /* каждый слайд = ширина .slider */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide img {
    width: 100%;
    max-width: 560px;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(107,107,255,0.25);
}

.slide h3 {
    margin-top: 18px;
    font-size: clamp(18px, 4vw, 26px);
    text-align: center;
}

/* ----- DOTS ----- */
.slider-dots {
    text-align: center;
    margin-top: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: #444a6c;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.dot.active {
    background: var(--accent);
}


/* ---------- ECS BLOCK ---------- */
.infoblock {
    padding: 20px 20px 60px;
    text-align: center;
}

.infoblock h2 {
    margin-bottom: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: var(--panel);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 20px rgba(107,107,255,0.12);
}



/* ---------- INFOGRAPHIC ---------- */
.infographic {
    padding: 70px 20px;
    text-align: center;
}

.infographic h2 {
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.step {
    max-width: 150px;
}

.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), var(--accent2));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(107,107,255,0.5);
}

.line {
    width: 40px;
    height: 3px;
    background: var(--accent);
    align-self: center;
    margin: 30px 0;
}



/* ---------- CTA ---------- */
.cta {
    text-align: center;
    padding: 70px 20px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 14px;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 0 24px rgba(123,78,255,0.4);
}



/* ---------- FOOTER ---------- */
.footer {
    text-align: center;
    padding: 30px;
    color: var(--muted);
}
