/*!
 * Birthday Pilot Landing — v0.13.2 stylesheet
 *
 * v0.13.2 F2 layout overhaul: right-rail dropped, centered single-column layout.
 * Premium light/warm visual layer. All selectors scoped under `.rc-bp`
 * to beat Elementor kit specificity (memory:
 * reference_elementor_kit_button_specificity.md). Px-only sizing per
 * CLAUDE.md mandate. Tailwind NOT used here.
 *
 * Brand palette:
 *   --rc-green       #00BF63   primary CTA
 *   --rc-green-dark  #00A356
 *   --rc-green-soft  #E6F9F0   selected card bg
 *   --rc-yellow      #FFB800   «Beliebt» badge accent only
 *   --rc-pink-soft   #FFF1F3   accent surface
 *   --rc-ink         #1A1F26   primary text
 *   --rc-ink-soft    #555E6B   secondary text
 *   --rc-cream       #FFFBF5   page surface
 *   --rc-white       #FFFFFF
 *   --rc-grey-50     #F8F9FB
 *   --rc-grey-100    #EFF1F4
 *   --rc-grey-200    #DEE2E8
 */

.rc-bp {
    --rc-green:        #00BF63;
    --rc-green-dark:   #00A356;
    --rc-green-soft:   #E6F9F0;
    --rc-yellow:       #FFB800;
    --rc-yellow-soft:  #FFF4D6;
    --rc-pink-soft:    #FFF1F3;
    --rc-ink:          #1A1F26;
    --rc-ink-soft:     #555E6B;
    --rc-cream:        #FFFBF5;
    --rc-white:        #FFFFFF;
    --rc-grey-50:      #F8F9FB;
    --rc-grey-100:     #EFF1F4;
    --rc-grey-200:     #DEE2E8;
    --rc-shadow-sm:    0 2px 8px rgba(15,23,42,0.06);
    --rc-shadow-md:    0 8px 24px rgba(15,23,42,0.08);
    --rc-shadow-lg:    0 16px 40px rgba(15,23,42,0.10);
    --rc-radius-sm:    12px;
    --rc-radius-md:    18px;
    --rc-radius-lg:    24px;
    --rc-radius-xl:    32px;

    background: var(--rc-cream);
    color: var(--rc-ink);
    font-family: 'ProximaNova', 'Proxima Nova', 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.rc-bp *, .rc-bp *::before, .rc-bp *::after {
    box-sizing: border-box;
}

/* Typography */
.rc-bp .rc-bp-h1 {
    font-family: 'ProximaNova', 'Proxima Nova', 'Noto Sans', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.15;
    color: var(--rc-ink);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.rc-bp .rc-bp-h2 {
    font-family: 'ProximaNova', 'Proxima Nova', 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: var(--rc-ink);
    margin: 0 0 12px;
    letter-spacing: -0.015em;
}
.rc-bp .rc-bp-h3 {
    font-family: 'ProximaNova', 'Proxima Nova', 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--rc-ink);
    margin: 0 0 8px;
}
.rc-bp p { margin: 0 0 12px; }
.rc-bp a { color: var(--rc-green-dark); text-decoration: none; }
.rc-bp a:hover { text-decoration: underline; }

/* Section headers */
.rc-bp .rc-bp-section-eyebrow {
    display: inline-block;
    font-family: 'Plakkaat', 'ProximaNova', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rc-green-dark);
    background: var(--rc-green-soft);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.rc-bp .rc-bp-section-head {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 720px;
}
.rc-bp .rc-bp-section-lead {
    font-size: 17px;
    color: var(--rc-ink-soft);
    margin: 0;
}

/* Section wrapper */
.rc-bp .rc-bp-section {
    padding: 56px 0;
    margin: 0;
}

/* Buttons */
.rc-bp .rc-bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'ProximaNova', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 14px 24px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    text-decoration: none !important;
    min-height: 48px;
    white-space: nowrap;
}
.rc-bp .rc-bp-btn-lg {
    padding: 18px 32px;
    font-size: 17px;
    min-height: 56px;
}
.rc-bp .rc-bp-btn-block {
    width: 100%;
}
.rc-bp .rc-bp-btn-primary {
    background: var(--rc-green) !important;
    color: var(--rc-white) !important;
    border-color: var(--rc-green) !important;
    box-shadow: 0 6px 16px rgba(0,191,99,0.25);
}
.rc-bp .rc-bp-btn-primary:hover {
    background: var(--rc-green-dark) !important;
    border-color: var(--rc-green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,191,99,0.35);
    text-decoration: none !important;
}
.rc-bp .rc-bp-btn-primary:active {
    transform: translateY(0);
}
.rc-bp .rc-bp-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.rc-bp .rc-bp-btn-ghost {
    background: transparent !important;
    color: var(--rc-ink) !important;
    border-color: var(--rc-grey-200) !important;
}
.rc-bp .rc-bp-btn-ghost:hover {
    background: var(--rc-grey-50) !important;
    border-color: var(--rc-grey-200) !important;
    transform: translateY(-1px);
}
.rc-bp .rc-bp-btn-outline {
    background: var(--rc-white) !important;
    color: var(--rc-green-dark) !important;
    border-color: var(--rc-green) !important;
}
.rc-bp .rc-bp-btn-outline:hover {
    background: var(--rc-green-soft) !important;
    color: var(--rc-green-dark) !important;
    transform: translateY(-1px);
}
.rc-bp .rc-bp-btn-arrow {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.15s ease;
}
.rc-bp .rc-bp-btn:hover .rc-bp-btn-arrow {
    transform: translateX(2px);
}

