/* =====================================================
   PIOTR SIGNETZKI, style.css
   Montserrat font · Near-black #141414 · Orange #FF7C22
   Fonty ładowane przez Google Fonts (link w header.php)
   ===================================================== */

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* === ZMIENNE === */
:root {
  --navy:        #141414;
  --navy-dark:   #0d0d0d;
  --orange:      #FF7C22;
  --orange-h:    #FFAE2E;
  --text:        #2b2b2b;
  --text-light:  #6b6b6b;
  --light-bg:    #F4F4F4;
  --border:      #e6e6e6;
  --white:       #ffffff;
  --font:        'Montserrat', ui-sans-serif, sans-serif;
  --font-alt:    'Work Sans', ui-sans-serif, sans-serif;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-pill: 999px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.16);
  --max-w:       1200px;
  --header-h:    72px;
  --trans:       .25s ease;
  --section-pad: 88px;

  /* timing tokens dla animacji osi czasu */
  --dur-instant:      .15s;
  --dur-fast:         .3s;
  --dur-base:         .5s;
  --ease-out-premium: cubic-bezier(.16,1,.3,1);
  --ease-hover:       cubic-bezier(.4,0,.2,1);
  --ease-spring:      cubic-bezier(.34,1.56,.64,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  font-weight: 400;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font); }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }

/* Usuwa podwójną przerwę tylko gdy dwie sekcje mają TO SAMO tło */
.section:not(.section--light):not(.section--dark) + .section:not(.section--light):not(.section--dark),
.section--light + .section--light,
.section--dark  + .section--dark { padding-top: 0; }
.section--light { background: var(--light-bg); }
.section--dark  { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.section--dark::before {
  content: '';
  position: absolute;
  left: -10%; bottom: -25%;
  width: 55%; padding-bottom: 55%;
  background: radial-gradient(circle, rgba(255,124,34,.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--dark > .container { position: relative; z-index: 1; }

/* === ANIMACJE === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* === PRZYCISKI === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), filter var(--trans),
              border-color var(--trans), transform .2s, box-shadow .2s;
  white-space: nowrap;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(1); }

.btn-primary              { background: linear-gradient(118deg, #EB8318 0%, #F24B1B 100%); color: var(--white); box-shadow: 0 10px 30px rgba(242,75,27,.28); }
.btn-primary:hover        { filter: brightness(1.08); }

.btn-secondary            { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-secondary:hover      { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline              { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover        { background: var(--navy); color: var(--white); }

.btn-outline-light        { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover  { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-full { width: 100%; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* === NAGŁÓWEK HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(20,20,20,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--header-h);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }
.site-header > .container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  max-width: 100%;
  padding: 0 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }

/* NAV */
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  position: relative;
  padding: 8px 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: var(--radius-lg);
  transition: color var(--trans), background var(--trans);
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--white); }
.nav-list > li > a.active { color: var(--orange); }
.nav-list > li > a.active::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FF7C22 0%, #FFC623 100%);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 36px rgba(0,0,0,.16);
  min-width: 270px;
  padding: 10px 0 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dd-open .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--navy);
  font-size: 14px;
  border-radius: 0;
  transition: background var(--trans), color var(--trans);
}
.dropdown a:hover { background: var(--light-bg); color: var(--orange); }

/* Header CTA */
.btn-header {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13.5px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background var(--trans), transform .2s;
}
.btn-header:hover { background: var(--orange-h); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 198;
  cursor: pointer;
}
.nav-overlay.is-visible { display: block; }

/* === HERO === */
.hero {
  background: url('/img/spotkanie-biznesowe-hero.webp') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,29,51,0.55);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,126,34,.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-eyebrow .sep { color: var(--orange); font-weight: 400; margin: 0 .5em; }
h1, h2 {
  background: linear-gradient(90deg, #FF7C22 0%, #FFC623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF7C22; /* fallback dla przeglądarek bez background-clip:text */
}
h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.12;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 19px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
  max-width: 530px;
  line-height: 1.8;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 400;
}
.hero-features li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-phone {
  display: block;
  margin-top: 20px;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color var(--trans);
}
.hero-phone:hover { color: var(--orange); }

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  position: relative;
}
.form-card__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.form-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.25;
}

/* === FORMULARZE === */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1.5px solid #d0d5dd;
  border-radius: var(--radius-lg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,126,34,.14);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-light);
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
  padding: 0;
  border: none;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.checkbox-label a { color: var(--orange); text-decoration: underline; }

/* Form sukces/błąd */
.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-msg.success { background: #d1fae5; color: #065f46; display: block; }
.form-msg.error   { background: #fee2e2; color: #991b1b; display: block; }

/* === NAGLÓWKI SEKCJI === */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-header p { font-size: 16px; color: var(--text-light); line-height: 1.75; }

/* nagłówek wyśrodkowany, lead od lewej — Główne obszary / Dla kogo / Jak wygląda współpraca */
#uslugi .section-header p,
#dla-kogo .section-header p,
#proces .section-header p { text-align: left; }
.section-header--light h3 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,.72); }

/* === BANER,MASZ PROBLEM? === */
.problem-banner {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-pad) 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
.problem-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.pbanner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pbanner-phone {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color var(--trans);
}
.pbanner-phone:hover { color: var(--orange); }
.problems-tel {
  margin-top: 20px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
}
.problems-tel a { color: inherit; transition: color var(--trans); }
.problems-tel a:hover { color: var(--orange); }

@media (max-width: 600px) {
  .pbanner-actions { flex-direction: column; }
}

/* === SZYBKIE PYTANIA === */
.quick-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quick-faq-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.quick-faq-card__q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.quick-faq-card__a {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .quick-faq-grid { grid-template-columns: 1fr; }
  .quick-faq-card { padding: 22px 20px; }
}

