/* ── FEJLÉC ───────────────────────────────────────────────────── */
header {
    background:    rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
    padding:       0;
    position:      sticky;
    top:           0;
    z-index:       1000;
    box-shadow:    var(--shadow-sm);
}

.header-content {
    max-width:      1100px;
    margin:         0 auto;
    padding:        16px 24px;
    display:        flex;
    justify-content: space-between;
    align-items:    center;
    gap:            16px;
}

/* ── LOGO ─────────────────────────────────────────────────────── */
.logo {
    display:     flex;
    align-items: center;
    gap:         14px;
    text-decoration: none;
}

.logo-icon {
    width:         46px;
    height:        46px;
    background:    linear-gradient(135deg, var(--be-navy) 0%, var(--be-red) 100%);
    border-radius: var(--radius-sm);
    display:       flex;
    align-items:   center;
    justify-content: center;
    color:         white;
    font-size:     22px;
    flex-shrink:   0;
    animation:     pulse 3s infinite;
}

.logo-text {
    font-family:   var(--font-title);
    font-weight:   700;
    font-size:     22px;
    letter-spacing: 1px;
    color:         var(--be-navy);
    line-height:   1.1;
}

.logo-text em {
    color:       var(--be-red);
    font-style:  normal;
}

.logo-subtitle {
    font-size:   11px;
    color:       var(--gray);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ── FEJLÉC JOBB OLDAL ────────────────────────────────────────── */
.header-actions {
    display:     flex;
    align-items: center;
    gap:         10px;
}

.header-badge {
    background:    var(--be-navy);
    color:         white;
    border-radius: 20px;
    padding:       8px 16px;
    font-size:     14px;
    font-weight:   600;
    display:       flex;
    align-items:   center;
    gap:           6px;
}

.header-badge span {
    color: var(--be-gold);
    font-family: var(--font-title);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.settings-btn {
    padding:       10px 18px;
    border-radius: var(--radius-sm);
    background:    white;
    border:        1.5px solid var(--gray-light);
    color:         var(--dark);
    font-weight:   600;
    font-size:     14px;
    transition:    var(--transition);
    display:       flex;
    align-items:   center;
    gap:           8px;
}

.settings-btn:hover {
    background:    var(--light);
    border-color:  var(--be-red);
    color:         var(--be-red);
    transform:     translateY(-1px);
}

/* ── PROGRESS BAR ─────────────────────────────────────────────── */
.progress-container {
    max-width:  1100px;
    margin:     28px auto 0;
    padding:    0 24px;
}

.progress-steps {
    display:       flex;
    justify-content: space-between;
    position:      relative;
    margin-bottom: 36px;
}

.progress-steps::before {
    content:       '';
    position:      absolute;
    top:           22px;
    left:          0; right: 0;
    height:        3px;
    background:    var(--gray-light);
    z-index:       1;
    border-radius: 3px;
}

.progress-line {
    position:      absolute;
    top:           22px;
    left:          0;
    height:        3px;
    background:    linear-gradient(90deg, var(--be-navy) 0%, var(--be-red) 100%);
    z-index:       2;
    transition:    width 0.5s cubic-bezier(0.4,0,0.2,1);
    border-radius: 3px;
    width:         0%;
}

.step {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    position:       relative;
    z-index:        3;
    flex:           1;
    cursor:         pointer;
}

.step-dot {
    width:         46px;
    height:        46px;
    border-radius: 50%;
    background:    white;
    border:        3px solid var(--gray-light);
    display:       flex;
    align-items:   center;
    justify-content: center;
    font-weight:   700;
    color:         var(--gray);
    margin-bottom: 10px;
    font-size:     17px;
    transition:    var(--transition);
}

.step.active .step-dot {
    background:   var(--be-navy);
    border-color: var(--be-navy);
    color:        white;
    box-shadow:   0 4px 16px rgba(11,31,58,0.35);
    transform:    scale(1.1);
}

.step.completed .step-dot {
    background:   var(--success);
    border-color: var(--success);
    color:        white;
}

.step-label {
    font-size:   13px;
    font-weight: 600;
    color:       var(--gray);
    text-align:  center;
    transition:  var(--transition);
}

.step.active .step-label    { color: var(--be-navy); font-weight: 700; }
.step.completed .step-label { color: var(--success); }

/* ── CONTAINER ────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin:    0 auto;
    padding:   32px 24px 60px;
}

/* ── LÉPÉS ANIMÁCIÓ ───────────────────────────────────────────── */
.step-section {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.step-section.active { display: block; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
    text-align: center;
    padding:    20px;
    font-size:  12px;
    color:      var(--gray);
    border-top: 1px solid var(--gray-light);
    margin-top: 40px;
}

/* ── MOBILBARÁT ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .header-content { padding: 12px 16px; }
    .logo-text      { font-size: 18px; }
    .logo-subtitle  { display: none; }
    .header-badge   { display: none; }
    .progress-container { padding: 0 16px; }
    .step-label     { font-size: 11px; }
    .container      { padding: 20px 16px 40px; }
}
