/* ==========================================================================
   components.css — przyciski, karty, formularze, kalendarz
   ========================================================================== */

/* ---------- Ikonki line-art ---------- */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
.check-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  text-align: center;
  user-select: none;
}

.btn-primary {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
  box-shadow: 0 6px 18px rgba(245, 180, 0, 0.18);
}
.btn-primary:hover {
  background: var(--accent-yellow-bright);
  border-color: var(--accent-yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 180, 0, 0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  background: rgba(245, 180, 0, 0.06);
}

.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.btn-lg { min-height: 56px; padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Loading screen ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Wąski tor — logo przesuwa się WEWNĄTRZ, nie nachodzi na tekst/licznik */
.loading-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(260px, 80vw);
}
.loading-track {
  width: 160px;
  height: 160px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.loading-logo {
  width: 160px;
  height: 160px;
  display: block;
  object-fit: contain;
  transform: translateX(100%);
  will-change: transform;
}
.loading-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-align: center;
}
.loading-percentage {
  font-family: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-yellow);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ---------- Karta (baza dla formularza, kalendarza, side) ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* ---------- Formularz rezerwacji ---------- */
.booking-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:hover { border-color: var(--border-strong); }
.form-control:focus-visible {
  outline: none;
  border-color: var(--accent-yellow);
  background: #0a0a0a;
  box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.15);
}
.form-control.is-error { border-color: var(--state-error); }
.form-control.is-success { border-color: var(--state-success); }

select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23A7A7A7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.form-error {
  font-size: 13px;
  color: var(--state-error);
  min-height: 16px;
  display: block;
}

.form-checks { display: flex; flex-direction: column; gap: 10px; margin: 4px 0; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--bg-primary);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all var(--t-fast);
}
.check input:checked + .check-box {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}
.check input:checked + .check-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check input:focus-visible + .check-box { box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.3); }
.check a { color: var(--accent-yellow); text-decoration: underline; }

.form-microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  justify-content: center;
  margin-top: 4px;
}
.form-microcopy .icon { width: 16px; height: 16px; color: var(--accent-yellow); }

/* ---------- Kalendarz ---------- */
.booking-calendar { display: flex; flex-direction: column; }
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}
.calendar-title { margin-bottom: 0; flex: 1; text-align: center; text-transform: capitalize; }
.calendar-nav {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}
.calendar-nav:hover { background: var(--bg-card-hover); color: var(--accent-yellow); }
.calendar-nav .icon { width: 18px; height: 18px; }
.calendar-nav svg { width: 18px; height: 18px; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0 8px;
  text-align: center;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  transition: all var(--t-fast);
  background: transparent;
  border: 1px solid transparent;
}
.cal-day:hover:not(.is-disabled):not(.is-empty) {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}
.cal-day.is-empty { background: transparent; pointer-events: none; }
.cal-day.is-disabled {
  color: var(--text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}
.cal-day.is-available::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-yellow);
}
.cal-day.is-today { border-color: var(--border-strong); }
.cal-day.is-selected {
  background: var(--accent-yellow);
  color: #000;
  font-weight: 700;
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-glow);
}
.cal-day.is-selected::after { background: #000; }
.cal-day:focus-visible {
  outline: 2px solid var(--accent-yellow-bright);
  outline-offset: 2px;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-secondary);
  justify-content: center;
}
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-available { background: var(--accent-yellow); }
.dot-selected { background: var(--accent-yellow); box-shadow: 0 0 0 2px rgba(245, 180, 0, 0.3); }
.dot-disabled { background: var(--text-muted); opacity: 0.5; }

/* ---------- Panel godzin + podsumowanie ---------- */
.booking-side { display: flex; flex-direction: column; gap: 20px; }
.summary-title { margin-top: 8px; }