/* =================================================================
 * 1. Hero
 * ================================================================= */
.rc-bp-hero {
    position: relative;
    padding: 56px 24px 64px;
    background: linear-gradient(180deg, var(--rc-cream) 0%, var(--rc-white) 100%);
    overflow: hidden;
}
.rc-bp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.rc-bp-hero-confetti {
    position: absolute;
    opacity: 0.6;
}
.rc-bp-hero-confetti-a {
    top: 12%;
    right: 8%;
}
.rc-bp-hero-confetti-b {
    bottom: 16%;
    left: 6%;
}
.rc-bp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.rc-bp-hero-copy {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.rc-bp-hero-eyebrow {
    display: inline-block;
    font-family: 'Plakkaat', 'ProximaNova', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rc-green-dark);
    background: var(--rc-green-soft);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.rc-bp-hero-sub {
    font-size: 18px;
    color: var(--rc-ink-soft);
    margin: 0 0 24px;
    line-height: 1.5;
}
.rc-bp-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 28px;
}
.rc-bp .rc-bp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rc-white);
    color: var(--rc-ink);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--rc-grey-200);
    box-shadow: var(--rc-shadow-sm);
}
.rc-bp .rc-bp-chip-icon {
    display: inline-flex;
    color: var(--rc-green);
}
.rc-bp-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.rc-bp-hero-media {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: var(--rc-radius-lg);
    overflow: hidden;
    box-shadow: var(--rc-shadow-lg);
    aspect-ratio: 16 / 10;
}
.rc-bp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .rc-bp .rc-bp-h1 {
        font-size: 52px;
    }
    .rc-bp-hero {
        padding: 80px 32px 96px;
    }
    .rc-bp-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 64px;
    }
    .rc-bp-hero-copy {
        text-align: left;
        flex: 1 1 50%;
        margin: 0;
    }
    .rc-bp-hero-chips {
        justify-content: flex-start;
    }
    .rc-bp-hero-cta-row {
        justify-content: flex-start;
    }
    .rc-bp-hero-media {
        flex: 1 1 50%;
        max-width: 600px;
        margin: 0;
    }
}
@media (min-width: 1100px) {
    .rc-bp .rc-bp-h1 { font-size: 64px; }
    .rc-bp .rc-bp-h2 { font-size: 40px; }
}

/* =================================================================
 * Shell (centered, single-column, max-width 1280) — F2 layout
 * ================================================================= */
.rc-bp-shell {
    padding: 0 16px;
    background: var(--rc-cream);
}
.rc-bp-shell-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: block;
}
.rc-bp-shell-inner > section:first-child,
.rc-bp-shell-inner > .rc-bp-form-section:first-child { padding-top: 32px; }

@media (min-width: 768px) {
    .rc-bp-shell {
        padding: 0 32px;
    }
}

/* =================================================================
 * Pakete im Detail (section 2 — before form)
 * ================================================================= */
