/* ============================================
   REALIZACJE - style specyficzne dla podstrony
   ============================================ */
.section-intro { margin-top: 12px; }

/* Sekcje docelowe anchorów - margines, żeby nie chowały się pod sticky nagłówkiem + subnav */
#lajkonik, #spoton, #lubicz-park, #cta-final { scroll-margin-top: 140px; }

/* ============================================
   PODNAWIGACJA (anchor pills, sticky pod headerem)
   ============================================ */
.subnav {
  position: sticky; top: 80px; z-index: 80;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.subnav-inner { display: flex; align-items: center; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.subnav-label { font-size: 13px; color: var(--text-light); flex-shrink: 0; }
.subnav-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.subnav-pill {
  font-size: 14px; color: var(--dark);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 7px 16px; transition: all 0.15s; white-space: nowrap;
}
.subnav-pill:hover { border-color: var(--red); color: var(--red); background: var(--red-tint); }

@media (max-width: 900px) { .subnav { top: 64px; } }
@media (max-width: 680px) {
  .subnav-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .subnav-pills { width: 100%; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
}

/* ============================================
   HERO (ciemny)
   ============================================ */
.page-hero { background: var(--dark); color: #fff; padding: 48px 0 64px; }
.page-hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero-desc { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-media .media-placeholder {
  aspect-ratio: 4/3; border-radius: var(--radius-media);
  background: repeating-linear-gradient(135deg, #4a4a49 0, #4a4a49 10px, #444443 10px, #444443 20px);
}
.page-hero-media .media-placeholder-label { color: rgba(255,255,255,0.4); }
.page-hero-media .media-placeholder-icon { color: rgba(255,255,255,0.35); }

@media (min-width: 901px) {
  .page-hero-media .media-placeholder { min-height: 340px; }
}
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-media .media-placeholder { min-height: 220px; }
}
@media (max-width: 600px) {
  .breadcrumb { display: none; }
  .page-hero-content { text-align: center; }
  .page-hero-desc { margin-left: auto; margin-right: auto; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   REALIZACJE W SKRÓCIE - tabela
   ============================================ */
.summary-table { width: 100%; border-collapse: collapse; margin-top: 32px; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.summary-table thead th {
  background: var(--dark); color: #fff; text-align: left; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 24px;
}
.summary-table tbody td { background: var(--white); padding: 18px 24px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border-light); }
.summary-table tbody tr:last-child td { border-bottom: none; }
.summary-table tbody tr { cursor: pointer; transition: background 0.15s; }
.summary-table tbody tr:hover td { background: var(--red-tint); }
.summary-table .client-name { color: var(--red); font-weight: 600; }
.summary-note { font-size: 13px; font-style: italic; color: var(--text-light); margin-top: 12px; }

@media (max-width: 700px) {
  .summary-table thead { display: none; }
  .summary-table, .summary-table tbody, .summary-table tr, .summary-table td { display: block; width: 100%; }
  .summary-table tbody tr { border-bottom: 1px solid var(--border-light); padding: 16px 20px; }
  .summary-table tbody tr:last-child { border-bottom: none; }
  .summary-table tbody td { padding: 4px 0; border-bottom: none; text-align: center; }
  .summary-table .client-name { font-size: 17px; }
}

/* ============================================
   REALIZACJA - case study
   ============================================ */
.case-study-section { }
.meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0 32px; }
.meta-box { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--red); border-radius: var(--radius-card); padding: 16px 20px; }
.meta-box-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.meta-box-value { font-size: 15px; color: var(--dark); font-weight: 500; }

.media-caption { font-size: 13px; font-style: italic; color: var(--text-light); margin: 10px 0 0; }
.case-study-media.media-placeholder { border-radius: var(--radius-media); }

/* Zdjęcie dopasowane wysokością do kolumny z tekstem (jedna kolumna = jedno zdjęcie) */
.case-study-section .split { align-items: stretch; }
.case-study-section .split > div { display: flex; flex-direction: column; }
.case-study-section .case-study-media.media-placeholder { flex: 1; min-height: 0; }

.case-sub { margin-bottom: 20px; }
.case-sub:last-child { margin-bottom: 0; }
.case-sub h3 { font-size: 18px; margin-bottom: 6px; }
.case-sub p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.case-callout {
  background: var(--white); border-left: 4px solid var(--red); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); padding: 28px 32px; margin-top: 32px;
}
.case-callout h3 { font-size: 19px; margin-bottom: 16px; }
.case-callout .checklist-2col { margin: 0; }

.case-study-section .arrow-link { margin-top: 24px; display: inline-flex; }

@media (max-width: 900px) {
  .meta-grid { grid-template-columns: 1fr 1fr; }
  /* Kolumny się rozdzielają (split stackuje się do 1fr) - zdjęcie wraca do stałych proporcji */
  .case-study-section .case-study-media.media-placeholder { flex: none; aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .meta-grid { grid-template-columns: 1fr; }
  .case-sub { text-align: center; }
  .case-callout { text-align: center; }
  .case-callout .checklist-item { justify-content: center; }
  .case-study-section .arrow-link { display: flex; justify-content: center; }
}

/* ============================================
   CO ŁĄCZY NASZE REALIZACJE (sekcja ciemna)
   ============================================ */
#co-laczy h2 { color: #fff; }
#co-laczy .section-intro { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.why-card { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-card); padding: 20px 22px; }
.why-card-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(168,25,22,0.25); color: #E8908E; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-card-icon svg { width: 20px; height: 20px; stroke-width: 2; }
.why-card span { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.4; }
.dlaczego-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { text-align: center; flex-direction: column; }
  #co-laczy .btn { width: 100%; justify-content: center; }
}

/* ============================================
   NAJCZĘSTSZE PYTANIA - lista pojedyncza (styl check-row)
   ============================================ */
.faq-simple-list { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin-top: 32px; }
