/* ========================================
   BOOTCAMP PL/SQL (Oracle)
   Layout: bootcamp-AI style
   Palette: deep red (Oracle theme)
======================================== */

:root {
    --or-50: #F5F5F5;
    --or-100: #E8E8E8;
    --or-200: #D4D4D4;
    --or-300: #B0B0B0;
    --or-400: #d0d0d0;
    --or-500: #222222;
    --or-600: #4A4A4A;
    --or-700: #3A3A3A;
    --or-800: #2C2C2C;
    --or-900: #1A1A1A;
    --or-primary-dark: #B71C1C;
    --or-primary: #D32F2F;
    --or-primary-mid: #E53935;
    --or-primary-light: #EF9A9A;
    --or-primary-glow: rgba(211, 47, 47, 0.15);
    --or-white: #FFFFFF;
    --or-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --or-max-width: 1200px;
    --or-section-padding: 80px 0;
    --trp-accent: #D32F2F;
    --trp-accent-rgb: 211, 47, 47;
    --trp-accent-light: #EF9A9A;
}

/* ---- RESET ---- */
.bp *,
.bp *::before,
.bp *::after { margin: 0; padding: 0; box-sizing: border-box; }

.bp { font-family: var(--or-font); color: var(--or-800); line-height: 1.6; background: var(--or-white); overflow-x: hidden; }
.bp img { max-width: 100%; height: auto; }
.bp a { color: var(--or-primary); text-decoration: none; transition: color .3s; }
.bp a:hover { color: var(--or-primary-light); }

.bp .container { max-width: var(--or-max-width); margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.bp__header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(26,26,26,.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.05); }
.bp__header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.bp__header-logo { display: flex; align-items: center; }
.bp__header-logo img { height: 46px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
.bp__header-nav { display: flex; gap: 32px; list-style: none; }
.bp__header-nav a { color: var(--or-300); font-size: .85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color .3s; }
.bp__header-nav a:hover { color: var(--or-white); }
.bp__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.bp__hamburger span { display: block; width: 24px; height: 2px; background: var(--or-white); transition: transform .3s; }

/* ---- HERO ---- */
.bp__hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--or-900) 0%, var(--or-800) 40%, #1a0505 100%); overflow: hidden; padding: 80px 0 24px; }
.bp__hero-video { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.bp__hero-video video { width: 100%; height: 100%; object-fit: cover; }
.bp__hero-video::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,5,5,.78) 0%, rgba(60,10,10,.6) 40%, rgba(80,12,12,.75) 100%); }
.bp__hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(211,47,47,.25) 0%, transparent 70%); top: 10%; right: -10%; animation: bpGlowPulse 6s ease-in-out infinite; z-index: 1; }
.bp__hero-glow--secondary { width: 400px; height: 400px; background: radial-gradient(circle, rgba(239,154,154,.15) 0%, transparent 70%); top: 60%; left: -5%; animation-delay: 3s; }
.bp__hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.bp__hero-text { color: var(--or-white); }
.bp__hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(211,47,47,.25); border: 1px solid rgba(239,154,154,.4); border-radius: 100px; padding: 10px 24px; font-size: .95rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--or-primary-light); margin-bottom: 20px; animation: bpBadgeFloat 3s ease-in-out infinite; box-shadow: 0 4px 20px rgba(211,47,47,.25); }
.bp__hero-badge::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--or-primary-light); animation: bpBadgePulse 2s ease-in-out infinite; }
.bp__hero-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 6px; }
.bp__hero-title span { display: block; background: linear-gradient(135deg, var(--or-primary-light), #ffcdd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bp__hero-subtitle { font-size: 1rem; font-weight: 300; color: var(--or-200); margin-bottom: 20px; max-width: 520px; line-height: 1.6; min-height: 3.2em; }
.bp__typewriter { border-right: 3px solid var(--or-primary-light); animation: bpBlink .8s step-end infinite; display: inline; }
@keyframes bpBlink { 50% { border-color: transparent; } }
.bp__hero-courses { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.bp__hero-course { display: flex; align-items: center; gap: 12px; background: rgba(211,47,47,.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(239,154,154,.18); border-radius: 10px; padding: 10px 16px; transition: all .3s ease; position: relative; text-decoration: none; cursor: pointer; }
.bp__hero-course:hover { background: rgba(211,47,47,.22); border-color: rgba(239,154,154,.35); transform: translateX(6px); }
.bp__hero-course-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--or-primary-dark), var(--or-primary)); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #fff; letter-spacing: .5px; box-shadow: 0 2px 8px rgba(211,47,47,.35); }
.bp__hero-course-days { flex-shrink: 0; background: rgba(239,154,154,.2); border: 1px solid rgba(239,154,154,.25); border-radius: 6px; padding: 3px 10px; font-size: .75rem; font-weight: 700; color: var(--or-primary-light); letter-spacing: .5px; white-space: nowrap; }
.bp__hero-course-name { font-size: .85rem; font-weight: 500; color: var(--or-200); flex: 1; }
.bp__hero-course-icon { flex-shrink: 0; font-size: .8rem; color: rgba(239,154,154,.45); transition: color .3s ease; }
.bp__hero-course:hover .bp__hero-course-icon { color: rgba(239,154,154,.8); }
.bp__hero-stats { display: flex; gap: 36px; margin-bottom: 20px; }
.bp__hero-stat-value { font-size: 1.6rem; font-weight: 800; color: var(--or-primary-light); white-space: nowrap; }
.bp__hero-stat-label { font-size: .75rem; color: var(--or-300); text-transform: uppercase; letter-spacing: .5px; }
.bp__hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.bp__hero-visual { display: flex; justify-content: center; align-items: center; }

/* ---- NEURAL NETWORK SVG ---- */
.bp__neural-svg { width: 100%; max-width: 500px; height: auto; }
.bp__conn { stroke: rgba(239,154,154,0.15); transition: stroke .3s; }
.bp__conn--d1 { animation: bpConnPulse 4s ease-in-out infinite; }
.bp__conn--d2 { animation: bpConnPulse 4s ease-in-out infinite .4s; }
.bp__conn--d3 { animation: bpConnPulse 4s ease-in-out infinite .8s; }
.bp__conn--d4 { animation: bpConnPulse 4s ease-in-out infinite 1.2s; }
.bp__conn--d5 { animation: bpConnPulse 4s ease-in-out infinite 1.6s; }
.bp__conn--d6 { animation: bpConnPulse 4s ease-in-out infinite 2s; }
.bp__conn--d7 { animation: bpConnPulse 4s ease-in-out infinite 2.4s; }
.bp__conn--d8 { animation: bpConnPulse 4s ease-in-out infinite 2.8s; }
.bp__conn--d9 { animation: bpConnPulse 4s ease-in-out infinite 3.2s; }
.bp__node { animation: bpNodeGlow 3s ease-in-out infinite; }
.bp__node--lg { animation: bpNodeGlow 2s ease-in-out infinite; }
.bp__pulse-ring { animation: bpPulseRing 4.5s ease-out infinite; }
.bp__neural-label { font-family: var(--or-font); font-size: 10px; font-weight: 700; fill: rgba(239,154,154,0.6); letter-spacing: 1px; }
.bp__neural-label--center { font-size: 16px; font-weight: 900; fill: rgba(255,255,255,0.9); }

@keyframes bpConnPulse {
    0%, 100% { stroke: rgba(239,154,154,0.1); stroke-width: 1.5; }
    50% { stroke: rgba(239,154,154,0.4); stroke-width: 2; }
}
@keyframes bpNodeGlow {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}
@keyframes bpPulseRing {
    0% { r: 20; opacity: .6; }
    100% { r: 80; opacity: 0; }
}

/* ---- BUTTONS ---- */
.bp .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; border-radius: 8px; font-family: var(--or-font); font-size: .95rem; font-weight: 600; letter-spacing: .5px; cursor: pointer; border: none; transition: all .3s ease; text-decoration: none; }
.bp .btn--primary { background: linear-gradient(135deg, var(--or-primary) 0%, var(--or-primary-mid) 100%); color: var(--or-white); box-shadow: 0 4px 20px rgba(211,47,47,.3); }
.bp .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(211,47,47,.45); color: var(--or-white); }
.bp .btn--outline { background: transparent; color: var(--or-white); border: 2px solid rgba(255,255,255,.2); }
.bp .btn--outline:hover { border-color: var(--or-primary-light); color: var(--or-primary-light); }
.bp .btn--large { padding: 14px 36px; font-size: .95rem; }