/* === PROBLEMY === */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.problems-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 595 / 340;
  object-fit: cover;
}
.problems-content h2 { text-align: left; }
.problems-content > p { margin-bottom: 24px; color: var(--text-light); }
.problems-about {
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.problem-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: rgba(230,126,34,.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E67E22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E")
  center / 12px no-repeat;
  border-radius: 50%;
}

/* === USŁUGI === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  transform: translateY(-5px);
  border-color: var(--orange);
}
.service-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(230,126,34,.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}
.service-card__link {
  color: var(--orange);
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans), color var(--trans);
  align-self: flex-start;
}
.service-card__link:hover { gap: 10px; color: var(--orange-h); }

/* === WSPÓŁPRACA,KROKI === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  transition: box-shadow .3s, border-color .3s, transform .3s;
}
.step-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.step-number {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}
.steps-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* === KORZYŚCI === */
.benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* pozioma linia "spinająca" trzy karty na wysokości ikon */
.benefits-grid::before {
  content: '';
  position: absolute;
  top: 96px; left: 12%; right: 12%;
  height: 2px;
  background: rgba(255,124,34,.22);
  z-index: 0;
}
.benefit-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.benefit-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(230,126,34,.5);
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255,124,34,.2), 0 24px 50px rgba(0,0,0,.28);
}
/* zagięty róg (dog-ear) w prawym dolnym rogu karty */
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent rgba(255,124,34,.28) transparent;
  transition: border-color var(--trans);
}
.benefit-card:hover::after { border-color: transparent transparent var(--orange) transparent; }
.benefit-card__num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 38px;
  font-weight: 800;
  color: rgba(255,255,255,.07);
  line-height: 1;
  pointer-events: none;
}
.benefit-card__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: rgba(255,124,34,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 22px;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform .3s;
}
.benefit-card:hover .benefit-card__icon { transform: rotate(10deg) scale(1.06); }
.benefit-card__stat {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--orange-h);
  margin-bottom: 8px;
}
/* naprzemienne warianty ikon: obrys / wypełnienie, jak w kartach misji */
.benefit-card:nth-child(2) .benefit-card__icon { background: var(--orange); color: var(--white); }
.benefit-card:nth-child(1) .benefit-card__icon,
.benefit-card:nth-child(3) .benefit-card__icon { background: transparent; border: 2px solid var(--orange); }
.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

/* === OPINIE === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}
.stars {
  color: var(--orange);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 18px;
}
.review-card .review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
}

/* === FAQ === */
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(230,126,34,.1);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: background var(--trans);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--orange);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--light-bg); }
.faq-answer {
  padding: 4px 24px 22px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* === KONTAKT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info > h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.82);
}
.contact-list li svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.contact-list a {
  color: rgba(255,255,255,.88);
  transition: color var(--trans);
}
.contact-list a:hover { color: var(--orange); }
.contact-map {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.contact-map iframe {
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
  width: 100%;
  height: 100%;
}

/* Contact form ciemny styl */
.contact-form-dark .form-group label { color: rgba(255,255,255,.82); }
.contact-form-dark .form-group input,
.contact-form-dark .form-group textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}
.contact-form-dark .form-group input::placeholder,
.contact-form-dark .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form-dark .form-group input:focus,
.contact-form-dark .form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(230,126,34,.2);
}
.contact-form-dark .checkbox-label { color: rgba(255,255,255,.6); }

/* === FOOTER === */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand > p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .8; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,.55); }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-bottom a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-meta {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  margin-top: 6px;
}
.content-meta {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
  text-align: center;
}
.content-meta a {
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-card { max-width: 560px; }
  .problems-grid { grid-template-columns: 1fr; gap: 0; }
  .problems-image { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid::before { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  :root { --section-pad: 64px; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .btn-header { display: none; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    background: var(--navy);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    z-index: 199;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }
  .main-nav.is-open { max-height: 80vh; overflow-y: auto; padding: 8px 0 16px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li > a { padding: 12px 20px; font-size: 15px; border-radius: 0; text-align: left; }
  .nav-list > li > a.active::after {
    left: 0; right: auto; top: 0; bottom: 0;
    width: 3px; height: auto; border-radius: 0;
    background: linear-gradient(180deg, #FF7C22 0%, #FFC623 100%);
  }
  .dropdown {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    min-width: 0;
    display: none;
    pointer-events: auto;
  }
  .has-dropdown.mob-open .dropdown { display: block; }
  .has-dropdown:hover .dropdown,
  .has-dropdown.dd-open .dropdown,
  .has-dropdown:focus-within .dropdown { transform: none; }
  .dropdown a { color: rgba(255,255,255,.65); padding: 10px 20px 10px 36px; font-size: 14px; }
  .dropdown a:hover { background: rgba(255,255,255,.06); color: var(--orange); }

  /* Layout */
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-group { flex-direction: column; }
  .hero-grid { gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .form-card { padding: 24px 18px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .service-card { padding: 22px 20px; }
  .benefit-card { padding: 28px 20px; }
  .faq-item summary { font-size: 15px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 18px; }
}

/* === O WŁAŚCICIELU === */
.owner-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.owner-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.owner-content h2 { margin-bottom: 20px; }
.owner-content p { margin-bottom: 16px; color: var(--text-light); }
.owner-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 28px;
  list-style: none;
}
.owner-credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.owner-credentials li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
@media (max-width: 960px) {
  .owner-grid { grid-template-columns: 1fr; gap: 32px; }
  .owner-photo { max-width: 280px; }
}

/* === REALIZACJE === */
.realizacje-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-number {
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
}
.realizacje-branze { margin-bottom: 48px; }
.realizacje-branze h3,
.realizacje-cases h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.branze-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.branze-list li {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  color: var(--text);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.case-problem {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
  font-style: italic;
}
.case-result {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 960px) {
  .realizacje-stats { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .realizacje-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 24px 16px; }
}

/* === BLOKI SEO === */
.seo-wide .container { max-width: 1400px; }
.seo-wide .seo-text  { max-width: none; }

.seo-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.85;
  color: var(--text);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .seo-lead { text-align: left; }
}

.seo-text { max-width: 860px; margin: 0 auto; }
.seo-text h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.35;
}
.seo-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 8px;
}
.seo-text p { margin-bottom: 14px; color: var(--text); }
.seo-text p:last-child { margin-bottom: 0; }

/* === STICKY MOBILE CTA === */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--white);
    box-shadow: 0 -2px 16px rgba(0,0,0,.12);
    z-index: 900;
  }
  .mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
    font-size: 15px;
  }
  body { padding-bottom: 80px; }
}

