/* ============================================
   KEEPASS GUIDE PAGE STYLES
   Design-system aligned
   ============================================ */

/* Guide Section */
.guide-section {
    padding: var(--space-2xl) 0;
    background: var(--se-offwhite);
}

.guide-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
    color: var(--se-gray);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.guide-block h2 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--se-navy);
    margin-bottom: 20px;
}

.guide-block h3 {
    font-family: var(--font-heading);
    font-weight: normal;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--se-navy);
    margin-bottom: 15px;
}

.guide-block p {
    color: var(--se-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.guide-block a {
    color: var(--se-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.guide-block a:hover {
    color: var(--se-orange-dark);
}

/* Steps Layout */
.steps-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

.steps-logo {
    flex-shrink: 0;
}

.steps-logo img {
    border-radius: var(--radius-md);
}

.steps-content {
    flex: 1;
    min-width: 0;
}

.guide-steps {
    padding-left: 20px;
    counter-reset: step-counter;
}

.guide-steps > li {
    margin-bottom: 25px;
    color: var(--se-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.guide-steps > li strong {
    color: var(--se-navy);
}

.sub-steps {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.sub-steps li {
    margin-bottom: 10px;
    color: var(--se-gray);
    line-height: 1.6;
}

/* Step Images */
.step-image {
    max-width: 600px;
    padding: 16px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    display: block;
}

.step-images-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.step-images-row img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .steps-layout {
        flex-direction: column;
        align-items: center;
    }

    .steps-logo img {
        width: 120px;
        height: 120px;
    }

    .step-image {
        max-width: 100%;
    }

    .step-images-row {
        flex-direction: column;
    }

    .step-images-row img {
        max-width: 100%;
        height: auto;
    }

    .guide-block {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .guide-block h2 {
        font-size: 1.5rem;
    }

    .guide-block h3 {
        font-size: 1.2rem;
    }
}
