/* =========================================
   1. ZMIENNE I KONFIGURACJA BAZOWA
   ========================================= */
:root { --black: #0a0a0a; --white: #ffffff; --silver: #e0e0e0; --gold: #c5a059; --gold-hover: #e2c08d; --dark-gray: #1a1a1a; --transition: all 0.3s ease; }
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { margin: 0; padding: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   2. NAGŁÓWEK I NAWIGACJA
   ========================================= */
header { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 12px 0; position: fixed; width: 100%; top: 0; z-index: 1000; transition: background 0.3s ease; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
nav ul { list-style: none; display: flex; gap: 25px; align-items: center; margin: 0; padding: 0; }
nav a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 13px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; transition: var(--transition); }
nav a:hover, nav a.active { color: var(--gold); }
.btn-cta { background-color: var(--gold); color: var(--black); padding: 10px 22px; border-radius: 2px; font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 12px; transition: var(--transition); border: 1px solid var(--gold); display: inline-block; cursor: pointer !important; }
.btn-cta:hover { background-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: var(--gold); }
.btn-cta-disabled { background-color: #222; color: #666; padding: 10px 22px; border-radius: 2px; font-size: 12px; text-transform: uppercase; cursor: not-allowed; border: 1px solid #333; }

/* =========================================
   3. DROPDOWN JĘZYKOWY
   ========================================= */
.lang-container { position: relative; }
.lang-select { color: var(--gold); font-size: 13px; font-weight: bold; border: 1px solid var(--gold); padding: 5px 10px; cursor: pointer; user-select: none; transition: var(--transition); }
.lang-select:hover { background: rgba(197, 160, 89, 0.1); }
.lang-options { display: none; position: absolute; top: calc(100% + 10px); right: 0; background: var(--dark-gray); border: 1px solid var(--gold); min-width: 70px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.lang-options.show { display: block; }
.lang-options a { padding: 10px; display: block; text-align: center; border-bottom: 1px solid #222; }
.lang-options a:last-child { border: none; }

/* =========================================
   4. HAMBURGER MENU
   ========================================= */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; margin-left: auto; }
.menu-toggle svg { width: 30px; height: 30px; fill: var(--gold); }

/* =========================================
   5. STOPKA
   ========================================= */
footer { background-color: var(--black); border-top: 1px solid var(--dark-gray); padding: 80px 0 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.footer-col h3 { color: var(--gold); font-size: 14px; text-transform: uppercase; margin-bottom: 25px; letter-spacing: 1.5px; font-weight: 700; }
.footer-menu-split { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
.footer-menu-split a { color: var(--silver); text-decoration: none; font-size: 14px; transition: var(--transition); display: block; }
.footer-menu-split a:hover { color: var(--gold); transform: translateX(5px); }
.social-list { display: flex; align-items: center; gap: 12px; }
.social-icon-svg { fill: var(--gold); width: 25px; height: 25px; transition: var(--transition); }
.social-icon-svg:hover { fill: var(--white); transform: translateY(-2px); }
.footer-bottom { margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--dark-gray); text-align: center; font-size: 12px; color: #555; letter-spacing: 0.5px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* =========================================
   6. SEKCJA HERO
   ========================================= */
.hero-section { position: relative; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; background-color: var(--black); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../hero.jpg') no-repeat center center; background-size: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; width: 100%; text-align: center; padding-top: 60px; }
#hero-video-container video { opacity: 0; transition: opacity 1s ease-in-out; object-fit: cover; }
.hero-title { text-align: center; margin-bottom: 30px; }
.hero-title strong { display: block; color: var(--gold); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; }
.hero-title span { display: block; font-size: clamp(1.44rem, 3.6vw, 2.16rem); font-weight: 300; color: var(--white); margin-top: 10px; text-transform: uppercase; letter-spacing: 4px; }
.hero-date-info { font-size: 1.2rem; color: var(--silver); margin-bottom: 40px; font-weight: 300; text-transform: uppercase; letter-spacing: 2px; }
.hero-date-info strong { color: var(--gold); }
.btn-hero { padding: 18px 45px !important; font-size: 14px !important; letter-spacing: 2px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* =========================================
   7. SEKCJE LP (STRONA GŁÓWNA)
   ========================================= */
.idea-section, .features-section, .process-section, .values-section { padding: 120px 0; text-align: center; }
.idea-section { background-color: #0f0f0f; border-bottom: 1px solid var(--dark-gray); }
.features-section { background-color: var(--black); }
.section-title { font-size: 2.5rem; text-transform: uppercase; font-weight: 800; margin-bottom: 20px; letter-spacing: 2px; color: var(--gold); text-align: center; }
.section-divider { width: 60px; height: 3px; background-color: var(--gold); margin: 0 auto 30px auto; }
.idea-grid { max-width: 800px; margin: 0 auto; }
.idea-description { font-size: 1.15rem; line-height: 1.8; color: var(--silver); margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.feature-box { padding: 50px 40px; background: #111; border: 1px solid rgba(255, 255, 255, 0.05); transition: var(--transition); text-align: center; }
.feature-box:hover { border-color: var(--gold); transform: translateY(-5px); background: #151515; }
.feature-icon { font-size: 32px; color: var(--gold); margin-bottom: 30px; display: block; opacity: 0.85; transition: var(--transition); }
.feature-box h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 20px; color: var(--white); letter-spacing: 1.5px; }
.feature-box p { color: #999; font-size: 0.9rem; line-height: 1.7; }

/* Timeline LP */
.process-section { background-color: #0f0f0f; border-bottom: 1px solid var(--dark-gray); }
.timeline-container { display: flex; justify-content: space-between; position: relative; margin-top: 80px; }
.timeline-container::before { content: ''; position: absolute; top: 30px; left: 50px; right: 50px; height: 2px; background: rgba(197, 160, 89, 0.2); z-index: 1; }
.timeline-item { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 10px; }
.timeline-icon { width: 60px; height: 60px; background: var(--black); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px auto; color: var(--gold); font-size: 22px; transition: var(--transition); }
.timeline-item:hover .timeline-icon { background: var(--gold); color: var(--black); transform: scale(1.1); }
.timeline-content h3 { font-size: 1rem; text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 1px; }
.timeline-date { display: block; color: var(--gold); font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; }
.timeline-content p { font-size: 0.85rem; color: #888; line-height: 1.5; padding: 0 10px; }
.btn-cta-outline { background: transparent; color: var(--gold); padding: 18px 45px; border-radius: 2px; font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 14px; border: 1px solid var(--gold); display: inline-block; transition: var(--transition); margin-left: 20px; }
.btn-cta-outline:hover { background: var(--gold); color: var(--black); }
.process-actions { text-align: center; margin-top: 80px; }

/* Wartości LP */
.values-section { background-color: var(--black); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.value-box { background: #111; border: 1px solid rgba(197, 160, 89, 0.15); padding: 50px; transition: var(--transition); text-align: left;}
.value-box:hover { border-color: var(--gold); background: #151515; }
.value-header { display: flex; align-items: center; gap: 20px; margin-bottom: 35px; }
.value-header i { font-size: 40px; color: var(--gold); }
.value-header h3 { font-size: 1.5rem; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.value-list { list-style: none; padding: 0; margin: 0; }
.value-list li { color: var(--silver); font-size: 1rem; margin-bottom: 18px; position: relative; padding-left: 35px; line-height: 1.5; }
.value-list li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: 16px; transition: var(--transition); }
.value-box:hover .value-list li::before { transform: scale(1.1); color: var(--white); }

/* =========================================
   8. PODSTRONY BAZOWE (BIAŁE TŁO)
   ========================================= */
.subpage-wrapper { background-color: var(--white); color: var(--black); min-height: 80vh; padding-top: 150px; padding-bottom: 100px; }
.subpage-header { margin-bottom: 40px; }
.section-title.dark { color: var(--black); }

/* Nawigacja Lat */
.years-nav { background: #f8f8f8; border-bottom: 1px solid #eee; padding: 25px 0; margin: -30px 0 60px 0; position: relative; z-index: 9; width: 100%; }
.flex-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-label { font-size: 0.8rem; text-transform: uppercase; font-weight: 800; color: #444; letter-spacing: 2px; flex-shrink: 0; }
.years-slider-container { position: relative; display: flex; align-items: center; overflow: hidden; gap: 10px; flex: 1; min-width: 0; justify-content: center; }
.nav-arrow { background: #fff; border: 1px solid #eee; width: 35px; height: 35px; display: none; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 10; flex-shrink: 0; }
.nav-arrow:hover { border-color: var(--gold); color: var(--gold); }
.years-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 5px; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.years-list::-webkit-scrollbar { display: none; }
.years-list a { text-decoration: none; color: #666; font-weight: 700; transition: var(--transition); padding: 8px 20px; background: #fff; border: 1px solid #eee; font-size: 0.9rem; display: block; text-transform: uppercase; white-space: nowrap; }
.years-list a:hover { border-color: var(--gold); color: var(--gold); }
.years-list a.active { color: var(--white); background: var(--black); border-color: var(--black); }

/* Akordeon Kategorii */
.categories-accordion { max-width: 900px; margin: 40px auto 0 auto; }
.category-item.light { border-bottom: 1px solid #e0e0e0; background: transparent; }
.category-header { padding: 35px 20px; display: flex; align-items: center; cursor: pointer; transition: var(--transition); }
.category-header:hover { background: rgba(197, 160, 89, 0.04); }
.category-number { font-size: 1.1rem; font-weight: 900; color: var(--gold); background: #f8f8f8; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 2px; margin-right: 25px; flex-shrink: 0; border: 1px solid rgba(197, 160, 89, 0.2); }
.category-header h3 { font-size: 1.25rem; color: var(--black); text-transform: uppercase; margin: 0; flex: 1; letter-spacing: 0.5px; line-height: 1.3; }
.category-item.light .icon-state { color: var(--gold); font-size: 1.2rem; margin-left: 15px; transition: transform 0.4s ease; }
.category-item.light.active { background: #fdfdfd; }
.category-item.light.active .icon-state { transform: rotate(45deg); }
.category-content { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.category-item.light.active .category-content { max-height: 1500px; }
.category-body { padding: 0 20px 40px 95px; color: #444; font-size: 1.05rem; line-height: 1.8; text-align: left; }
.category-action { margin-top: 30px; text-align: left;}

/* =========================================
   9. LAUREACI (WYNIKI)
   ========================================= */
.categories-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.category-result-card { background: #fff; border: 1px solid #eee; padding: 40px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition); }
.category-card-title { font-size: 1.1rem; color: var(--black); text-transform: uppercase; font-weight: 800; margin-bottom: 30px; border-bottom: 2px solid var(--gold); padding-bottom: 15px; text-align: left; letter-spacing: 1px; }
.main-winner-box { margin-bottom: 35px; }
.winner-display { text-align: center; background: #fbfbfb; padding: 30px; border: 1px solid #f0f0f0; }
.winner-badge { color: var(--gold); font-size: 0.9rem; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 2px; }
.winner-logo { height: 140px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.winner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.winner-name { font-size: 1.2rem; color: var(--black); font-weight: 800; margin: 0; }
.nominees-section { border-top: 1px solid #eee; padding-top: 25px; }
.nominees-section h4 { font-size: 0.85rem; text-transform: uppercase; color: #bbb; margin-bottom: 20px; font-weight: 800; text-align: left; letter-spacing: 1px; }
.nominees-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.nominee-mini-card { background: #fff; border: 1px solid #f0f0f0; padding: 20px; aspect-ratio: 1.6 / 1; display: flex; align-items: center; justify-content: center; }
.nominee-logo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.nominee-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* =========================================
   10. GALERIA (PHOTOSWIPE)
   ========================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; margin-top: 40px; }
.gallery-item { position: relative; aspect-ratio: 3/2; overflow: hidden; display: block; background: #eee; border: 1px solid #eee; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-hover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(197, 160, 89, 0.85); display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 1.5rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-hover { opacity: 1; }
.pswp__button--download-button { width: 60px; height: 60px; color: #fff !important; display: flex; align-items: center; justify-content: center; }

/* =========================================
   11. FORMULARZ ZGŁOSZENIOWY & INSTRUKCJE
   ========================================= */
.form-progress { display: flex; justify-content: center; gap: 40px; margin-bottom: 80px; border-bottom: 1px solid #eee; padding-bottom: 30px; flex-wrap: wrap; }
.form-progress .step { color: #ccc; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.form-progress .step.active { color: var(--gold); }
.form-progress .step span { width: 35px; height: 35px; border: 2px solid #eee; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition); }
.form-progress .step.active span { border-color: var(--gold); background: #fff; }
.category-desc-long { color: #666; max-width: 800px; margin: 20px auto 30px; line-height: 1.7; font-size: 1rem; }
.form-wrapper-main { max-width: 900px; margin: 50px auto 0; background: #fff; padding: 0; }
.form-section-head { border-bottom: 2px solid var(--black); margin: 60px 0 30px; padding-bottom: 10px; text-align: left; }
.form-section-head h3 { text-transform: uppercase; font-weight: 800; font-size: 1.2rem; color: var(--black); display: flex; align-items: center; gap: 15px; margin: 0; }
.form-section-head h3 span { color: var(--gold); font-size: 0.9rem; border: 1px solid var(--gold); padding: 2px 8px; }
.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 8px; color: #444; letter-spacing: 0.5px; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #eee; background: #fcfcfc; font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: var(--transition); border-radius: 0; }
.form-control:focus { border-color: var(--gold); outline: none; background: #fff; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; align-items: end; }
.req { color: #d00; margin-left: 3px; }
.tooltip-icon { color: var(--gold); margin-left: 8px; cursor: help; font-size: 0.9rem; }
.form-actions-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; }
.btn-back { text-decoration: none; color: #999; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.btn-back:hover { color: var(--black); }
.btn-next { background: var(--black); color: var(--white); border: none; padding: 15px 40px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.btn-next:hover { background: var(--gold); }

/* Instrukcje Akordeon */
.instruction-section { max-width: 900px; margin: 0 auto 50px auto; text-align: center; }
.btn-instruction { background: #fff; border: 1px solid var(--gold); color: var(--black); padding: 12px 30px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; letter-spacing: 1px; }
.btn-instruction:hover { background: var(--gold); color: var(--white); }
.btn-instruction .icon-arrow { transition: transform 0.3s ease; }
.btn-instruction.open .icon-arrow { transform: rotate(180deg); }
.instruction-collapse { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; text-align: left; }
.instruction-collapse.open { max-height: 1000px; }
.instruction-body { background: #fbfbfb; border: 1px solid #eee; padding: 0 20px; margin-top: 20px; font-size: 0.95rem; color: #555; line-height: 1.8; }
.instruction-body h4 { color: var(--black); text-transform: uppercase; margin-top: 0; margin-bottom: 15px; font-size: 1.1rem; border-bottom: 2px solid var(--gold); padding-bottom: 10px; display: inline-block; }

/* Siatka Kategorii Formularza */
.selection-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; margin-top: 20px; }
.category-tile { background: #fff; border: 1px solid #eee; padding: 40px 40px 90px 40px; display: flex; align-items: flex-start; text-decoration: none; transition: all 0.3s ease; position: relative; min-height: 250px; }
.category-tile:hover { background: var(--black); border-color: var(--black); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.tile-number { font-size: 3rem; font-weight: 900; color: #f5f5f5; margin-right: 25px; margin-top: -5px; line-height: 1; flex-shrink: 0; transition: color 0.3s ease; }
.category-tile:hover .tile-number { color: var(--gold); }
.tile-content { flex: 1; padding-top: 5px; }
.tile-content h3 { color: var(--black); text-transform: uppercase; font-size: 1.15rem; margin: 0; letter-spacing: 1px; font-weight: 800; line-height: 1.3; transition: color 0.3s ease; }
.category-tile:hover .tile-content h3 { color: var(--white); }
.tile-action { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--gold); transition: all 0.3s ease; width: fit-content; white-space: nowrap; }
.category-tile:hover .tile-action { background: var(--gold); color: var(--black); transform: translateX(-50%) translateY(-2px); }

/* Tooltip & Alerty */
.tooltip-wrapper { position: relative; display: inline-block; cursor: help; }
.tooltip-wrapper::before { content: attr(data-tooltip); position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--black); color: var(--white); padding: 12px 18px; border: 1px solid var(--gold); font-size: 0.9rem; line-height: 1.5; font-family: 'Inter', sans-serif; font-weight: 400; text-transform: none; letter-spacing: 0; white-space: normal; width: 250px; z-index: 1000; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); text-align: left; }
.tooltip-wrapper::after { content: ''; position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%) translateY(10px); border-width: 8px 8px 0 8px; border-style: solid; border-color: var(--gold) transparent transparent transparent; opacity: 0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; z-index: 1001; }
.tooltip-wrapper:hover::before, .tooltip-wrapper:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.alert-danger { background: #fff0f0; border-left: 4px solid #d00; padding: 20px; margin: 20px auto; max-width: 900px; color: #a00; font-size: 0.9rem; }
.alert-danger ul { list-style: none; padding: 0; margin: 0; }
.alert-danger li { margin-bottom: 5px; display: flex; align-items: center; gap: 10px; }

/* Podsumowanie Zgłoszenia */
.summary-wrapper { max-width: 900px; margin: 40px auto; background: #fff; border: 1px solid #eee; padding: 50px; }
.summary-title { font-weight: 800; text-transform: uppercase; border-bottom: 2px solid var(--gold); padding-bottom: 15px; margin-bottom: 40px; }
.summary-section { margin-bottom: 40px; text-align: left; }
.summary-section h3 { font-size: 1rem; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.summary-table { width: 100%; border-collapse: collapse; }
.summary-table td { padding: 12px 0; border-bottom: 1px solid #f5f5f5; font-size: 0.95rem; }
.summary-table td:first-child { width: 30%; color: #888; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; }
.summary-actions { display: flex; justify-content: space-between; margin-top: 50px; }
.btn-back-edit { text-decoration: none; color: var(--black); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; border-bottom: 2px solid var(--gold); transition: var(--transition); }
.btn-final-send { background: var(--gold); color: var(--white); border: none; padding: 15px 45px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.btn-final-send:hover { background: var(--black); }

/* Popup Sukcesu */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 9999; display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s ease; transition: opacity 0.4s ease; }
.popup-box { background: var(--white); padding: 50px 40px; text-align: center; max-width: 480px; width: 90%; position: relative; border-bottom: 4px solid var(--gold); animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: 0 25px 60px rgba(0,0,0,0.6); }
.popup-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 1.5rem; color: #aaa; cursor: pointer; transition: color 0.3s ease; padding: 5px; }
.popup-close:hover { color: var(--black); }
.popup-icon { font-size: 4rem; color: var(--gold); margin-bottom: 20px; display: inline-block; }
.popup-box h3 { font-size: 1.5rem; color: var(--black); text-transform: uppercase; margin-bottom: 15px; font-weight: 800; letter-spacing: 1px; }
.popup-box p { color: #555; line-height: 1.6; font-size: 0.95rem; margin-bottom: 0; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* =========================================
   12. KAPITUŁA (WIDOKI & MODAL)
   ========================================= */
.jury-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; margin-top: 50px; }
.jury-card { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: #222; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.jury-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2); }
.jury-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.jury-card:hover .jury-img { transform: scale(1.08); }
.jury-glass { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px 20px; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid rgba(255, 255, 255, 0.15); box-sizing: border-box; transition: opacity 0.3s ease; z-index: 2; text-align: left; }
.jury-name { margin: 0; font-size: 1.1rem; color: var(--white); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; }
.jury-name strong { font-size: 1.4rem; color: var(--gold); }
.jury-hover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17, 17, 17, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 3; backdrop-filter: grayscale(100%); }
.jury-card:hover .jury-hover { opacity: 1; }
.jury-card:hover .jury-glass { opacity: 0; }

.jury-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.jury-modal-overlay.active { opacity: 1; pointer-events: auto; }
.jury-modal-box { background: var(--white); width: 90%; max-width: 900px; max-height: 90vh; overflow-y: auto; position: relative; border-bottom: 4px solid var(--gold); transform: translateY(30px); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.jury-modal-overlay.active .jury-modal-box { transform: translateY(0); }
.jury-modal-close { position: absolute; top: 15px; right: 20px; background: rgba(0,0,0,0.05); border: none; font-size: 1.5rem; color: var(--black); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.3s; z-index: 10; display: flex; align-items: center; justify-content: center; }
.jury-modal-close:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }
.jury-modal-content { display: flex; flex-wrap: wrap; }
.jury-modal-left { flex: 1 1 350px; background: #111; }
.jury-modal-left img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.9; }
.jury-modal-right { flex: 2 1 450px; padding: 50px; text-align: left; }
.jury-modal-right h2 { margin-top: 0; color: var(--black); text-transform: uppercase; font-weight: 800; border-bottom: 2px solid var(--gold); padding-bottom: 15px; margin-bottom: 25px; font-size: 1.8rem; }
.jury-bio-text { color: #555; line-height: 1.7; font-size: 0.95rem; }

/* =========================================
   13. PANEL CMS (ADMINISTRATOR)
   ========================================= */
.sidebar-menu li a, button[type="submit"] { cursor: pointer !important; }
.admin-logo-wrapper { background-color: #111; padding: 20px; text-align: center; border-bottom: 2px solid var(--gold); }
.admin-logo-wrapper img { max-width: 150px; height: auto; display: block; margin: 0 auto; }
.pwd-requirements { font-size: 0.8rem; color: #666; margin-top: 5px; display: block; }
.btn-back-light:hover { background-color: #f9f9f9 !important; border-color: #bbb !important; color: #111 !important; }
.admin-table-refined a { cursor: pointer; transition: 0.2s; }

/* =========================================
   14. RESPONSYWNOŚĆ (RWD)
   ========================================= */
@media (max-width: 992px) {    
    .menu-toggle { display: block; }
    header nav ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); flex-direction: column; padding: 40px 20px; border-bottom: 2px solid var(--gold); gap: 25px; text-align: center; }
    header nav ul.active { display: flex; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-container { flex-direction: column; align-items: flex-start; padding-left: 30px; }
    .timeline-container::before { left: 30px; top: 0; width: 2px; height: 100%; }
    .timeline-item { display: flex; text-align: left; margin-bottom: 50px; width: 100%; }
    .timeline-icon { margin: 0 30px 0 0; flex-shrink: 0; }
    .categories-masonry { grid-template-columns: 1fr; }
    .years-slider-container { width: 100%; padding: 0 5px; } 
    .nav-arrow { width: 40px; height: 40px; }
}

@media (max-width: 768px) {
    .footer-grid, .values-grid, .features-grid, .laureates-grid { grid-template-columns: 1fr; }
    .subpage-wrapper { padding-top: 130px; }
    .years-nav { position: relative; top: 0; padding: 20px 0; margin: 0 0 40px 0; background: #f8f8f8; width: 100%; }
    .flex-nav { flex-direction: column; gap: 15px; width: 100%; padding: 0 15px; }
    .years-slider-container { width: 100%; justify-content: center; }
    .years-list { justify-content: flex-start; width: 100%; padding: 0 20px; }
    .years-list::-webkit-scrollbar { display: none; }
    .years-list a { flex: 0 0 auto; white-space: nowrap; font-size: 0.85rem; padding: 10px 20px; background: #fff; border: 1px solid #eee; }
    .category-header { padding: 20px 15px; }
    .category-number { width: 40px; height: 40px; margin-right: 15px; font-size: 0.9rem; }
    .category-body { padding: 0 15px 30px 70px; }
    .section-title { font-size: 1.8rem; }
    .hero-title strong { font-size: 2.2rem; }
    .btn-cta-outline { margin-left: 0; margin-top: 20px; display: block; }
    .category-result-card { padding: 25px; }
    .winner-logo { height: 110px; }
    .nominees-small-grid { grid-template-columns: 1fr 1fr; }
    .form-progress { justify-content: flex-start; flex-direction: column; gap: 15px; padding-left: 20px; }
    .form-progress .step { justify-content: flex-start; width: 100%; text-align: left; }
    .category-tile { padding: 35px 25px; }
    .tile-number { font-size: 2rem; }
    .jury-modal-left { flex: 1 1 100%; }
    .jury-modal-left img { height: 350px; } 
    .jury-modal-right { padding: 30px 20px; flex: 1 1 100%; } 
    .jury-modal-close { background: var(--white); }
}