.hours-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.hour-btn {
  min-height: 48px;
  padding: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.hour-btn:hover { border-color: var(--accent-yellow); color: var(--accent-yellow); }
.hour-btn-active {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-glow);
}
.hour-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.summary { display: flex; flex-direction: column; gap: 10px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.summary-row dt { color: var(--text-secondary); font-weight: 400; }
.summary-row dd { color: var(--text-primary); font-weight: 500; }
.summary-row-total {
  border-bottom: none;
  padding-top: 4px;
  margin-top: 4px;
  border-top: 1px solid var(--border-strong);
  padding-top: 12px;
}
.summary-row-total dt { color: var(--text-primary); font-weight: 600; font-size: 15px; }
.summary-row-total dd {
  color: var(--accent-yellow);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.summary-microcopy { margin-top: 4px; }

/* ---------- Modal sukcesu ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}
.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-card);
  animation: scaleIn 0.3s ease;
}
.modal-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.modal-title { font-size: 22px; margin-bottom: 12px; }
.modal-text { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ---------- Trust points ---------- */
.trust-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-points li {
  position: relative;
  padding-right: 20px;
}
.trust-points li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ---------- Logo brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: 0.85; }

.brand-image {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-image.is-failed { display: none; }

.brand-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.brand-footer .brand-image { height: 80px; }

.brand-icon { width: 36px; height: 24px; color: var(--text-primary); }
.brand-accent { color: var(--accent-yellow); }
.brand-text { white-space: nowrap; }

/* ---------- Sekcja "Poznaj Mavericka" ---------- */
.about-section {
  position: relative;
}
.about-figure {
  margin: 0 0 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #050505;
  box-shadow: var(--shadow-card);
}
.about-hero {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.about-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.about-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: -0.01em;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--accent-yellow);
  border-radius: 50%;
}
.about-list li:last-child { padding-bottom: 0; }
.about-list li:first-child { padding-top: 0; }
.about-list li:first-child::before { top: 9px; }
.about-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.about-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
}
.about-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.about-steps li:first-child { padding-top: 0; }
.step-time {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--accent-yellow);
  background: rgba(245, 180, 0, 0.10);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}
.step-text { color: var(--text-primary); font-weight: 500; }

/* ---------- Animacja fade-in dla sekcji ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero: kontakt ---------- */
.hero-contact {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.hero-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}
.hero-contact svg {
  width: 16px;
  height: 16px;
  color: var(--accent-yellow);
  flex-shrink: 0;
}
.hero-contact a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast);
}
.hero-contact a:hover { color: var(--accent-yellow); }

/* ---------- Lokalizacja / Mapa ---------- */
.location-section {
  background: var(--bg-primary);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #050505;
  aspect-ratio: 16 / 11;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.95);
}
.location-info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.location-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 14px;
}
.location-list li:last-child { border-bottom: none; }
.location-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent-yellow);
  flex-shrink: 0;
}
.location-list a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
}
.location-list a:hover { color: var(--accent-yellow); }
.location-info .btn svg { stroke: currentColor; }

/* ---------- Porównanie pakietów (details) ---------- */
.compare-toggle {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-toggle summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background var(--t-fast);
}
.compare-toggle summary::-webkit-details-marker { display: none; }
.compare-toggle summary:hover { background: rgba(255, 255, 255, 0.02); }
.compare-toggle summary svg {
  width: 16px;
  height: 16px;
  color: var(--accent-yellow);
  transition: transform var(--t-fast);
}
.compare-toggle[open] summary svg { transform: rotate(180deg); }
.compare-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--border-subtle);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-table thead th {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table tbody th {
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  width: 30%;
}
.compare-table td {
  color: var(--text-secondary);
  vertical-align: middle;
}
.compare-table td.featured,
.compare-table th.featured {
  background: rgba(245, 180, 0, 0.06);
  color: var(--text-primary);
  font-weight: 500;
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }

/* ---------- Sekcja prawna ---------- */
.legal-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.legal-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
}
.legal-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.legal-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a {
  color: var(--accent-yellow);
  text-decoration: none;
}
.legal-block a:hover { text-decoration: underline; }