.rc-bp-section-pakete {
    padding-top: 24px !important;
    padding-bottom: 56px;
}
.rc-bp-pakete-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 700px) {
    .rc-bp-pakete-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
.rc-bp-paket-card-lg {
    position: relative;
    background: var(--rc-white);
    border: 2px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--rc-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rc-bp-paket-card-lg:hover {
    transform: translateY(-4px);
    box-shadow: var(--rc-shadow-md);
}
.rc-bp-paket-card-lg.is-popular {
    border-color: var(--rc-green);
    box-shadow: 0 16px 32px rgba(0,191,99,0.14);
}
@media (min-width: 700px) {
    .rc-bp-paket-card-lg.is-popular {
        transform: scale(1.03);
    }
    .rc-bp-paket-card-lg.is-popular:hover {
        transform: scale(1.03) translateY(-4px);
    }
}
.rc-bp-paket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rc-yellow);
    color: var(--rc-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255,184,0,0.4);
}
.rc-bp-paket-badge.is-deluxe {
    background: var(--rc-ink);
    color: var(--rc-white);
    box-shadow: 0 4px 12px rgba(26,31,38,0.3);
}
.rc-bp-paket-card-head {
    text-align: center;
    margin-bottom: 16px;
}
.rc-bp-paket-card-name {
    font-size: 22px;
    margin: 0 0 4px;
}
.rc-bp-paket-card-tagline {
    font-size: 13px;
    color: var(--rc-ink-soft);
    margin: 0;
}
.rc-bp-paket-card-price {
    text-align: center;
    margin: 8px 0 24px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.rc-bp-paket-card-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--rc-ink);
    letter-spacing: -0.02em;
}
.rc-bp-paket-card-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--rc-ink);
}
.rc-bp-paket-card-unit {
    font-size: 13px;
    color: var(--rc-ink-soft);
    margin-left: 8px;
}
.rc-bp-paket-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rc-bp-paket-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--rc-ink);
}
.rc-bp-paket-card-list li.is-off {
    color: var(--rc-ink-soft);
    opacity: 0.55;
}
.rc-bp-paket-card-list .rc-bp-tick {
    flex: 0 0 18px;
    color: var(--rc-green);
    margin-top: 2px;
}
.rc-bp-paket-card-list li.is-off .rc-bp-tick {
    color: var(--rc-grey-200);
}
.rc-bp-paket-note {
    text-align: center;
    font-size: 14px;
    color: var(--rc-ink-soft);
    margin-top: 24px;
}

/* =================================================================
 * Form section — F2: centered, max-width 720, NO STICKY/NO RAIL
 * ================================================================= */
.rc-bp-form-section {
    padding: 24px 0 56px;
}
@media (min-width: 768px) {
    .rc-bp-form-section {
        padding: 32px 0 80px;
    }
}
.rc-bp-form-card {
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--rc-shadow-md);
    border: 2px solid var(--rc-green-soft);
    max-width: 720px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .rc-bp-form-card { padding: 40px 36px; }
}
.rc-bp-form-head {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rc-grey-100);
}
.rc-bp .rc-bp-form-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rc-green-dark);
    background: var(--rc-green-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.rc-bp .rc-bp-form-h2 {
    font-size: 24px;
    margin: 0 0 4px;
}
@media (min-width: 768px) {
    .rc-bp .rc-bp-form-h2 { font-size: 28px; }
}
.rc-bp-form-sub {
    font-size: 14px;
    color: var(--rc-ink-soft);
    margin: 0;
}
.rc-bp-fs {
    border: 0;
    padding: 0;
    margin: 0 0 24px;
}
.rc-bp-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--rc-ink);
    margin-bottom: 12px;
    padding: 0;
}
.rc-bp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--rc-green-soft);
    color: var(--rc-green-dark);
    font-size: 12px;
    font-weight: 800;
}

/* Paket selector inside form */
.rc-bp-fs-paket .rc-bp-paket-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (min-width: 480px) {
    .rc-bp-fs-paket .rc-bp-paket-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.rc-bp .rc-bp-paket-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--rc-white);
    border: 2px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-md);
    padding: 12px 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
    text-align: center;
    min-height: 90px;
}
.rc-bp .rc-bp-paket-card:hover {
    border-color: var(--rc-green);
    transform: translateY(-1px);
}
.rc-bp .rc-bp-paket-card.is-selected {
    border-color: var(--rc-green);
    background: var(--rc-green-soft);
}
.rc-bp .rc-bp-paket-card.is-popular {
    border-color: var(--rc-yellow);
}
.rc-bp .rc-bp-paket-card.is-popular.is-selected {
    border-color: var(--rc-green);
}
.rc-bp .rc-bp-paket-mini-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rc-yellow);
    color: var(--rc-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
}
.rc-bp-paket-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.rc-bp-paket-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--rc-ink);
    margin-bottom: 2px;
}
.rc-bp-paket-price {
    font-weight: 800;
    font-size: 17px;
    color: var(--rc-green-dark);
}
.rc-bp-paket-blurb {
    font-size: 11px;
    color: var(--rc-ink-soft);
    line-height: 1.3;
    margin-top: 4px;
}

