/* ── Prenotazioni page ──────────────────────────────── */

/* Hero */
.bkg-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 60%, #f0fdf4 100%);
}

.bkg-hero-body {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.bkg-hero-h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.bkg-hero-lead {
    max-width: 560px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.bkg-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bkg-btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Features grid */
.bkg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bkg-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-light, #e5e7eb);
    transition: box-shadow 200ms, transform 200ms;
}

.bkg-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.bkg-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.875rem;
    background: rgba(184, 0, 0, 0.08);
    color: #B80000;
    margin-bottom: 1rem;
}

.bkg-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.bkg-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bkg-feature-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Steps */
.bkg-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.bkg-step-card {
    text-align: center;
    padding: 1.5rem;
}

.bkg-step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--brand-red, #e53e3e);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bkg-step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.bkg-step-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sectors */
.bkg-sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.bkg-sector-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 1px solid var(--border-light, #e5e7eb);
    border-radius: 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 200ms, box-shadow 200ms;
}

.bkg-sector-pill:hover {
    border-color: var(--brand-red, #e53e3e);
    box-shadow: 0 2px 8px rgba(229,62,62,.12);
}

/* CTA */
.bkg-cta-card {
    background: linear-gradient(135deg, var(--brand-red, #e53e3e), #c53030);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
}
