.guide-container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    min-width: 0;
}

.guide-hero {
    padding: 4.5rem 0 3rem;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.18), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 72%);
}

.guide-hero-grid,
.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.6rem;
    align-items: center;
    min-width: 0;
}

.guide-copy,
.guide-side-card,
.guide-card,
.check-card,
.notice-panel,
.warning-card,
.cta-panel,
.guide-step {
    min-width: 0;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
}

.guide-copy h1,
.section-heading h2,
.guide-side-card h2,
.notice-panel h2,
.warning-card h2,
.cta-panel h2 {
    margin: 0 0 1rem;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.guide-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.08;
}

.guide-lead,
.guide-card p,
.check-card p,
.guide-step p,
.notice-panel p,
.warning-card p,
.cta-panel p,
.guide-side-card p {
    color: #334155;
    line-height: 1.75;
}

.guide-side-card,
.guide-card,
.check-card,
.notice-panel,
.warning-card,
.cta-panel {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.guide-side-card,
.guide-card,
.notice-panel,
.warning-card,
.cta-panel {
    padding: 1.9rem;
}

.side-badge {
    display: inline-flex;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-section {
    padding: 4rem 0;
}

.guide-section.accent {
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.guide-section.compact {
    padding-top: 1rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 1.8rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.2rem;
}

.check-card {
    padding: 1.5rem;
}

.check-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.check-card h3,
.guide-step h3 {
    margin: 0 0 0.8rem;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.guide-steps {
    display: grid;
    gap: 1rem;
}

.guide-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 800;
}

.warning-section {
    padding-top: 0;
}

.warning-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.warning-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffedd5;
    color: #ea580c;
    font-size: 1.4rem;
}

.guide-cta {
    padding: 1rem 0 4.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-end;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-btn:hover {
    transform: translateY(-2px);
}

.guide-btn.primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.guide-btn.secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.guide-copy h1,
.guide-lead,
.guide-card p,
.check-card p,
.guide-step p,
.notice-panel p,
.warning-card p,
.cta-panel p,
.guide-side-card p {
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .guide-hero-grid,
    .cta-panel,
    .checks-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .guide-hero {
        padding-top: 3rem;
    }

    .guide-side-card,
    .guide-card,
    .check-card,
    .notice-panel,
    .warning-card,
    .cta-panel,
    .guide-step {
        border-radius: 20px;
        padding: 1.35rem;
    }

    .guide-step,
    .warning-card {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .guide-btn {
        width: 100%;
    }
}