/* === CONTENT VISIBILITY === */
.seo-wide,
.realizacje,
.lokalizacje {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

/* === PRINT === */
@media print {
  .site-header, .hero-form-wrap, .contact-form-wrap,
  .nav-overlay, .hamburger { display: none !important; }
  .hero { background: white; color: black; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 11px; }
}

/* === PAGE HERO (podstrony) === */
.page-hero {
  position: relative;
  min-height: 44vh;
  margin-top: calc(-1 * var(--header-h));
  padding: calc(56px + var(--header-h)) 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy) url('/img/spotkanie-biznesowe-hero.webp') center/cover no-repeat;
  text-align: center;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,.34) 0%, rgba(8,8,8,.6) 70%, rgba(0,0,0,.74) 100%);
  z-index:0;
}
.page-hero::after {
  content:'';
  position:absolute; left:0; right:0; bottom:0;
  height:5px;
  background: linear-gradient(90deg, #FF7C22, #FFC623);
  z-index:2;
}
.page-hero > .container { position: relative; z-index: 1; width: 100%; }
@media (max-width: 768px) { .page-hero { min-height: 34vh; padding: calc(40px + var(--header-h)) 0 44px; } }
.page-hero__breadcrumb { font-size:13px; color:rgba(255,255,255,.45); margin-bottom:14px }
.page-hero__breadcrumb a { color:rgba(255,255,255,.55); transition:color var(--trans) }
.page-hero__breadcrumb a:hover { color:var(--orange) }
.page-hero__breadcrumb span { color:var(--orange) }
.page-hero h1 { font-size:clamp(26px,4vw,44px); font-weight:700; margin-bottom:14px; line-height:1.25 }
.page-hero__lead { font-size:16px; color:rgba(255,255,255,.72); max-width:600px; margin:0 auto; line-height:1.75 }
.page-hero__box {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(13,13,13,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
}
.page-hero__box .page-hero__lead { margin: 0 auto; }
@media (max-width: 600px) { .page-hero__box { padding: 30px 26px; margin: 0 12px; } }

/* mała ikona tematu strony */
.page-hero__box-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(255,124,34,.35);
}

/* separator sekcji: linia z kropką na środku */
.section-divider { display: flex; align-items: center; justify-content: center; max-width: 220px; margin: 0 auto; height: 24px; }
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.page-hero__cta { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:28px }
.page-hero__phone { display:block; text-align:center; margin-top:20px; font-size:clamp(30px,4vw,48px); font-weight:700; color:var(--white); letter-spacing:-.5px; line-height:1; transition:color var(--trans) }
.page-hero__phone:hover { color:var(--orange) }
.page-hero__meta { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap }
.page-hero__cat { display:inline-block; background:rgba(230,126,34,.2); color:var(--orange); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:4px 12px; border-radius:20px }
.page-hero__date { font-size:13px; color:rgba(255,255,255,.5) }

/* === KONTAKT — mapa === */
.contact-map { aspect-ratio:16/9; overflow:hidden; border-radius:var(--radius-lg) }
.contact-map iframe { width:100%; height:100%; border:0 }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start }
@media (max-width:900px) { .contact-grid { grid-template-columns:1fr; gap:48px } }

/* === LOKALIZACJE — kafelki === */
.loc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.loc-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:32px 28px; display:flex; flex-direction:column; gap:12px; transition:box-shadow .3s,border-color .3s,transform .3s; text-decoration:none; color:inherit }
.loc-card:hover { box-shadow:var(--shadow); border-color:var(--orange); transform:translateY(-4px) }
.loc-card__icon { width:48px; height:48px; background:rgba(230,126,34,.1); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; color:var(--orange); flex-shrink:0 }
.loc-card__city { font-size:20px; font-weight:700; color:var(--navy); line-height:1.2 }
.loc-card__desc { font-size:14px; color:var(--text-light); line-height:1.75; flex:1 }
.loc-card__link { font-size:13px; font-weight:700; color:var(--orange); display:inline-flex; align-items:center; gap:4px; margin-top:4px; transition:gap var(--trans) }
.loc-card:hover .loc-card__link { gap:8px }
@media (max-width:900px) { .loc-grid { grid-template-columns:repeat(2,1fr) } }
@media (max-width:540px) { .loc-grid { grid-template-columns:1fr } }