/* Stepper */
.rc-bp-stepper {
    display: flex;
    align-items: stretch;
    gap: 8px;
    max-width: 220px;
}
.rc-bp .rc-bp-stepper-btn {
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rc-grey-50);
    border: 1px solid var(--rc-grey-200);
    border-radius: var(--rc-radius-sm);
    color: var(--rc-ink);
    cursor: pointer;
    min-height: 48px;
    transition: background 0.1s ease;
}
.rc-bp .rc-bp-stepper-btn:hover {
    background: var(--rc-grey-100);
}
.rc-bp-stepper-input {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--rc-ink);
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-200);
    border-radius: var(--rc-radius-sm);
    padding: 8px;
    min-height: 48px;
    -moz-appearance: textfield;
}
.rc-bp-stepper-input::-webkit-outer-spin-button,
.rc-bp-stepper-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Addons */
.rc-bp .rc-bp-addon {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--rc-grey-200);
    border-radius: var(--rc-radius-md);
    cursor: pointer;
    background: var(--rc-white);
    margin-bottom: 8px;
    transition: border-color 0.15s ease, background 0.15s ease;
    min-height: 60px;
}
.rc-bp .rc-bp-addon:hover {
    border-color: var(--rc-green);
}
.rc-bp .rc-bp-addon.is-checked,
.rc-bp .rc-bp-addon:has(.rc-bp-addon-input:checked) {
    border-color: var(--rc-green);
    background: var(--rc-green-soft);
}
.rc-bp .rc-bp-addon.is-locked {
    opacity: 0.75;
    cursor: not-allowed;
    background: var(--rc-grey-50);
}
.rc-bp .rc-bp-addon-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.rc-bp .rc-bp-addon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid var(--rc-grey-200);
    background: var(--rc-white);
    color: transparent;
    transition: all 0.1s ease;
}
.rc-bp .rc-bp-addon:has(.rc-bp-addon-input:checked) .rc-bp-addon-check,
.rc-bp .rc-bp-addon.is-checked .rc-bp-addon-check {
    background: var(--rc-green);
    border-color: var(--rc-green);
    color: var(--rc-white);
}
.rc-bp-addon-title {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--rc-ink);
}
.rc-bp-addon-sub {
    display: block;
    font-size: 12px;
    color: var(--rc-ink-soft);
    line-height: 1.4;
    margin-top: 2px;
}
.rc-bp-addon-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--rc-green-dark);
    background: var(--rc-green-soft);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.rc-bp .rc-bp-addon.is-locked .rc-bp-addon-price {
    background: var(--rc-grey-100);
    color: var(--rc-ink-soft);
}

/* Native inputs */
.rc-bp .rc-bp-input {
    width: 100%;
    padding: 14px 14px;
    border: 1px solid var(--rc-grey-200);
    border-radius: var(--rc-radius-md);
    background: var(--rc-white);
    font-size: 16px;
    color: var(--rc-ink);
    font-family: inherit;
    min-height: 52px;
    transition: border-color 0.15s ease;
}
.rc-bp .rc-bp-input:focus {
    outline: none;
    border-color: var(--rc-green);
    box-shadow: 0 0 0 4px rgba(0,191,99,0.15);
}
.rc-bp .rc-bp-hint {
    font-size: 12px;
    color: var(--rc-ink-soft);
    margin: 8px 0 0;
}

/* Live total */
.rc-bp-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    background: var(--rc-green-soft);
    border: 1px solid var(--rc-green);
    border-radius: var(--rc-radius-md);
    padding: 16px 20px;
    margin: 8px 0 16px;
}
.rc-bp-total-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--rc-ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.rc-bp-total-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--rc-green-dark);
    transition: transform 0.2s ease;
}
.rc-bp-total-value.is-pulse {
    animation: rc-bp-pulse 0.4s ease;
}
@keyframes rc-bp-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.rc-bp-alert {
    background: #FFF1F1;
    border: 1px solid #FFB4B4;
    color: #8A1F1F;
    padding: 12px 16px;
    border-radius: var(--rc-radius-sm);
    font-size: 14px;
    margin: 12px 0 0;
}