/* ---- SECTIONS COMMON ---- */
.bp .section { padding: var(--or-section-padding); }
.bp .section--gray { background: linear-gradient(to bottom, #FFF5F5 0%, #f5e4e4 50%, #ede0e0 100%); position: relative; }
.bp .section--gray::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(211,47,47,.15) 1.5px, transparent 1.5px); background-size: 28px 28px; pointer-events: none; mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); }
.bp .section--gray .container { position: relative; z-index: 1; }
.bp .section--dark { background: var(--or-900); color: var(--or-white); }
.bp .section__header { text-align: center; margin-bottom: 60px; }
.bp .section__label { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--or-primary); margin-bottom: 12px; }
.bp .section--dark .section__label { color: var(--or-primary-light); }
.bp .section__title { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.2; margin-bottom: 16px; }
.bp .section__subtitle { font-size: 1.05rem; color: var(--or-500); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.bp .section--dark .section__subtitle { color: var(--or-200); }

/* ---- AUDIENCE (Dla kogo / O pakiecie) ---- */
.bp .audience__intro { max-width: 800px; margin: 0 auto 48px; text-align: center; font-size: 1.05rem; color: #222; line-height: 1.8; }
.bp .audience__intro strong { color: var(--or-primary); font-weight: 600; }
.bp .audience__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.bp .audience__card { background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, #ffffff 100%); border: 2px solid rgba(211,47,47,.08); border-radius: 20px; padding: 34px 30px 30px 30px; position: relative; overflow: hidden; transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s cubic-bezier(.25,.46,.45,.94), border-color .5s ease, background .5s ease; }
.bp .audience__card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(180deg, var(--or-primary-dark) 0%, var(--or-primary-light) 50%, var(--or-primary-dark) 100%); background-size: 100% 200%; border-radius: 20px 0 0 20px; transition: width .5s ease; animation: bpBorderGlow 3s ease-in-out infinite; }
.bp .audience__card::after { content: ''; position: absolute; inset: 0; border-radius: 20px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px) saturate(1.4); -webkit-backdrop-filter: blur(8px) saturate(1.4); opacity: 0; transition: opacity .5s cubic-bezier(.25,.46,.45,.94); pointer-events: none; z-index: 1; }
.bp .audience__card:hover { transform: translateY(-8px) scale(1.02); background: transparent; box-shadow: 0 12px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08); border-color: rgba(211,47,47,.12); }
.bp .audience__card:hover::before { width: 6px; }
.bp .audience__card:hover::after { opacity: 1; }
.bp .audience__icon, .bp .audience__card h3, .bp .audience__card p { position: relative; z-index: 2; }
.bp .audience__icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, rgba(211,47,47,.1) 0%, rgba(211,47,47,.05) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--or-primary); font-size: 1.5rem; transition: transform .5s cubic-bezier(.25,.46,.45,.94), background .5s ease, box-shadow .5s ease; }
.bp .audience__card:hover .audience__icon { transform: scale(1.1); background: rgba(211,47,47,.1); box-shadow: 0 4px 16px rgba(211,47,47,.08); }
.bp .audience__card:hover .audience__icon i { animation: bpIconPulse 1.5s ease-in-out infinite; }
.bp .audience__card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--or-800); transition: color .5s ease; }
.bp .audience__card p { font-size: .9rem; color: var(--or-500); line-height: 1.6; transition: color .5s ease; }
.bp .audience__card p strong { color: var(--or-primary); font-weight: 600; }
.bp .audience__card:hover p { color: #555; }
.bp .audience__trainerLink { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 10px 22px; font-size: .85rem; font-weight: 600; color: var(--dv-white); background: linear-gradient(135deg, var(--dv-primary-dark), var(--dv-primary)); text-decoration: none; border-radius: 50px; position: relative; z-index: 2; transition: transform .3s ease, box-shadow .3s ease, gap .3s ease; box-shadow: 0 3px 12px rgba(139,0,0,.25); }
.bp .audience__trainerLink:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,0,0,.35); gap: 12px; }
.bp .audience__trainerLink i { font-size: .75rem; transition: transform .3s ease; }
.bp .audience__trainerLink:hover i { transform: translateX(3px); }
@keyframes bpBorderGlow { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes bpIconPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ---- SECTION WITH BACKGROUND IMAGE ---- */
.bp .section--bg-image { position: relative; overflow: hidden; }
.bp .section--bg-image > .container { position: relative; z-index: 2; }
.bp .section--bg-image__img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; z-index: 0; pointer-events: none; mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%); filter: saturate(1.1); }
.bp .section--bg-image__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(245,245,245,.3) 0%, rgba(245,245,245,.7) 80%); z-index: 1; pointer-events: none; }

/* ---- BENEFITS ---- */
.bp .benefits__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.bp .benefit { display: flex; gap: 20px; padding: 32px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; transition: all .3s ease; position: relative; overflow: hidden; }
.bp .benefit:hover { background: rgba(255,255,255,.06); border-color: rgba(239,154,154,.2); }
.bp .benefit__number { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--or-primary-dark), var(--or-primary)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: var(--or-white); }
.bp .benefit__content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--or-white); }
.bp .benefit__content p { font-size: .9rem; color: var(--or-200); line-height: 1.6; }

