/* b4u-services.html — Requirements / Current Offers section */

#pricing.b4u-offers-section {
    position: relative;
    isolation: isolate;
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4rem);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}

#pricing.b4u-offers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(139, 92, 246, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 45% 38% at 100% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

html.dark #pricing.b4u-offers-section {
    background: linear-gradient(180deg, #0f172a 0%, #111827 50%, #0f172a 100%);
}

html.dark #pricing.b4u-offers-section::before {
    background:
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 38% at 100% 30%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
}

#pricing.b4u-offers-section > .container {
    position: relative;
    z-index: 1;
}

.b4u-offers-head {
    max-width: 640px;
    margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
}

.b4u-offers-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.875rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d28d9;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 999px;
}

html.dark .b4u-offers-eyebrow {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(167, 139, 250, 0.35);
}

.b4u-offers-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

html.dark .b4u-offers-title {
    color: #f8fafc;
}

.b4u-offers-title-accent {
    background: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.dark .b4u-offers-title-accent {
    background: linear-gradient(135deg, #c4b5fd 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.b4u-offers-lead {
    margin: 0 auto;
    max-width: 34rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #64748b;
}

html.dark .b4u-offers-lead {
    color: #94a3b8;
}

.b4u-offers-notices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 56rem;
    margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 640px) {
    .b4u-offers-notices {
        grid-template-columns: repeat(3, 1fr);
    }
}

.b4u-offers-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #334155;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

html.dark .b4u-offers-notice {
    color: #cbd5e1;
    background: #1e293b;
    border-color: #334155;
}

.b4u-offers-notice--warn {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

html.dark .b4u-offers-notice--warn {
    background: linear-gradient(180deg, rgba(120, 53, 15, 0.2) 0%, #1e293b 100%);
    border-color: rgba(251, 191, 36, 0.3);
}

.b4u-offers-notice__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.1);
}

.b4u-offers-notice--warn .b4u-offers-notice__icon {
    color: #d97706;
    background: rgba(245, 158, 11, 0.15);
}

.b4u-offers-notice__icon svg {
    width: 1rem;
    height: 1rem;
}

.b4u-offers-notice strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

html.dark .b4u-offers-notice strong {
    color: #f1f5f9;
}

.b4u-offers-legend {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin-bottom: 1.5rem;
}

.b4u-offers-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
}

html.dark .b4u-offers-legend-item {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
}

.b4u-offers-legend-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.b4u-offers-legend-item--hold::before {
    background: #f59e0b;
}

.b4u-offers-grid {
    margin-top: 0;
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}