.rc-bp .rc-bp-dsgvo {
    font-size: 11px;
    color: var(--rc-ink-soft);
    line-height: 1.5;
    margin-top: 14px;
}

/* =================================================================
 * Program (timeline)
 * ================================================================= */
.rc-bp-program-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: rc-prog;
}
@media (min-width: 900px) {
    .rc-bp-program-list {
        flex-direction: row;
        gap: 20px;
    }
}
.rc-bp-program-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-md);
    padding: 20px;
    box-shadow: var(--rc-shadow-sm);
    flex: 1;
}
.rc-bp-program-num {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--rc-green);
    color: var(--rc-white);
    font-weight: 800;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.rc-bp-program-body { flex: 1; }
.rc-bp-program-title {
    font-size: 16px;
    margin: 0 0 4px;
}
.rc-bp-program-about {
    font-size: 14px;
    color: var(--rc-ink-soft);
    margin: 0;
    line-height: 1.55;
}

/* =================================================================
 * Advantages
 * ================================================================= */
.rc-bp-adv-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .rc-bp-adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (min-width: 1100px) {
    .rc-bp-adv-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.rc-bp-adv-card {
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--rc-shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rc-bp-adv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rc-shadow-md);
}
.rc-bp .rc-bp-adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--rc-green-soft);
    color: var(--rc-green-dark);
    margin-bottom: 16px;
}
.rc-bp-adv-title {
    font-size: 18px;
    margin: 0 0 8px;
}
.rc-bp-adv-body {
    font-size: 15px;
    color: var(--rc-ink-soft);
    line-height: 1.6;
}
.rc-bp-adv-body p { margin: 0 0 8px; }

/* =================================================================
 * Photo carousel
 * ================================================================= */
.rc-bp-section-gallery .rc-bp-carousel {
    position: relative;
    margin: 0 -8px;
}
.rc-bp-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
    scrollbar-width: none; /* Firefox */
}
.rc-bp-carousel-track::-webkit-scrollbar {
    display: none; /* Webkit */
}
.rc-bp-carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: var(--rc-radius-lg);
    overflow: hidden;
    box-shadow: var(--rc-shadow-md);
    aspect-ratio: 4 / 3;
    background: var(--rc-grey-100);
}
@media (min-width: 768px) {
    .rc-bp-carousel-slide {
        flex: 0 0 calc((100% - 32px) / 3);
    }
}
.rc-bp-carousel-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rc-bp .rc-bp-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-200);
    color: var(--rc-ink);
    box-shadow: var(--rc-shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}
.rc-bp .rc-bp-carousel-arrow:hover {
    background: var(--rc-green);
    color: var(--rc-white);
    transform: translateY(-50%) scale(1.05);
}
.rc-bp .rc-bp-carousel-prev { left: 8px; }
.rc-bp .rc-bp-carousel-next { right: 8px; }
@media (min-width: 600px) {
    .rc-bp .rc-bp-carousel-prev { left: -8px; }
    .rc-bp .rc-bp-carousel-next { right: -8px; }
}
.rc-bp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.rc-bp .rc-bp-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--rc-grey-200);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}
.rc-bp .rc-bp-carousel-dot.is-active {
    background: var(--rc-green);
    transform: scale(1.3);
}

/* =================================================================
 * Video block
 * ================================================================= */
.rc-bp-video-poster {
    position: relative;
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--rc-radius-lg);
    overflow: hidden;
    background: var(--rc-ink);
    border: 0;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    box-shadow: var(--rc-shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rc-bp-video-poster:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(15,23,42,0.18);
}
.rc-bp-video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.4s ease;
}
.rc-bp-video-poster:hover .rc-bp-video-poster-img {
    opacity: 1;
    transform: scale(1.02);
}
.rc-bp-video-poster-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rc-green) 0%, #008f4a 100%);
}
.rc-bp-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.3));
    transition: transform 0.15s ease;
}
.rc-bp-video-poster:hover .rc-bp-video-play {
    transform: translate(-50%, -50%) scale(1.08);
}
.rc-bp-video-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--rc-white);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.rc-bp-video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 24px;
}
.rc-bp-video-lightbox.is-open {
    opacity: 1;
}
.rc-bp-video-lightbox-inner {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
}
.rc-bp-video-lightbox-video {
    width: 100%;
    height: 100%;
    border-radius: var(--rc-radius-lg);
    background: #000;
}
.rc-bp .rc-bp-video-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--rc-white);
    color: var(--rc-ink);
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
html.rc-bp-no-scroll, html.rc-bp-no-scroll body {
    overflow: hidden;
}