/* === OFERTA — karty usług === */
.services-section { padding:80px 0; background:var(--light-bg) }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px }
.service-card { background:var(--white); border-radius:var(--radius-lg); border:1.5px solid var(--border); padding:28px 26px 24px; display:flex; flex-direction:column; gap:10px; transition:box-shadow .3s,border-color .3s,transform .3s }
.service-card:hover { box-shadow:var(--shadow); border-color:var(--orange); transform:translateY(-3px) }
.service-card__icon { width:44px; height:44px; background:rgba(230,126,34,.1); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.service-card__icon svg { color:var(--orange) }
.service-card h3 { font-size:15px; font-weight:700; color:var(--navy); line-height:1.35 }
.service-card p { font-size:13.5px; color:var(--text-light); line-height:1.7; flex:1 }
.service-card__link { display:inline-flex; align-items:center; gap:6px; color:var(--orange); font-size:13px; font-weight:700; margin-top:4px; transition:gap var(--trans); align-self:flex-start }
.service-card__link:hover { gap:10px }
@media (max-width:900px) { .services-grid { grid-template-columns:repeat(2,1fr) } }
@media (max-width:540px) { .services-grid { grid-template-columns:1fr } .contact-form-dark { padding:28px 20px } }

/* === STRONY OFERTOWE / LOKALIZACYJNE === */
.intro-split { display:grid; grid-template-columns:1fr 2fr; gap:56px; align-items:center }
.intro-features { display:flex; flex-direction:column; gap:24px }
.intro-feature { display:flex; align-items:flex-start; gap:16px }
.intro-feature__check { flex-shrink:0; width:28px; height:28px; border-radius:50%; background:var(--orange); display:flex; align-items:center; justify-content:center; margin-top:2px }
.intro-feature__text { font-size:17px; font-weight:600; color:var(--navy); line-height:1.4 }
.benefits-4 { grid-template-columns:repeat(4,1fr) }
.location-rows { display:flex; flex-direction:column; gap:40px }
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start }
.location-col h3 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:10px }
.location-tags { display:flex; flex-wrap:wrap; gap:8px }
.location-tag { background:rgba(230,126,34,.1); color:var(--navy); border-radius:20px; padding:5px 14px; font-size:13px; font-weight:600 }
.location-img { border-radius:var(--radius-lg); width:100%; aspect-ratio:4/3; object-fit:cover; background:var(--light-bg); display:block }
.location-text-block { background:var(--white); border-radius:var(--radius-lg); padding:28px 32px; box-shadow:var(--shadow); font-size:15px; color:var(--text); line-height:1.8 }
.faq-plain { display:flex; flex-direction:column; gap:40px }
.faq-plain__item h3 { font-size:18px; font-weight:700; color:var(--navy); margin-bottom:10px; line-height:1.3 }
.faq-plain__item p { font-size:15px; color:var(--text); line-height:1.8 }
@media (max-width:1100px) { .benefits-4 { grid-template-columns:repeat(2,1fr) } }
@media (max-width:900px) { .intro-split { grid-template-columns:1fr; gap:40px } .location-grid { grid-template-columns:1fr } }
@media (max-width:560px) { .benefits-4 { grid-template-columns:1fr } }