/* ---- PROGRAM ---- */
.bp .program__courses { display: flex; flex-direction: column; gap: 0; position: relative; }
.bp .program__course { background: var(--or-white); border-radius: 20px; border: 1px solid var(--or-100); overflow: hidden; transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s cubic-bezier(.25,.46,.45,.94), border-color .4s ease; }
.bp .program__course:hover { transform: translateY(-4px) scale(1.005); box-shadow: 0 16px 48px rgba(211,47,47,.12), 0 4px 12px rgba(0,0,0,.06); border-color: rgba(211,47,47,.15); }
.bp .program__course-header { background: linear-gradient(135deg, var(--or-900) 0%, #1a0505 50%, var(--or-800) 100%); background-size: 200% 200%; animation: bpHeaderShift 8s ease-in-out infinite; padding: 32px 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; position: relative; overflow: hidden; cursor: pointer; }
.bp .program__course-toggle { margin-left: auto; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--or-white); font-size: .9rem; transition: transform .4s cubic-bezier(.25,.46,.45,.94), background .3s ease; position: relative; z-index: 1; flex-shrink: 0; }
.bp .program__course-header:hover .program__course-toggle { background: rgba(255,255,255,.15); }
.bp .program__course.collapsed .program__course-toggle { transform: rotate(180deg); }
.bp .program__course-body { overflow: hidden; transition: max-height .5s cubic-bezier(.25,.46,.45,.94), opacity .4s ease; max-height: 2000px; opacity: 1; }
.bp .program__course.collapsed .program__course-body { max-height: 0; opacity: 0; }
.bp .program__course-header::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(211,47,47,.08) 0%, transparent 50%); pointer-events: none; }
.bp .program__course-header::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--or-primary-dark), var(--or-primary-light), var(--or-primary-dark)); background-size: 200% 100%; animation: bpHeaderLine 4s linear infinite; }

/* Stage badge */
.bp .program__stage-badge { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--or-primary-dark), var(--or-primary)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; color: var(--or-white); box-shadow: 0 4px 20px rgba(211,47,47,.35); position: relative; z-index: 1; transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease; }
.bp .program__stage-badge::after { content: ''; position: absolute; inset: -3px; border-radius: 17px; border: 2px solid rgba(239,154,154,.3); animation: bpBadgePulseRing 3s ease-in-out infinite; }
.bp .program__course:hover .program__stage-badge { transform: scale(1.1) rotate(-3deg); box-shadow: 0 6px 28px rgba(211,47,47,.5); }

.bp .program__header-text { flex: 1; min-width: 0; }
.bp .program__course-header h3 { font-size: 1.3rem; font-weight: 800; color: var(--or-white); margin-bottom: 6px; }
.bp .program__course-meta { display: flex; gap: 24px; }
.bp .program__course-meta-item { display: flex; align-items: center; gap: 8px; color: var(--or-300); font-size: .85rem; font-weight: 500; }
.bp .program__course-meta-item i { color: var(--or-primary-light); }