/* =================================================================
 * FAQ
 * ================================================================= */
.rc-bp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 880px;
    margin: 0 auto;
}
.rc-bp-faq-item {
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-md);
    overflow: hidden;
    transition: border-color 0.15s ease;
}
.rc-bp-faq-item[open] {
    border-color: var(--rc-green);
}
.rc-bp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: var(--rc-ink);
    cursor: pointer;
    list-style: none;
    line-height: 1.4;
}
.rc-bp-faq-q::-webkit-details-marker { display: none; }
.rc-bp-faq-q-icon {
    flex: 0 0 20px;
    color: var(--rc-green-dark);
    transition: transform 0.2s ease;
}
.rc-bp-faq-item[open] .rc-bp-faq-q-icon {
    transform: rotate(180deg);
}
.rc-bp-faq-a {
    padding: 0 22px 20px;
    font-size: 15px;
    color: var(--rc-ink-soft);
    line-height: 1.65;
}
.rc-bp-faq-a p { margin: 0 0 10px; }
.rc-bp-faq-a p:last-child { margin-bottom: 0; }

/* =================================================================
 * Cross-sell themes
 * ================================================================= */
.rc-bp-xs-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 700px) {
    .rc-bp-xs-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1100px) {
    .rc-bp-xs-grid { grid-template-columns: repeat(4, 1fr); }
}
.rc-bp-xs-card {
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-md);
    overflow: hidden;
    box-shadow: var(--rc-shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rc-bp-xs-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rc-shadow-md);
}
.rc-bp .rc-bp-xs-link {
    display: block;
    color: var(--rc-ink);
    text-decoration: none !important;
}
.rc-bp .rc-bp-xs-link:hover {
    text-decoration: none !important;
}
.rc-bp-xs-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--rc-grey-100);
}
.rc-bp-xs-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.rc-bp-xs-card:hover .rc-bp-xs-media img {
    transform: scale(1.05);
}
.rc-bp-xs-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
}
.rc-bp-xs-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--rc-ink);
    flex: 1;
}
.rc-bp-xs-arrow {
    color: var(--rc-green-dark);
    font-size: 18px;
    transition: transform 0.15s ease;
}
.rc-bp-xs-card:hover .rc-bp-xs-arrow {
    transform: translateX(2px);
}
.rc-bp-xs-foot {
    text-align: center;
    margin-top: 28px;
}

/* =================================================================
 * Sticky CTA (mobile only) — scrolls to #rc-bp-form-anchor
 * ================================================================= */
.rc-bp-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 12px 16px;
    background: var(--rc-white);
    border-top: 1px solid var(--rc-grey-100);
    box-shadow: 0 -4px 16px rgba(15,23,42,0.08);
}
.rc-bp .rc-bp-sticky-btn {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    background: var(--rc-green) !important;
    color: var(--rc-white) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none !important;
    min-height: 52px;
}
.rc-bp-sticky-text { flex: 1; text-align: left; }
.rc-bp-sticky-price {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
}
@media (min-width: 768px) {
    .rc-bp-sticky-cta {
        display: none !important;
    }
}

/* =================================================================
 * Reviews (placeholder for filled state)
 * ================================================================= */
.rc-bp-section-reviews .rc-bp-review-card {
    background: var(--rc-white);
    border: 1px solid var(--rc-grey-100);
    border-radius: var(--rc-radius-md);
    padding: 24px;
}

/* Mobile-only spacer for sticky CTA */
@media (max-width: 767px) {
    .rc-bp { padding-bottom: 88px; }
}

/* Section spacing overrides */
@media (min-width: 768px) {
    .rc-bp .rc-bp-section { padding: 72px 0; }
}
@media (min-width: 1100px) {
    .rc-bp .rc-bp-section { padding: 96px 0; }
    .rc-bp .rc-bp-section-pakete { padding-top: 32px !important; }
}