/* ---------- Lightbox galerii ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  animation: fadeIn 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: zoom-out;
  max-width: 100%;
  max-height: 100%;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-caption {
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
  margin: 0;
  max-width: 600px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(245, 180, 0, 0.15);
  border: 1px solid rgba(245, 180, 0, 0.4);
  color: var(--accent-yellow);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(245, 180, 0, 0.3);
  transform: scale(1.05);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.35s ease;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner[hidden] { display: none; }
.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.cookie-text a {
  color: var(--accent-yellow);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions .btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  min-height: 36px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Floating CTA (tel) ---------- */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--accent-yellow);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(245, 180, 0, 0.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 180, 0, 0.55);
}
.floating-cta svg { width: 18px; height: 18px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(245, 180, 0, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(245, 180, 0, 0.65); }
}
@media (min-width: 860px) {
  .floating-cta { display: none; }
}

/* ---------- Sekcja "Poznaj Maverick R" — specyfikacja 3x3 (dashboard) ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}
.spec-item {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-fast);
}
.spec-item:hover { background: rgba(245, 180, 0, 0.03); }
.spec-value {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--accent-yellow);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.spec-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 860px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* ---------- Sekcja "Idealny na" — minimalistyczna lista z ✓ ---------- */
.idealna-list {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 0;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.idealna-list li {
  position: relative;
  padding: 22px 0 22px 36px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--t-fast);
}
.idealna-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--accent-yellow);
  border-radius: 50%;
}
.idealna-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--accent-yellow);
  border-bottom: 1.5px solid var(--accent-yellow);
}
.idealna-list li:hover { color: var(--accent-yellow); }
@media (max-width: 700px) {
  .idealna-list { grid-template-columns: 1fr; column-gap: 0; }
}

/* ---------- Banner "Vouchery prezentowe" ---------- */
.voucher-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(245, 180, 0, 0.1) 0%, rgba(245, 180, 0, 0.04) 100%);
  border: 1px solid rgba(245, 180, 0, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.voucher-text { flex: 1; min-width: 260px; }
.voucher-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.voucher-text p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.experience-note {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.experience-note a {
  color: var(--accent-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.experience-note a:hover { text-decoration: none; }
@media (max-width: 700px) {
  .voucher-banner { flex-direction: column; align-items: stretch; padding: 24px; }
  .voucher-title { font-size: 20px; }
}

/* ---------- Sekcja "Przejazd z kierowcą" ---------- */
.driver-section { background: var(--bg-secondary); }
.driver-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
.driver-text .section-title { text-align: left; margin-bottom: 16px; }
.driver-lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
}
.driver-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.driver-features li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.driver-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 16px;
}
.driver-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.driver-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.driver-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}
.driver-card-featured {
  border-color: var(--accent-yellow);
  background: linear-gradient(180deg, rgba(245, 180, 0, 0.06) 0%, transparent 100%);
  position: relative;
}
.driver-card-featured::before {
  content: "Popularne";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.driver-card-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.driver-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.4;
}
.driver-card-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin: 0;
  letter-spacing: 0.02em;
}
.driver-help {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-yellow);
  border-radius: var(--radius-md);
}
.driver-help-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.driver-help-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.driver-help-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.driver-help-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 16px;
}
.driver-help-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.driver-help-note strong { color: var(--text-primary); }
@media (max-width: 860px) {
  .driver-grid { grid-template-columns: 1fr; gap: 32px; }
  .driver-text .section-title { text-align: center; }
  .driver-pricing { grid-template-columns: 1fr 1fr; }
  .driver-help { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .driver-pricing { grid-template-columns: 1fr; }
}

/* ---------- Sekcja "Oferta indywidualna" — minimalistyczna lista 2-kolumnowa ---------- */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
  row-gap: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.custom-item {
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--border-subtle);
  transition: border-left-color var(--t-fast);
}
.custom-item:hover { border-left-color: var(--accent-yellow); }
.custom-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.custom-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.custom-cta {
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .custom-list { grid-template-columns: 1fr; column-gap: 0; }
}