/* Level bar */
.bp .program__level-bar { position: absolute; bottom: 3px; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,.06); z-index: 1; }
.bp .program__level-fill { height: 100%; background: linear-gradient(90deg, var(--or-primary-light), #EF9A9A); border-radius: 0 3px 3px 0; transition: width 1.5s cubic-bezier(.25,.46,.45,.94); position: relative; }
.bp .program__level-fill::after { content: ''; position: absolute; right: 0; top: -2px; width: 8px; height: 8px; border-radius: 50%; background: #EF9A9A; box-shadow: 0 0 12px rgba(239,154,154,.6); }

/* Connector between stages */
.bp .program__connector { display: flex; flex-direction: column; align-items: center; gap: 0; padding: 8px 0; }
.bp .program__connector-line { width: 2px; height: 16px; background: linear-gradient(180deg, var(--or-primary-light), rgba(239,154,154,.2)); }
.bp .program__connector-icon { color: var(--or-primary-light); font-size: .9rem; animation: bpConnectorBounce 2s ease-in-out infinite; filter: drop-shadow(0 0 6px rgba(239,154,154,.4)); }

.bp .program__course-desc { padding: 24px 40px 8px; font-size: .95rem; color: var(--or-600); line-height: 1.7; }
.bp .program__modules { padding: 16px 40px 32px; }
.bp .program__toggle-all { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; margin-bottom: 16px; background: var(--or-primary-glow); border: 1px solid rgba(211,47,47,.2); border-radius: 8px; font-family: var(--or-font); font-size: .85rem; font-weight: 600; color: var(--or-primary); cursor: pointer; transition: all .3s ease; }
.bp .program__toggle-all:hover { background: rgba(211,47,47,.12); border-color: var(--or-primary); }
.bp .program__module { padding: 20px 0; border-bottom: 1px solid var(--or-100); transition: background .3s ease; }
.bp .program__module:last-child { border-bottom: none; }
.bp .program__module:hover { background: rgba(211,47,47,.02); }
.bp .program__module-header { display: flex; align-items: flex-start; gap: 16px; cursor: pointer; user-select: none; }
.bp .program__module-number { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: var(--or-primary-glow); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: var(--or-primary); transition: all .3s ease; }
.bp .program__module:hover .program__module-number { background: rgba(211,47,47,.12); transform: scale(1.08); }
.bp .program__module.active .program__module-number { background: linear-gradient(135deg, var(--or-primary-dark), var(--or-primary)); color: var(--or-white); box-shadow: 0 2px 10px rgba(211,47,47,.25); }
.bp .program__module-title { font-size: 1rem; font-weight: 600; color: var(--or-800); line-height: 1.5; flex: 1; transition: color .3s ease; }
.bp .program__module.active .program__module-title { color: var(--or-primary); }
.bp .program__module-toggle { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--or-50); display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.bp .program__module:hover .program__module-toggle { background: var(--or-primary-glow); }
.bp .program__module-toggle i { font-size: .7rem; color: var(--or-500); transition: transform .3s ease, color .3s ease; }
.bp .program__module.active .program__module-toggle { background: var(--or-primary-glow); }
.bp .program__module.active .program__module-toggle i { transform: rotate(180deg); color: var(--or-primary); }
.bp .program__module-content { display: none; padding: 12px 0 4px 52px; }
.bp .program__module.active .program__module-content { display: block; animation: bpModuleSlide .4s ease-out; }
.bp .program__module-content ul { list-style: none; }
.bp .program__module-content li { position: relative; padding: 6px 0 6px 20px; font-size: .9rem; color: var(--or-600); line-height: 1.5; transition: color .2s ease; }
.bp .program__module-content li:hover { color: var(--or-800); }
.bp .program__module-content li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--or-primary-light); transition: transform .2s ease, box-shadow .2s ease; }
.bp .program__module-content li:hover::before { transform: scale(1.4); box-shadow: 0 0 8px rgba(239,154,154,.4); }
.bp .program__course-link { display: inline-flex; align-items: center; gap: 10px; margin: 12px 40px 24px; padding: 14px 28px; font-size: .95rem; font-weight: 700; color: var(--or-white); background: linear-gradient(135deg, var(--or-primary) 0%, var(--or-primary-mid) 100%); border-radius: 10px; box-shadow: 0 4px 16px rgba(211,47,47,.25); transition: all .3s ease; }
.bp .program__course-link:hover { color: var(--or-white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(211,47,47,.4); gap: 14px; }
.bp .program__course-link i { transition: transform .3s ease; }
.bp .program__course-link:hover i { transform: translateX(4px); }

@keyframes bpHeaderShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes bpHeaderLine { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes bpBadgePulseRing { 0%,100% { opacity: .4; transform: scale(1); } 50% { opacity: .8; transform: scale(1.08); } }
@keyframes bpConnectorBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@keyframes bpModuleSlide { 0% { opacity: 0; transform: translateY(-8px); } 100% { opacity: 1; transform: translateY(0); } }

/* ---- INFO GRID ---- */
.bp .info__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.bp .info__item { text-align: left; padding: 34px 30px 30px 30px; background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, #ffffff 100%); border: 2px solid rgba(211,47,47,.08); border-radius: 20px; position: relative; overflow: hidden; transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s cubic-bezier(.25,.46,.45,.94), border-color .5s ease, background .5s ease; }
.bp .info__item::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(180deg, var(--or-primary-dark) 0%, var(--or-primary-light) 50%, var(--or-primary-dark) 100%); background-size: 100% 200%; border-radius: 20px 0 0 20px; transition: width .5s ease; animation: bpBorderGlow 3s ease-in-out infinite; }
.bp .info__item::after { content: ''; position: absolute; inset: 0; border-radius: 20px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px) saturate(1.4); -webkit-backdrop-filter: blur(8px) saturate(1.4); opacity: 0; transition: opacity .5s cubic-bezier(.25,.46,.45,.94); pointer-events: none; z-index: 1; }
.bp .info__item:hover { transform: translateY(-8px) scale(1.02); background: transparent; box-shadow: 0 12px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.08); border-color: rgba(211,47,47,.12); }
.bp .info__item:hover::before { width: 6px; }
.bp .info__item:hover::after { opacity: 1; }
.bp .info__icon, .bp .info__item h3, .bp .info__item p, .bp .info__course-list { position: relative; z-index: 2; }
.bp .info__icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, rgba(211,47,47,.1) 0%, rgba(211,47,47,.05) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; color: var(--or-primary); transition: transform .5s cubic-bezier(.25,.46,.45,.94), background .5s ease, box-shadow .5s ease; }
.bp .info__item:hover .info__icon { transform: scale(1.1); background: rgba(211,47,47,.1); box-shadow: 0 4px 16px rgba(211,47,47,.08); }
.bp .info__item:hover .info__icon i { animation: bpIconPulse 1.5s ease-in-out infinite; }
.bp .info__item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--or-800); transition: color .5s ease; }
.bp .info__item p { font-size: .9rem; color: var(--or-500); line-height: 1.6; transition: color .5s ease; }
.bp .info__item:hover p { color: #555; }
.bp .info__course-list { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; text-align: left; }
.bp .info__course-list li { padding: 0; background: var(--or-50); border: 1px solid var(--or-100); border-radius: 8px; transition: all .3s ease; }
.bp .info__course-list li a { display: flex; align-items: center; gap: 8px; padding: 6px 10px; text-decoration: none; color: inherit; width: 100%; }
.bp .info__course-list li:hover { background: var(--or-primary-glow); border-color: rgba(211,47,47,.15); transform: translateX(4px); }
.bp .info__course-num { flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, var(--or-primary-dark), var(--or-primary)); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; color: #fff; letter-spacing: .5px; }
.bp .info__course-days { flex-shrink: 0; font-size: .7rem; font-weight: 700; color: var(--or-primary); background: var(--or-primary-glow); border: 1px solid rgba(211,47,47,.12); border-radius: 5px; padding: 2px 8px; white-space: nowrap; }
.bp .info__course-name { font-size: .78rem; font-weight: 500; color: var(--or-600); }

/* ---- HIGHLIGHT INFO CARD ---- */
.bp .info__item--highlight { background: linear-gradient(135deg, #FFF0F0 0%, #FFE0E0 50%, #FFF0F0 100%); border-color: rgba(211,47,47,.35); box-shadow: 0 6px 24px rgba(211,47,47,.16), 0 2px 8px rgba(0,0,0,.08); }
.bp .info__item--highlight::before { opacity: 1; width: 6px; }
.bp .info__item--highlight .info__icon { background: linear-gradient(135deg, rgba(211,47,47,.25) 0%, rgba(211,47,47,.15) 100%); box-shadow: 0 4px 16px rgba(211,47,47,.12); }

/* ---- PRICING SECTION ---- */
.bp .pricing-section { background: linear-gradient(160deg, #1a0505 0%, var(--or-900) 40%, #2a0a0a 70%, #1a0505 100%); position: relative; overflow: hidden; }
.bp .pricing-section__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bp .pricing-section__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15; }
.bp .pricing-section__orb--1 { width: 500px; height: 500px; background: var(--or-primary); top: -150px; right: -100px; animation: bpOrbFloat1 12s ease-in-out infinite; }
.bp .pricing-section__orb--2 { width: 400px; height: 400px; background: var(--or-primary-light); bottom: -100px; left: -80px; animation: bpOrbFloat2 15s ease-in-out infinite; }
.bp .pricing-section__orb--3 { width: 300px; height: 300px; background: #d50000; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: bpOrbFloat3 10s ease-in-out infinite; }
.bp .pricing-section__grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(239,154,154,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(239,154,154,.03) 1px, transparent 1px); background-size: 60px 60px; }
@keyframes bpOrbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(1.1); } }
@keyframes bpOrbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.15); } }
@keyframes bpOrbFloat3 { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .1; } 50% { transform: translate(-50%,-50%) scale(1.3); opacity: .2; } }