/* === WPIS BLOGOWY === */
.post-section { padding:72px 0 88px; background:var(--light-bg) }
.post-layout { display:grid; grid-template-columns:1fr 320px; gap:40px; align-items:start }
.post-article { background:var(--white); border-radius:var(--radius-lg); border:1.5px solid var(--border); overflow:hidden }
.post-cover { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; background:linear-gradient(135deg,#0A1D33 0%,#1a3a5c 100%) }
.post-cover-placeholder { width:100%; aspect-ratio:16/9; background:linear-gradient(135deg,#0A1D33 0%,#1a3a5c 100%); display:flex; align-items:center; justify-content:center }
.post-cover-placeholder svg { opacity:.15 }
.post-content { padding:40px 44px 48px }
.post-body { font-size:16px; font-weight:400; line-height:1.85; color:var(--text) }
.post-body h2 { font-size:20px; font-weight:700; color:var(--navy); margin:36px 0 14px; padding-bottom:10px; border-bottom:2px solid var(--light-bg) }
.post-body h3 { font-size:17px; font-weight:700; color:var(--navy); margin:28px 0 10px }
.post-body p { margin-bottom:18px }
.post-body ul, .post-body ol { margin:4px 0 20px 20px; display:flex; flex-direction:column; gap:8px }
.post-body ul li { list-style:disc; padding-left:4px }
.post-body ol li { list-style:decimal; padding-left:4px }
.post-body strong { font-weight:700; color:var(--navy) }
.post-body a { color:var(--orange); font-weight:600; transition:color var(--trans) }
.post-body a:hover { color:var(--orange-h) }
.post-body .highlight-box { background:rgba(230,126,34,.07); border-left:4px solid var(--orange); border-radius:0 var(--radius-lg) var(--radius-lg) 0; padding:18px 22px; margin:24px 0; font-size:15px }
.post-footer { margin-top:40px; padding-top:24px; border-top:1.5px solid var(--border); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px }
.post-back { display:inline-flex; align-items:center; gap:8px; color:var(--orange); font-weight:700; font-size:14px; transition:gap var(--trans) }
.post-back:hover { gap:14px }
.post-back svg { transform:rotate(180deg) }
.post-sidebar { display:flex; flex-direction:column; gap:24px; position:sticky; top:calc(var(--header-h) + 24px) }
.sidebar-card { background:var(--white); border-radius:var(--radius-lg); border:1.5px solid var(--border); padding:28px 26px }
.sidebar-card--dark { background:var(--navy); border-color:var(--navy); color:var(--white) }
.sidebar-card h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:16px }
.sidebar-card--dark h3 { color:var(--white) }
.sidebar-card p { font-size:13.5px; color:var(--text-light); line-height:1.7; margin-bottom:18px }
.sidebar-card--dark p { color:rgba(255,255,255,.7) }
.sidebar-toc { display:flex; flex-direction:column; gap:10px }
.sidebar-toc a { font-size:13.5px; color:var(--text); display:flex; align-items:flex-start; gap:8px; line-height:1.5; transition:color var(--trans) }
.sidebar-toc a::before { content:''; width:6px; height:6px; min-width:6px; border-radius:50%; background:var(--orange); margin-top:7px }
.sidebar-toc a:hover { color:var(--orange) }
.sidebar-phone { display:flex; align-items:center; gap:10px; font-size:clamp(22px,3.5vw,28px); font-weight:700; color:var(--white); margin-bottom:4px; text-decoration:none }
.sidebar-phone svg { flex-shrink:0 }
@media (max-width:960px) { .post-layout { grid-template-columns:1fr } .post-sidebar { position:static } }
@media (max-width:600px) { .post-content { padding:28px 22px 36px } .post-body h2 { font-size:18px } }

/* === POLITYKA PRYWATNOŚCI === */
.policy-content { max-width:860px; margin:0 auto }
.policy-content h2 { font-size:clamp(17px,2vw,20px); font-weight:700; color:var(--navy); margin:36px 0 10px; padding-bottom:8px; border-bottom:2px solid var(--orange) }
.policy-content>h2:first-child { margin-top:0 }
.policy-content p { margin-bottom:14px; line-height:1.8; color:var(--text) }
.policy-content ul { list-style:disc; padding-left:22px; margin-bottom:16px }
.policy-content li { margin-bottom:8px; line-height:1.75; color:var(--text) }
.policy-content a { color:var(--orange); text-decoration:underline }
.policy-content strong { font-weight:700; color:var(--navy) }
.policy-browsers dt { font-weight:700; margin-top:10px; color:var(--navy) }
.policy-browsers dd { margin-left:0; padding-left:16px; border-left:3px solid var(--orange); margin-bottom:10px; font-size:13px; color:var(--text-light) }
.cookie-table-wrap { overflow-x:auto; margin:24px 0 }
.cookie-table { width:100%; border-collapse:collapse; font-size:13px; min-width:580px }
.cookie-table thead tr { background:var(--navy); color:var(--white) }
.cookie-table th { padding:10px 12px; text-align:left; font-weight:600 }
.cookie-table td { padding:9px 12px; border-bottom:1px solid var(--border); vertical-align:top }
.cookie-table tr:nth-child(even) td { background:var(--light-bg) }

/* === BLOG === */
.blog-section { padding:72px 0 88px }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px }
.blog-card { background:var(--white); border-radius:var(--radius-lg); border:1.5px solid var(--border); overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .3s,border-color .3s,transform .3s }
.blog-card:hover { box-shadow:var(--shadow); border-color:var(--orange); transform:translateY(-4px) }
.blog-card__img-placeholder { background:linear-gradient(135deg,var(--navy) 0%,#1a3a5c 100%); aspect-ratio:16/9; display:flex; align-items:center; justify-content:center }
.blog-card__img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.blog-card__body { padding:24px 26px 28px; display:flex; flex-direction:column; flex:1; gap:12px }
.blog-card__meta { display:flex; align-items:center; gap:10px; flex-wrap:wrap }
.blog-card__cat { display:inline-block; background:rgba(230,126,34,.12); color:var(--orange); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:3px 10px; border-radius:20px }
.blog-card__date { font-size:12px; color:var(--text-light) }
.blog-card h3 { font-size:17px; font-weight:700; color:var(--navy); line-height:1.35; margin:0 }
.blog-card h3 a { color:inherit; transition:color var(--trans) }
.blog-card h3 a:hover { color:var(--orange) }
.blog-card__excerpt { font-size:14px; color:var(--text-light); line-height:1.75; flex:1 }
.blog-card__link { font-size:13px; font-weight:700; color:var(--orange); display:inline-flex; align-items:center; gap:4px; margin-top:4px; align-self:flex-start; transition:gap var(--trans) }
.blog-card__link:hover { gap:8px }
.blog-cta { background:var(--navy); border-radius:var(--radius-lg); padding:48px 40px; text-align:center; margin-top:64px }
.blog-cta h3 { font-size:clamp(20px,2.5vw,28px); font-weight:700; color:var(--white); margin-bottom:12px }
.blog-cta p { font-size:16px; color:rgba(255,255,255,.72); margin-bottom:28px }
.blog-cta .btn-group { justify-content:center }
.pagination-item { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border-radius:var(--radius-lg); font-size:14px; font-weight:600; color:var(--navy); border:1.5px solid var(--border); background:var(--white); transition:background var(--trans),border-color var(--trans),color var(--trans); text-decoration:none }
.pagination-item:hover { border-color:var(--orange); color:var(--orange) }
.pagination-item--active { background:var(--orange); border-color:var(--orange); color:var(--white); pointer-events:none }
.pagination-next { gap:4px }
@media(max-width:900px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:580px){.blog-grid{grid-template-columns:1fr}.blog-cta{padding:32px 20px}}

/* === ZDJĘCIA Z REALIZACJI === */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photos-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* =====================================================
   STRONA GŁÓWNA — SIGNETZKI PIOTR (7 sekcji wg specyfikacji)
   ===================================================== */

/* wielki obrysowany napis w tle (efekt z wzorca stylistycznego) */
.deco-word-wrap { position: relative; }
.deco-word {
  position: absolute;
  top: -6px; left: 0; right: 0;
  text-align: center;
  font-size: clamp(52px, 11vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,124,34,.16);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}
.deco-word-wrap > .section-header { position: relative; z-index: 1; }
@media (max-width: 768px) { .deco-word { display: none; } }

/* === 1. HERO PEŁNOEKRANOWY === */
.hero-full {
  position: relative;
  min-height: 96vh;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy) url('/img/spotkanie-biznesowe-hero.webp') center/cover no-repeat;
  overflow: hidden;
  padding: calc(64px + var(--header-h)) 0 128px;
}
.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.4);
  z-index: 1;
  pointer-events: none;
}
.hero-full__box {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 0 0 5%;
  background: rgba(13,13,13,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.hero-full__desc { font-size: 16px; font-weight: 400; color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 28px; text-align: left; }
.hero-full__box .hero-eyebrow { text-align: left; }
.hero-full__box h1 { text-align: left; }
.hero-full__box .hero-ctas { justify-content: center; align-items: center; }

/* ── HERO — efekty "wow" (przeniesione 1:1 ze stylu Upadłość Konsumencka) ── */

/* pierścienie dekoracyjne */
.hero-full__ring { position: absolute; z-index: 1; border: 1px solid rgba(255,124,34,.18); border-radius: 50%; pointer-events: none; }
.hero-full__ring--1 { width: 420px; height: 420px; top: -140px; right: -80px; }
.hero-full__ring--2 { width: 240px; height: 240px; bottom: -80px; right: 12%; border-color: rgba(255,124,34,.12); }
@media (max-width: 860px) { .hero-full__ring { display: none; } }

/* kropka krążąca po obwodzie kwadratowej ramki */
@keyframes hero-square-orbit {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(calc(var(--size) - 8px), 0); }
  50%  { transform: translate(calc(var(--size) - 8px), calc(var(--size) - 8px)); }
  75%  { transform: translate(0, calc(var(--size) - 8px)); }
  100% { transform: translate(0, 0); }
}
.hero-full__orbit { position: absolute; z-index: 1; border: 1px dashed rgba(255,124,34,.26); pointer-events: none; }
.hero-full__orbit-dot { position: absolute; top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: hero-square-orbit linear infinite; }
.hero-full__orbit--1 { top: 10%; right: 8%; width: 190px; height: 190px; }
.hero-full__orbit--1 .hero-full__orbit-dot { --size: 190px; animation-duration: 24s; }
.hero-full__orbit--2 { bottom: 26%; right: 22%; width: 110px; height: 110px; }
.hero-full__orbit--2 .hero-full__orbit-dot { --size: 110px; animation-duration: 17s; animation-direction: reverse; }
@media (max-width: 860px) { .hero-full__orbit { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-full__orbit-dot { animation: none; } }

/* aurora — wolno przesuwające się rozmyte plamy światła */
@keyframes hero-aurora-move {
  0%   { transform: translate(0, 0) scale(1); opacity: .55; }
  50%  { transform: translate(6%, 4%) scale(1.18); opacity: .9; }
  100% { transform: translate(0, 0) scale(1); opacity: .55; }
}
.hero-full__aurora {
  position: absolute; z-index: 1; pointer-events: none; filter: blur(70px);
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  animation: hero-aurora-move 24s ease-in-out infinite;
  border-radius: 50%;
}
.hero-full__aurora--1 { top: -12%; right: -6%; width: 520px; height: 520px; opacity: .22; }
.hero-full__aurora--2 { bottom: -18%; left: 2%; width: 420px; height: 420px; opacity: .14; animation-duration: 32s; animation-delay: -9s; }
@media (max-width: 860px) { .hero-full__aurora { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-full__aurora { animation: none; } }

/* ziarno filmowe — subtelna faktura na całym hero */
.hero-full__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}

/* delikatny, pulsujący blask za nagłówkiem */
@keyframes hero-glow-pulse {
  0%, 100% { opacity: .25; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.1); }
}
.hero-full__headline-glow {
  position: absolute; left: -40px; top: -15%; width: 460px; height: 280px;
  z-index: -1; pointer-events: none; filter: blur(40px);
  background: radial-gradient(ellipse, var(--orange) 0%, transparent 72%);
  opacity: .3;
  animation: hero-glow-pulse 6.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-full__headline-glow { animation: none; } }

/* cienkie linie "rysujące się" same */
.hero-full__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-full__line-path {
  fill: none; stroke: var(--orange-h); stroke-width: 1.4; opacity: .35;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: hero-line-draw 2.2s ease-out .5s forwards;
}
.hero-full__line-path--2 { animation-delay: 1.1s; opacity: .22; }
@keyframes hero-line-draw { to { stroke-dashoffset: 0; } }
@media (max-width: 860px) { .hero-full__lines { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-full__line-path { animation: none; stroke-dashoffset: 0; } }

/* sekwencyjne wejście elementów hero */
@keyframes hero-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-full__box .hero-eyebrow,
.hero-full__box h1,
.hero-full__box .hero-full__desc,
.hero-full__box .hero-ctas {
  animation: hero-fade-up .8s ease both;
}
.hero-full__box .hero-eyebrow    { animation-delay: .05s; }
.hero-full__box h1               { animation-delay: .2s; }
.hero-full__box .hero-full__desc { animation-delay: .38s; }
.hero-full__box .hero-ctas       { animation-delay: .56s; }
@media (prefers-reduced-motion: reduce) {
  .hero-full__box .hero-eyebrow, .hero-full__box h1, .hero-full__box .hero-full__desc, .hero-full__box .hero-ctas { animation: none; }
}

.hero-services-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 2;
}
.hero-services-strip a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--trans), color var(--trans);
}
.hero-services-strip a:last-child { border-right: none; }
.hero-services-strip a:hover { background: rgba(230,126,34,.16); color: var(--white); }
.hero-services-strip svg { color: var(--orange); }
@media (max-width: 768px) {
  .hero-full {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: calc(40px + var(--header-h)) 0 0;
  }
  .hero-full__box { margin: 0 16px 32px; padding: 32px 24px; max-width: none; }
  .hero-full__box .hero-eyebrow { text-align: center; }
  .hero-full__box h1 { text-align: center; font-size: clamp(24px, 7vw, 30px); }
  .hero-services-strip { position: static; grid-template-columns: repeat(2, 1fr); }
  .hero-services-strip a { border-bottom: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
  .hero-services-strip a:nth-child(2n) { border-right: none; }
}
@media (max-width: 480px) { .hero-full__box { margin: 0 12px 28px; padding: 28px 20px; } }

/* === 2. GŁÓWNE OBSZARY DZIAŁALNOŚCI — lista naprzemienna === */
#uslugi {
  position: relative;
  background-image: radial-gradient(circle, rgba(20,20,20,.09) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* akcent kolorystyczny per usługa */
.service-row:nth-child(1) { --row-accent: #2E6FF2; } /* Rekrutacja — niebieski */
.service-row:nth-child(2) { --row-accent: #FF7C22; } /* Coaching — pomarańcz */
.service-row:nth-child(3) { --row-accent: #8B5CF6; } /* Mentoring — fiolet */
.service-row:nth-child(4) { --row-accent: #16A876; } /* Terapia — zieleń */

/* pionowa oś "kręgosłupa" łącząca wszystkie wiersze */
.service-rows { position: relative; display: flex; flex-direction: column; gap: 72px; }
.service-rows::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px; left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #2E6FF2, #FF7C22, #8B5CF6, #16A876);
  opacity: .28;
  transform: translateX(-50%);
  z-index: 0;
}
.service-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-row--reverse .service-row__media { order: -1; }
.service-row__spine-dot {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--row-accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  transform: translate(-50%, -50%);
}

.service-row__text { position: relative; padding-left: 26px; }
.service-row__text::before {
  content: '';
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 5px;
  border-radius: 3px;
  background: var(--row-accent);
}
.service-row__giant {
  position: absolute;
  top: -34px; left: 8px;
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--row-accent);
  opacity: .13;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.service-row__num { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--row-accent); margin-bottom: 10px; }
.service-row__text h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.service-row__text > p { font-size: 15.5px; color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.service-row__list { display: flex; flex-direction: column; gap: 10px; }
.service-row__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}
.service-row__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--row-accent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 9px no-repeat;
}
.service-row__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--light-bg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: 28px; }
  .service-row__media { order: -1; max-width: 320px; margin: 0 auto; }
  .service-rows::before,
  .service-row__spine-dot { display: none; }
  .service-row__giant { font-size: 100px; top: -22px; left: 20px; opacity: .1; }
}

/* === 3. DLA KOGO — zdjęcie w tle z mocnym overlayem === */
.dla-kogo-bg {
  background:
    linear-gradient(rgba(6,6,6,.76), rgba(6,6,6,.76)),
    url('/img/dla-kogo-tlo.webp') center/cover no-repeat;
}

/* === 3. DLA KOGO — karty "przepływu": odbiorca → forma wsparcia → rezultat === */
.audience-flow { display: flex; flex-direction: column; gap: 16px; max-width: 980px; margin: 0 auto; }
.audience-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.audience-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,124,34,.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.audience-card__seg { flex: 1; display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.audience-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.audience-card__value { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.88); line-height: 1.35; }
.audience-card__value--strong { color: var(--white); font-weight: 800; font-size: 17.5px; }
.audience-card__value--accent { color: var(--orange-h); font-weight: 800; }
.audience-card__arrow { flex-shrink: 0; width: 18px; height: 18px; color: var(--orange); opacity: .55; }

@media (max-width: 768px) {
  .audience-card { flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 22px 24px; }
  .audience-card__seg { width: 100%; align-items: center; }
  .audience-card__arrow { transform: rotate(90deg); margin-left: 0; }
}

/* === 4. TIMELINE, JAK WYGLĄDA WSPÓŁPRACA (styl 1:1 z OERO) === */
.timeline-wrap { position: relative; max-width: 760px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 15px; top: 8px; bottom: 8px; width: 16px; height: calc(100% - 16px);
  overflow: visible; z-index: 0; pointer-events: none;
}
.timeline-line__track,
.timeline-line__progress { fill: none; stroke-width: 2; stroke-linecap: round; }
.timeline-line__track { stroke: var(--border); }
.timeline-line__progress {
  stroke: var(--orange);
  stroke-dasharray: var(--line-len, 1);
  stroke-dashoffset: calc(var(--line-len, 1) * (1 - var(--line-progress, 0)));
  transition: stroke-dashoffset var(--dur-instant) linear;
}
.timeline { position: relative; list-style: none; padding: 0; margin: 0; }
.timeline-item {
  position: relative; z-index: 1; padding-left: 64px; margin-bottom: 32px;
  opacity: 0; transform: translateY(28px); filter: blur(6px);
  transition: opacity var(--dur-base) var(--ease-out-premium), transform var(--dur-base) var(--ease-out-premium), filter var(--dur-base) var(--ease-out-premium);
}
.timeline-item.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: 15px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--border); box-shadow: 0 0 0 4px var(--white);
  transition: background var(--dur-fast) var(--ease-hover), transform var(--dur-fast) var(--ease-hover), box-shadow var(--dur-fast) var(--ease-hover);
  z-index: 1;
}
.timeline-item.is-visible .timeline-dot { background: var(--orange); }
.timeline-item--active .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 9px rgba(230,126,34,.22);
}
.timeline-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 26px 28px; transition: box-shadow var(--dur-fast) var(--ease-hover), transform var(--dur-fast) var(--ease-hover);
  display: flex; gap: 18px; align-items: flex-start;
}
.timeline-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.13); transform: translateY(-6px); }
.timeline-item--active .timeline-card { box-shadow: 0 18px 52px rgba(10,29,51,.16); }
.timeline-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(230,126,34,.1); display: flex; align-items: center; justify-content: center; color: var(--orange);
  opacity: 0; transform: scale(.6);
  transition: opacity var(--dur-fast) linear, transform var(--dur-fast) var(--ease-spring);
  transition-delay: var(--dur-instant);
}
.timeline-item.is-visible .timeline-icon { opacity: 1; transform: scale(1); }
.timeline-body__num {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--orange); margin-bottom: 4px;
  display: inline-block; opacity: 0; transform: scale(.7);
  transition: opacity var(--dur-fast) linear, transform var(--dur-fast) var(--ease-spring);
  transition-delay: calc(var(--dur-instant) * 2);
}
.timeline-item.is-visible .timeline-body__num { opacity: 1; transform: scale(1); }
.timeline-body h3 { font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-body p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin: 0; }
@media (max-width: 560px) {
  .timeline-item { padding-left: 56px; margin-bottom: 24px; transform: translateY(16px); }
  .timeline-card { flex-direction: column; align-items: center; text-align: center; padding: 1em; }
  .timeline-card p { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-item, .timeline-icon, .timeline-body__num {
    transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important;
  }
  .timeline-dot, .timeline-card { transition: none !important; }
  .timeline-line__progress { transition: none !important; }
}

/* === 5. DLACZEGO WARTO ZE MNĄ WSPÓŁPRACOWAĆ === */
.benefits-cta { text-align: center; margin-top: 44px; }
.benefits-cta__person { display: inline-flex; align-items: center; gap: 14px; }
.benefits-cta__avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(255,124,34,.35);
}
@media (max-width: 480px) {
  .benefits-cta__person { flex-direction: column; gap: 12px; }
}

