/* Extracted from index.html to reduce inline styles */

.guide-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 34, 0.68);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 900;
}
.guide-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.guide-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    visibility: hidden;
    z-index: 901;
}
.guide-modal.active {
    visibility: visible;
}
.guide-modal__content {
    position: relative;
    background: #ffffff;
    max-width: 520px;
    width: 100%;
    padding: 1.75rem;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.guide-modal.active .guide-modal__content {
    transform: translateY(0);
    opacity: 1;
}
.guide-modal__eyebrow {
    display: inline-block;
    background: rgba(255, 122, 0, 0.12);
    color: #ff7a00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}
.guide-modal__title {
    margin: 0 0 0.35rem 0;
    font-size: 1.6rem;
    color: #0f1c2d;
    line-height: 1.2;
}
.guide-modal__body {
    margin: 0 0 1.1rem 0;
    color: #203046;
    font-size: 1rem;
}
.guide-modal__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.guide-modal__cta {
    display: inline-block;
    background: var(--primary-color, #ff7a00);
    color: #ffffff;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.guide-modal__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.42);
    background: #e66a00;
}
.guide-modal__dismiss {
    background: transparent;
    border: none;
    color: #203046;
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 0.9rem;
}
.guide-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1rem;
    color: #6b7280;
    cursor: pointer;
}
@media (max-width: 540px) {
    .guide-modal__content {
        padding: 1.5rem;
    }
    .guide-modal__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .guide-modal__cta,
    .guide-modal__dismiss {
        width: 100%;
        text-align: center;
    }
}