/* Card wrapper */
.bp .pricing__wrapper { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

/* Card */
.bp .pricing__card { position: relative; border-radius: 28px; overflow: hidden; background: linear-gradient(160deg, #250808, #1a0505); border: 2px solid rgba(239,154,154,.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }

/* Card top — price hero with bg image + frosted glass */
.bp .pricing__card-top { padding: 48px 40px 40px; text-align: center; position: relative; overflow: hidden; }
.bp .pricing__card-top-bg { position: absolute; inset: 0; background: url('../../../images/packages/oracle_developer3.jpg') center / cover no-repeat; z-index: 0; }
.bp .pricing__card-top-bg::after { content: ''; position: absolute; inset: 0; background: rgba(26,5,5,.52); backdrop-filter: blur(6px) saturate(1.2); -webkit-backdrop-filter: blur(6px) saturate(1.2); }
.bp .pricing__card-top > *:not(.pricing__card-top-bg) { position: relative; z-index: 1; }
.bp .pricing__discount-badge { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--or-primary), var(--or-primary-mid)); color: #fff; font-size: 1rem; font-weight: 800; padding: 16px 32px; border-radius: 100px; letter-spacing: 1px; margin-bottom: 20px; box-shadow: 0 6px 28px rgba(211,47,47,.4), 0 0 40px rgba(211,47,47,.4); animation: discount-pulse 2.5s ease-in-out infinite; }
.bp .pricing__discount-badge i { font-size: .8rem; }
.bp .pricing__card-top h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.bp .pricing__card-top p { font-size: .95rem; color: rgba(255,255,255,.75); margin-bottom: 32px; font-weight: 500; letter-spacing: .3px; }

/* BUR/KFS inline badge */
.bp .pricing__ribbon { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: rgba(239,154,154,.25); border: 1px solid rgba(239,154,154,.5); color: #ef9a9a; font-size: .82rem; font-weight: 700; letter-spacing: .5px; padding: 10px 24px; border-radius: 100px; position: relative; z-index: 2; text-decoration: none; transition: filter .2s; }
.bp .pricing__ribbon:hover { filter: brightness(1.3); }
.bp .pricing__ribbon-arrow { font-size: .75rem; animation: bpArrowPulse 2s ease-in-out infinite; }

/* Price block */
.bp .pricing__price-block { margin-bottom: 8px; }
.bp .pricing__price-row { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.bp .pricing__old-price { font-size: 1.6rem; color: var(--or-primary-light); text-decoration: line-through; font-weight: 500; }
.bp .pricing__old-price-label { font-size: 1rem; font-weight: 500; color: var(--or-primary-light); margin-left: 4px; }
.bp .pricing__arrow { color: var(--or-primary-light); font-size: .9rem; animation: bpArrowPulse 2s ease-in-out infinite; }
@keyframes bpArrowPulse { 0%,100% { transform: translateX(0); opacity: .5; } 50% { transform: translateX(4px); opacity: 1; } }
.bp .pricing__new-price { font-size: 3.2rem; font-weight: 900; color: #fff; text-shadow: 0 0 40px rgba(239,154,154,.3); }
.bp .pricing__new-price small { font-size: 1rem; font-weight: 500; color: var(--or-primary-light); }
.bp .pricing__savings-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(76,175,80,.2); border: 2px solid rgba(76,175,80,.6); border-radius: 100px; padding: 16px 32px; font-size: 1.15rem; font-weight: 700; color: #a5d6a7; box-shadow: 0 0 30px rgba(76,175,80,.25); }
.bp .pricing__savings-badge i { font-size: .9rem; }
.bp .pricing__savings-badge strong { font-weight: 800; }
.bp .pricing__brutto-row { font-size: 1.6rem; font-weight: 700; color: var(--or-primary-light); margin: -8px 0 16px; text-align: center; white-space: nowrap; }
.bp .pricing__brutto-row small { font-size: .85rem; font-weight: 500; color: var(--or-primary-light); }
.bp .pricing__or-installment { display: flex; align-items: center; gap: 16px; margin: 20px 0 12px; font-size: 1rem; font-weight: 800; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 3px; }
.bp .pricing__or-installment::before, .bp .pricing__or-installment::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); }
.bp .pricing__installment-big { text-align: center; margin-bottom: 16px; }
.bp .pricing__installment-big-value { font-size: 2.4rem; font-weight: 900; color: #fff; }
.bp .pricing__installment-big-value small { font-size: .9rem; font-weight: 500; color: var(--or-primary-light); }
.bp .pricing__installment-big-brutto { display: block; font-size: 1.1rem; font-weight: 500; color: var(--or-primary-light); margin-top: 2px; }
.bp .pricing__credit-info { font-size: .4rem; line-height: 1.4; font-weight: 300; color: rgba(255,255,255,.3); text-align: center; margin: 4px 0 12px; padding: 0 10px; }

/* Card middle — courses grid */
.bp .pricing__card-middle { padding: 32px 40px; position: relative; }
.bp .pricing__card-middle::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,154,154,.3), transparent); }
.bp .pricing__includes-title { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--or-primary-light); margin-bottom: 20px; text-align: center; }
.bp .pricing__includes-grid { display: flex; flex-direction: column; gap: 8px; }
.bp .pricing__include-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(239,154,154,.1); border-radius: 12px; transition: all .3s ease; text-decoration: none; cursor: pointer; }
.bp .pricing__include-item:hover { background: rgba(211,47,47,.12); border-color: rgba(239,154,154,.3); transform: translateX(6px); }
.bp .pricing__include-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--or-primary-dark), var(--or-primary)); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: #fff; box-shadow: 0 2px 10px rgba(211,47,47,.3); }
.bp .pricing__include-text { flex: 1; font-size: .9rem; font-weight: 500; color: var(--or-200); }
.bp .pricing__include-days { flex-shrink: 0; font-size: .75rem; font-weight: 700; color: var(--or-primary-light); background: rgba(239,154,154,.12); border: 1px solid rgba(239,154,154,.2); border-radius: 6px; padding: 4px 10px; }

/* Card bottom — extras + CTA */
.bp .pricing__card-bottom { padding: 32px 40px 40px; }
.bp .pricing__extras { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.bp .pricing__extra { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); transition: all .3s ease; }
.bp .pricing__extra:hover { background: rgba(211,47,47,.08); border-color: rgba(239,154,154,.15); }
.bp .pricing__extra i { font-size: .85rem; color: var(--or-primary-light); flex-shrink: 0; }
.bp .pricing__extra span { font-size: .8rem; color: var(--or-300); font-weight: 500; }

/* CTA button */
.bp .pricing__cta { text-align: center; }
.bp .pricing__cta-btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 48px; background: linear-gradient(135deg, var(--or-primary), var(--or-primary-mid)); color: #fff !important; font-size: 1.1rem; font-weight: 800; border-radius: 14px; box-shadow: 0 8px 32px rgba(211,47,47,.4); transition: all .3s ease; text-decoration: none; position: relative; overflow: hidden; }
.bp .pricing__cta-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent); transition: left .6s ease; }
.bp .pricing__cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(211,47,47,.55); color: #fff !important; }
.bp .pricing__cta-btn:hover::before { left: 100%; }
.bp .pricing__cta-btn i { transition: transform .3s ease; }
.bp .pricing__cta-btn:hover i { transform: translateX(4px); }
.bp .pricing__cta-hint { font-size: .8rem; color: var(--or-500); margin-top: 12px; }
.bp .pricing__cta-hint a { color: var(--or-primary-light); font-weight: 600; text-decoration: none; }
.bp .pricing__cta-hint a:hover { text-decoration: underline; }