/* === 6. OPINIE — monumentalne, przesuwane karty ze szkłem === */
.testimonials { position: relative; overflow: hidden; }
.testimonials__blob {
  position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
}
.testimonials__blob--1 { top: -10%; left: -8%; width: 460px; height: 460px; opacity: .16; }
.testimonials__blob--2 { bottom: -18%; right: -6%; width: 380px; height: 380px; opacity: .12; }
.testimonials > .container { position: relative; z-index: 1; }

.testimonial-slider-wrap { position: relative; }
.testimonial-slider {
  display: flex;
  gap: 28px;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  user-select: none;
  touch-action: pan-y;
  padding: 30px 20px 46px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.testimonial-slider::-webkit-scrollbar { display: none; }

.testimonial-mega {
  flex: 0 0 74%;
  min-width: 0;
  position: relative;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(10,20,30,.13), 0 4px 12px rgba(10,20,30,.05);
  padding: 44px 48px;
}
.testimonial-mega__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.testimonial-mega__stars { display: flex; align-items: center; gap: 4px; }
.testimonial-mega__stars svg { width: 16px; height: 16px; color: var(--orange); }
.testimonial-mega__stars span { margin-left: 6px; font-size: 14px; font-weight: 800; color: var(--navy); }
.testimonial-mega__title { font-size: 15px; font-weight: 800; color: var(--white); background: var(--navy); padding: 6px 16px; border-radius: var(--radius-lg); }
.testimonial-mega__quote {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-mega__marks { display: flex; gap: 4px; margin-bottom: 14px; }
.testimonial-mega__marks svg { width: 16px; height: 16px; color: var(--orange); }
.testimonial-mega__highlight {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 28px;
}
.testimonial-mega__author { display: flex; align-items: center; gap: 14px; }
.testimonial-mega__avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(255,124,34,.35);
}
.testimonial-mega__author-text { display: flex; flex-direction: column; gap: 2px; }
.testimonial-mega__name { font-size: 15px; font-weight: 700; color: var(--navy); }
.testimonial-mega__role { font-size: 12.5px; color: var(--text-light); }

.testimonial-slider-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  text-align: center;
}
.testimonial-slider-label { font-size: 13px; font-weight: 400; color: var(--orange-h); }
.testimonial-slider-label::before { content: '* '; }
.testimonial-slider-btns { display: flex; justify-content: center; gap: 12px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  cursor: pointer; box-shadow: var(--shadow);
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

@media (max-width: 960px) { .testimonial-mega { flex: 0 0 88%; padding: 36px 32px; } }
@media (max-width: 600px) {
  .testimonial-mega { flex: 0 0 94%; padding: 30px 24px; }
  .testimonial-mega__title { font-size: 13px; padding: 5px 12px; }
  .testimonial-slider-foot { gap: 18px; }
}

/* === 7. KONTAKT — najpierw wybór usługi === */
.usluga-picker-hint {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange-h);
  margin-bottom: 16px;
}
.usluga-picker-hint::before { content: '* '; }
.usluga-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.usluga-pick {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 14px; background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); color: rgba(255,255,255,.82); cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans), transform var(--trans);
  font-family: var(--font); font-size: 14px; font-weight: 600;
}
.usluga-pick svg { color: var(--orange); transition: color var(--trans); }
.usluga-pick:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.usluga-pick.is-selected { background: var(--orange); border-color: var(--orange); color: var(--white); }
.usluga-pick.is-selected svg { color: var(--white); }
.usluga-hint { margin-top: 20px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.contact-grid--dynamic { align-items: center; }
.contact-grid--dynamic .contact-form-wrap { display: none; }
.contact-grid--dynamic.is-open .contact-form-wrap { display: block; animation: testimonial-fade .4s ease; }
.usluga-extra { display: none; }
.usluga-extra.is-visible { display: flex; }
@media (max-width: 768px) { .usluga-picker { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================
   STRONA KONTAKT (kontakt.php) — układ z wodex, nasz styl
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: stretch;
}

/* Picker usług — wariant na jasnym tle */
.contact-page .usluga-picker-hint { color: var(--orange); }
.contact-page .usluga-pick {
  background: var(--light-bg);
  border-color: var(--border);
  color: var(--navy);
}
.contact-page .usluga-pick:hover { background: #FFF3E8; }
.contact-page .usluga-pick.is-selected { background: var(--orange); border-color: var(--orange); color: var(--white); }
.contact-page .usluga-hint { color: var(--text-light); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Karta danych kontaktowych */
.company-info {
  background: #FFF3E8;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-info h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.company-info__name { font-size: 13.5px; color: var(--text-light); margin-bottom: 4px; }
.company-info__meta { font-size: 12.5px; color: var(--text-light); margin-bottom: 2px; }
.company-info__meta span { font-size: 15px; font-weight: 700; color: var(--navy); }
.company-info__divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }

.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.info-item:last-child { margin-bottom: 0; }
.info-item__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.info-item:hover .info-item__icon { transform: translateY(-6px); }
.info-item__icon svg { width: 16px; height: 16px; }
.info-item__text { flex: 1; min-width: 0; }
.info-item__label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.info-item__value { font-size: 15px; font-weight: 700; color: var(--navy); }
.info-item__value a { color: var(--orange); transition: color var(--trans); }
.info-item__value a:hover { color: var(--orange-h); }
.info-item__sub { font-size: 13px; color: var(--text-light); margin-top: 3px; line-height: 1.5; }

@media (max-width: 1100px) { .contact-layout { grid-template-columns: 1fr 360px; } }
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .company-info { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .company-info { padding: 28px 24px; }
}

/* === WPROWADZENIE (oferta.php, coaching.php) === */
.wprowadzenie .container { max-width: 1500px; }
.wprowadzenie .section-header { max-width: none; }
.wprowadzenie .section-header p { text-align: left; }
.wprowadzenie .seo-text { max-width: none; }
