/* ── Good Homepage Guide ─────────────────────────── */

.homepage-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    margin-bottom: 25px;
    border-top: 5px solid #ff6b35;
}

.homepage-intro h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.homepage-intro p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Numbered section cards */
.section-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.section-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px 24px 80px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    position: relative;
    border-left: 4px solid #ff6b35;
}

.section-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 6px;
}

.section-card p {
    font-size: 0.93rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

/* Wireframe mockup */
.wireframe {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    max-width: 540px;
    font-size: 0.8rem;
    color: #6c757d;
}

.wf-nav {
    background: #2c3e50;
    padding: 10px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wf-nav strong {
    color: #ff6b35;
}

.wf-hero {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}

.wf-hero .wf-h1 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.wf-hero .wf-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}

.wf-btn {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.wf-section {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wf-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 6px;
}

.wf-blocks {
    display: flex;
    gap: 10px;
}

.wf-block {
    flex: 1;
    background: #f8f9fa;
    border-radius: 6px;
    height: 48px;
    border: 1px solid #e9ecef;
}

.wf-trust {
    display: flex;
    gap: 8px;
}

.wf-star {
    color: #ff6b35;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .section-card {
        padding: 20px 20px 20px 70px;
    }
}