/* Financing card */
.bp .pricing__financing { max-width: 760px; margin: 28px auto 0; display: flex; align-items: flex-start; gap: 20px; padding: 28px 32px; background: rgba(255,255,255,.04); border: 1px solid rgba(239,154,154,.12); border-radius: 20px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all .4s ease; }
.bp .pricing__financing:hover { background: rgba(255,255,255,.07); border-color: rgba(239,154,154,.25); }
.bp .pricing__financing-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(183,28,28,.15), rgba(211,47,47,.1)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #ef5350; }
.bp .pricing__financing-content h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bp .pricing__financing p { font-size: .85rem; color: var(--or-400); margin-bottom: 10px; line-height: 1.6; }
.bp .pricing__financing strong { color: #ef5350; }
.bp .pricing__financing-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.bp .pricing__financing-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--or-primary-light); transition: color .3s ease; text-decoration: none; }
.bp .pricing__financing-contact a:hover { color: #fff; }
.bp .pricing__financing-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 10px 24px; font-size: .85rem; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--dv-primary-dark), var(--dv-primary)); border-radius: 50px; text-decoration: none; transition: transform .3s ease, box-shadow .3s ease, gap .3s ease; box-shadow: 0 3px 12px rgba(139,0,0,.3); }
.bp .pricing__financing-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,0,0,.4); gap: 12px; }
.bp .pricing__financing-btn i { font-size: .75rem; transition: transform .3s ease; }
.bp .pricing__financing-btn:hover i { transform: translateX(3px); }

/* Upsell karnet card */
.bp .pricing__upsell { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 20px; padding: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(239,154,154,.25); border-radius: 20px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 0 40px rgba(239,154,154,.1), 0 4px 24px rgba(0,0,0,.2); transition: all .4s ease; position: relative; overflow: hidden; }
.bp .pricing__upsell::before { content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.04) 45%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 55%, transparent 80%); pointer-events: none; z-index: 1; }
.bp .pricing__upsell:hover::before { animation: upsell-shine-or .8s ease forwards; }
@keyframes upsell-shine-or { 0% { left: -100%; } 100% { left: 140%; } }
.bp .pricing__upsell:hover { background: rgba(255,255,255,.1); border-color: rgba(239,154,154,.4); box-shadow: 0 0 50px rgba(239,154,154,.15), 0 4px 30px rgba(0,0,0,.25); }
.bp .pricing__upsell-header { display: flex; align-items: center; gap: 14px; }
.bp .pricing__upsell-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(211,47,47,.3), rgba(239,154,154,.18)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--or-primary-light); }
.bp .pricing__upsell-header h4 { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0; }
.bp .pricing__upsell-desc { font-size: .88rem; color: var(--or-400); line-height: 1.6; margin: 0; }
.bp .pricing__upsell-desc strong { color: var(--or-primary-light); }
.bp .pricing__upsell-prices { display: flex; align-items: stretch; gap: 0; background: rgba(211,47,47,.08); border: 1px solid rgba(239,154,154,.15); border-radius: 14px; overflow: hidden; }
.bp .pricing__upsell-price { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 18px 16px; gap: 4px; }
.bp .pricing__upsell-label { font-size: .7rem; font-weight: 600; color: var(--or-400); text-transform: uppercase; letter-spacing: .5px; }
.bp .pricing__upsell-value { font-size: 1.5rem; font-weight: 800; color: var(--or-primary-light); line-height: 1.2; }
.bp .pricing__upsell-value small { font-size: .65rem; font-weight: 600; color: var(--or-400); vertical-align: baseline; }
.bp .pricing__upsell-brutto { font-size: .75rem; color: var(--or-500); }
.bp .pricing__upsell-divider { width: 1px; background: rgba(239,154,154,.2); }
.bp .pricing__upsell-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: .92rem; font-weight: 700; color: var(--or-primary-light); text-decoration: none; padding: 12px 28px; background: rgba(211,47,47,.12); border: 1px solid rgba(239,154,154,.35); border-radius: 12px; transition: all .3s ease; align-self: center; }
.bp .pricing__upsell-btn:hover { background: rgba(211,47,47,.25); border-color: rgba(239,154,154,.5); color: #ffcdd2; }
.bp .pricing__upsell-btn i { transition: transform .3s ease; }
.bp .pricing__upsell-btn:hover i { transform: translateX(3px); }
@keyframes discount-pulse { 0%, 100% { transform: scale(1); box-shadow: inherit; } 50% { transform: scale(1.03); } }
@media (max-width: 768px) {
    .bp .pricing__upsell { padding: 28px 22px; }
    .bp .pricing__upsell-header { justify-content: center; }
    .bp .pricing__upsell-desc { text-align: center; }
    .bp .pricing__upsell-prices { flex-direction: column; }
    .bp .pricing__upsell-divider { width: 100%; height: 1px; }
    .bp .pricing__upsell-value { font-size: 1.3rem; }
}

/* ---- TRAINER ---- */
.bp #trenerzy { position: relative; overflow: hidden; }
.bp #trenerzy::before { content: ''; position: absolute; inset: 0; background: url('../../../images/bootcamp/statues.jpg') center/cover no-repeat; opacity: 0.10; mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); pointer-events: none; }
.bp #trenerzy .container { position: relative; z-index: 1; }
.bp .trainers__grid { display: flex; flex-direction: column; gap: 32px; }
.bp .trainer__content { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 20px; padding: 48px; transition: all .4s ease; }
.bp .trainer__content:hover { border-color: rgba(239,154,154,.3); box-shadow: 0 0 60px rgba(239,154,154,.08); }
.bp .trainer__avatar { width: 180px; height: 180px; border-radius: 20px; background: linear-gradient(135deg, var(--or-700), var(--or-600)); display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 2.5rem; color: var(--or-400); transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s ease; }
.bp .trainer__avatar:hover { transform: scale(1.08) translateY(-6px); box-shadow: 0 20px 50px rgba(211,47,47,.25); }
.bp .trainer__avatar img { width: 100%; height: 100%; object-fit: cover; }
.bp .trainer__info h3 { font-size: 1.3rem; font-weight: 800; color: var(--or-white); margin-bottom: 4px; }
.bp .trainer__role { font-size: .85rem; color: var(--or-primary-light); font-weight: 600; margin-bottom: 16px; }
.bp .trainer__info p { font-size: .88rem; color: var(--or-200); line-height: 1.7; }

/* ---- SOCIAL PROOF ---- */
.bp .social-proof__stats { display: flex; justify-content: center; gap: 80px; margin-bottom: 48px; }
.bp .social-proof__stat { text-align: center; }
.bp .social-proof__stat-value { font-size: 2.5rem; font-weight: 900; color: var(--or-primary); }
.bp .social-proof__stat-label { font-size: .85rem; color: var(--or-500); margin-top: 4px; }

/* ---- REVIEWS SLIDER ---- */
.bp .reviews-slider { position: relative; max-width: 800px; margin: 0 auto; overflow: visible; }
.bp .reviews-slider__playback { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); z-index: 20; width: 60px; height: 60px; border-radius: 50%; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; pointer-events: none; }
.bp .reviews-slider__playback i { color: white; font-size: 20px; margin-left: 2px; }
.bp .reviews-slider__playback--visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.bp .reviews-slider__viewport { overflow: hidden; }
.bp .reviews-slider__track { display: flex; transition: transform .5s ease; }
.bp .reviews-slider__slide { min-width: 100%; padding: 0 20px; box-sizing: border-box; }
.bp .reviews-slider__card { background: var(--or-white); border-radius: 20px; border: 1px solid var(--or-100); padding: 40px; text-align: center; position: relative; }
.bp .reviews-slider__card::before { content: '\201C'; position: absolute; top: 10px; left: 30px; font-size: 4rem; font-family: Georgia, serif; line-height: 1; color: rgba(211,47,47,.15); }
.bp .reviews-slider__stars { color: #f0a500; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.bp .reviews-slider__text { font-size: 1.05rem; color: var(--or-600); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.bp .reviews-slider__author { font-size: .9rem; font-weight: 700; color: var(--or-800); }
.bp .reviews-slider__rating { font-size: .85rem; font-weight: 700; color: var(--or-600); letter-spacing: 0; margin-left: 6px; }
.bp .reviews-slider__company { font-size: .8rem; color: var(--or-400); margin-top: 2px; }
.bp .reviews-slider__training { font-size: .82rem; color: var(--or-primary); margin-bottom: 8px; font-weight: 600; }
.bp .reviews-slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--or-200); background: var(--or-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; font-size: 1rem; color: var(--or-600); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.bp .reviews-slider__arrow:hover { border-color: var(--or-primary); background: var(--or-primary-glow); color: var(--or-primary); }
.bp .reviews-slider__arrow--left { left: -56px; }
.bp .reviews-slider__arrow--right { right: -56px; }
.bp .reviews-slider__dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.bp .reviews-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--or-200); cursor: pointer; transition: all .3s; }
.bp .reviews-slider__dot.active { background: var(--or-primary); width: 24px; border-radius: 4px; }

/* ---- ABOUT US ---- */
.bp #o-nas { position: relative; overflow: hidden; }
.bp #o-nas::before { content: ''; position: absolute; inset: 0; background: url('../../../images/bootcamp/sala.png') center/cover no-repeat; opacity: 0.18; filter: blur(3px); mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); pointer-events: none; transition: opacity 0.6s ease, filter 0.6s ease; }
.bp #o-nas:hover::before { opacity: 0.35; filter: blur(0px); }
.bp #o-nas .container { position: relative; z-index: 1; }
.bp .about__content { max-width: 800px; margin: 0 auto; text-align: center; }
.bp #o-nas .section__label { transition: color 0.6s ease; }
.bp #o-nas .section__title { transition: text-shadow 0.6s ease, -webkit-text-stroke 0.6s ease; }
.bp .about__text { font-size: 1.05rem; font-weight: 600; color: var(--or-600); line-height: 1.8; margin-bottom: 32px; transition: color 0.6s ease, -webkit-text-stroke 0.6s ease; -webkit-text-stroke: 0px transparent; }
.bp #o-nas:hover .section__label { color: var(--or-primary-dark); }
.bp #o-nas:hover .section__title { text-shadow: 0 2px 12px rgba(211,47,47,.2); -webkit-text-stroke: 0.4px currentColor; }
.bp #o-nas:hover .about__text { color: var(--or-800); -webkit-text-stroke: 0.3px currentColor; }

/* ---- CTA SECTION ---- */
.bp .cta-section { background: linear-gradient(135deg, var(--or-900) 0%, #1a0505 50%, var(--or-900) 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.bp .cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(211,47,47,.15) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.bp .cta-section .container { position: relative; z-index: 2; }
.bp .cta-section h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 900; color: var(--or-white); margin-bottom: 8px; }
.bp .cta-section__signup { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--or-primary-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; text-shadow: 0 2px 20px rgba(239,154,154,.3); }
.bp .cta-section p { font-size: 1.05rem; color: var(--or-400); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- FORM ---- */
.bp .form { max-width: 480px; margin: 0 auto; }
.bp .form__group { margin-bottom: 16px; }
.bp .form__input { width: 100%; padding: 16px 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; font-family: var(--or-font); font-size: .95rem; color: var(--or-white); transition: border-color .3s; }
.bp .form__input::placeholder { color: var(--or-500); }
.bp .form__input:focus { outline: none; border-color: var(--or-primary-light); }
.bp .form__checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; cursor: pointer; }
.bp .form__checkbox input { margin-top: 4px; accent-color: var(--or-primary); }
.bp .form__checkbox-text { font-size: .8rem; color: var(--or-400); line-height: 1.5; }
.bp .form__checkbox-text a { color: var(--or-primary-light); }
.bp .form__submit { width: 100%; }
.bp .form__error { color: var(--or-primary-light); font-size: .85rem; margin-top: 8px; display: none; }

/* ---- FOOTER ---- */
.bp__footer { background: var(--or-900); border-top: 1px solid rgba(255,255,255,.05); padding: 48px 0 32px; }
.bp__footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.bp__footer-logo { display: flex; align-items: center; }
.bp__footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.bp__footer-contact { display: flex; gap: 32px; flex-wrap: wrap; }
.bp__footer-contact-item { display: flex; align-items: center; gap: 8px; color: var(--or-400); font-size: .85rem; }
.bp__footer-contact-item i { color: var(--or-primary-light); }
.bp__footer-bottom { text-align: center; padding-top: 32px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,.05); font-size: .8rem; color: var(--or-500); }

/* ---- FLOATING BOTTOM BAR ---- */
.bp__bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; background: rgba(26,26,26,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(239,154,154,.15); transform: translateY(100%); transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.bp__bottom-bar.visible { transform: translateY(0); }
.bp__bottom-bar-inner { max-width: var(--or-max-width); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 28px; }
.bp__bottom-bar-info { display: flex; flex-direction: column; gap: 2px; }
.bp__bottom-bar-name { font-size: .85rem; font-weight: 700; color: var(--or-white); white-space: nowrap; }
.bp__bottom-bar-meta { font-size: .8rem; font-weight: 500; color: var(--or-300); letter-spacing: .5px; }
.bp__bottom-bar-price { display: flex; align-items: baseline; gap: 10px; margin-left: auto; }
.bp__bottom-bar-old { font-size: .8rem; font-weight: 500; color: var(--or-300); text-decoration: line-through; white-space: nowrap; }
.bp__bottom-bar-new { font-size: 1.2rem; font-weight: 800; color: var(--or-white); white-space: nowrap; }
.bp__bottom-bar-save { font-size: .7rem; font-weight: 600; color: var(--or-primary-light); background: rgba(211,47,47,.15); border: 1px solid rgba(239,154,154,.2); border-radius: 4px; padding: 2px 8px; white-space: nowrap; }
.bp__bottom-bar-brutto { font-size: .85rem; font-weight: 500; color: var(--or-500); }
.bp__bottom-bar-installment { font-size: 1.2rem; font-weight: 800; color: var(--or-white); white-space: nowrap; }
.bp__bottom-bar-installment small { font-size: .8rem; font-weight: 500; color: var(--or-300); }
.bp__bottom-bar-brutto small, .bp__bottom-bar-new small { font-size: .8rem; font-weight: 500; color: var(--or-300); }
.bp__bottom-bar-contact { display: flex; gap: 20px; }
.bp__bottom-bar-contact a { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 500; color: var(--or-300); transition: color .3s ease; white-space: nowrap; }
.bp__bottom-bar-contact a:hover { color: var(--or-primary-light); }
.bp__bottom-bar-contact i { font-size: .75rem; color: var(--or-primary-light); }
.bp__bottom-bar-cta { flex-shrink: 0; padding: 10px 28px; background: linear-gradient(135deg, #EF9A9A, #E53935); color: #fff !important; font-size: .85rem; font-weight: 700; border-radius: 8px; box-shadow: 0 4px 16px rgba(211,47,47,.3); transition: all .3s ease; text-decoration: none; }
.bp__bottom-bar-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(211,47,47,.45); color: #fff !important; }

/* ---- SECTION DIVIDER ---- */
.bp .section-divider { height: 4px; background: linear-gradient(90deg, transparent 0%, var(--or-primary) 20%, var(--or-primary-light) 50%, var(--or-primary) 80%, transparent 100%); position: relative; overflow: hidden; }
.bp .section-divider::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent); animation: bpDividerShine 3s ease-in-out infinite; }

/* ---- FROSTED GLASS INFO SECTION ---- */
.bp .section--frosted { position: relative; overflow: hidden; }
.bp .section--frosted::before { content: ''; position: absolute; inset: 0; background: rgba(255,245,245,.75); backdrop-filter: blur(8px) saturate(1.3); -webkit-backdrop-filter: blur(8px) saturate(1.3); z-index: 0; }
.bp .section--frosted > .container { position: relative; z-index: 1; }

/* ---- SCROLL REVEAL ---- */
.bp .reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.bp .reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- KEYFRAMES ---- */
@keyframes bpGlowPulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes bpBadgePulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes bpBadgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes bpDividerShine { 0% { left: -60%; } 100% { left: 160%; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .bp__hero-content { grid-template-columns: 1fr; text-align: center; }
    .bp__hero-subtitle { margin: 0 auto 32px; }
    .bp__hero-stats { justify-content: center; }
    .bp__hero-cta { justify-content: center; }
    .bp__hero-visual { order: -1; }
    .bp__neural-svg { max-width: 320px; }
    .bp .benefits__grid { grid-template-columns: 1fr; }
    .bp .info__grid { grid-template-columns: repeat(2,1fr); }
    .bp .trainer__content { grid-template-columns: 1fr; text-align: center; }
    .bp .trainer__avatar { margin: 0 auto; }
}

@media (max-width: 768px) {
    .bp { --or-section-padding: 60px 0; }
    .bp__header-nav { display: none; position: absolute; top: 70px; left: 0; width: 100%; flex-direction: column; background: var(--or-900); padding: 20px; gap: 16px; }
    .bp__header-nav.open { display: flex; }
    .bp__hamburger { display: flex; }
    .bp__hero { min-height: auto; padding: 100px 0 80px; }
    .bp__hero-course { padding: 8px 14px; }
    .bp__hero-course-name { font-size: .82rem; }
    .bp__hero-stats { gap: 24px; }
    .bp .info__grid { grid-template-columns: 1fr; }
    .bp .program__course-header { padding: 20px 24px; }
    .bp .program__stage-badge { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 10px; }
    .bp .program__modules { padding: 20px 24px; }
    .bp .program__course-desc { padding: 20px 24px 8px; }
    .bp .program__course-link { margin: 12px 24px 20px; }
    .bp .social-proof__stats { gap: 32px; flex-wrap: wrap; }
    .bp .pricing__card-top, .bp .pricing__card-middle, .bp .pricing__card-bottom { padding: 24px; }
    .bp .pricing__new-price { font-size: 2.4rem; }
    .bp .pricing__extras { grid-template-columns: 1fr; }
    .bp .pricing__financing { flex-direction: column; text-align: center; }
    .bp .pricing__financing-contact { justify-content: center; }
    .bp__footer-content { flex-direction: column; text-align: center; }
    .bp__footer-contact { flex-direction: column; gap: 12px; }
    .bp .trainer__content { padding: 28px 20px; gap: 24px; }
    .bp .trainer__avatar { width: 140px; height: 140px; }
    .bp .reviews-slider__arrow--left { left: -8px; }
    .bp .reviews-slider__arrow--right { right: -8px; }
    .bp .reviews-slider__arrow { width: 36px; height: 36px; font-size: .85rem; background: rgba(255,255,255,.9); }
    .bp__bottom-bar-inner { gap: 16px; padding: 10px 16px; flex-wrap: wrap; }
    .bp__bottom-bar-contact { display: none; }
    .bp__bottom-bar-price { margin-left: 0; }
}

@media (max-width: 480px) {
    .bp__hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .bp__hero-stat-label { font-size: .65rem; }
    .bp .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev) { pointer-events: none; }
    .bp .pricing__price-row { flex-wrap: wrap; gap: 8px; }
    .bp .pricing__old-price { font-size: 1.2rem; }
    .bp .pricing__new-price { font-size: 2rem; }
    .bp .pricing__card-top, .bp .pricing__card-middle, .bp .pricing__card-bottom { padding: 20px 16px; }
    .bp .pricing__installment-big { font-size: 2rem; }
    .bp .pricing__discount-badge { font-size: .85rem; padding: 12px 24px; }
    .bp__hero-cta { flex-direction: column; }
    .bp__hero-cta .btn { width: 100%; }
    .bp .audience__grid { grid-template-columns: 1fr; }
    .bp .program__course-meta { flex-direction: column; gap: 8px; }
    .bp .trainer__content { padding: 20px 16px; }
    .bp__bottom-bar-inner { gap: 10px; justify-content: space-between; }
    .bp__bottom-bar-info { display: none; }
    .bp__bottom-bar-save { display: none; }
    .bp__bottom-bar-installment { display: none; }
}
