/* ============================================
   ARC BILANS — Lifting strony
   Paleta: granat + złoto + krem
   ============================================ */

:root {
  --navy: #0B2540;
  --navy-dark: #061A30;
  --navy-light: #1A3556;
  --gold: #C9A961;
  --gold-dark: #A88A47;
  --gold-soft: #E8D9B4;
  --cream: #FAF7F1;
  --cream-dark: #F2EDE0;
  --white: #FFFFFF;
  --text: #1A2940;
  --muted: #5C6B7F;
  --border: #E5DDD0;
  --shadow-sm: 0 2px 10px rgba(11, 37, 64, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 37, 64, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 37, 64, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.accent { color: var(--gold-dark); position: relative; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 138, 71, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.header.scrolled .header__inner { height: 68px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.logo__icon { width: 36px; height: 36px; color: var(--gold-dark); flex-shrink: 0; }
.logo__wordmark { display: inline-flex; align-items: baseline; gap: 4px; }
.logo__mark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo__text {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { width: 100%; }

.nav__cta { padding: 10px 20px; font-size: 14px; }

.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(11, 37, 64, 0.1);
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.burger:hover { background: var(--cream); border-color: var(--gold); }
.burger:active { background: var(--cream-dark); }
.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  pointer-events: none;
}

/* Desktop — ukryj burger, pokaż nav */
@media (min-width: 769px) {
  .header .burger,
  .burger { display: none !important; }
}

/* FLOATING CALL BUTTON — okrąg, subtelnie */
.fab-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 260;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(11, 37, 64, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.fab-call svg {
  width: 22px;
  height: 22px;
}
.fab-call:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(11, 37, 64, 0.3);
}
.fab-call:active { transform: scale(0.98); }

/* "Do góry" przesunięty nad FAB-em */
.to-top { bottom: 88px; right: 28px; }
@media (max-width: 600px) {
  .fab-call { bottom: 18px; right: 18px; width: 48px; height: 48px; }
  .fab-call svg { width: 20px; height: 20px; }
  .to-top { bottom: 76px; right: 22px; width: 40px; height: 40px; font-size: 18px; }
}

/* Gdy widoczny banner cookies — przesuń FAB i to-top wyżej, żeby się nie zasłaniały */
body:has(#cookie-banner.cb-visible) .fab-call { bottom: 140px; }
body:has(#cookie-banner.cb-visible) .to-top { bottom: 204px; }
@media (max-width: 600px) {
  body:has(#cookie-banner.cb-visible) .fab-call { bottom: 200px; }
  body:has(#cookie-banner.cb-visible) .to-top { bottom: 258px; }
}

/* HERO */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--navy);
}
.hero__mountains {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 320px;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero__title .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}
.hero__lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--navy);
}
.trust-plus {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dark);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.trust-lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO VISUAL */
.hero__visual {
  position: relative;
}
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 37, 64, 0.25));
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}
.hero__badge svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}
.hero__badge strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero__badge span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.hero__badge:not(.hero__badge--2) { top: auto; bottom: 38%; left: -40px; }
.hero__badge--2 { bottom: 40px; right: -20px; }

/* TRUSTBAR */
.trustbar {
  background: var(--navy);
  padding: 36px 0;
  color: var(--white);
}
.trustbar__title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.trustbar__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
}
.trustbar__items span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  position: relative;
}
.trustbar__items span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -22px;
  color: var(--gold);
}

/* SECTION */
.section {
  padding: 110px 0;
  position: relative;
}
.section--alt {
  background: var(--cream);
  position: relative;
}
.section--alt::before, .section--alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.section--alt::before { top: 0; background: linear-gradient(180deg, var(--white), transparent); }
.section--alt::after { bottom: 0; background: linear-gradient(0deg, var(--white), transparent); }

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section__head .eyebrow { padding-left: 36px; padding-right: 36px; }
.section__head .eyebrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 24px; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}
.section__title .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}
.section__lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.service__icon svg { width: 28px; height: 28px; }
.service:hover .service__icon {
  background: var(--navy);
  color: var(--gold);
}

.service h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service__list li {
  font-size: 14.5px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.service__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.service--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-color: transparent;
}
.service--featured h3, .service--featured > p { color: var(--white); }
.service--featured > p { opacity: 0.85; }
.service--featured .service__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}
.service--featured .service__list li { color: rgba(255, 255, 255, 0.92); }
.service--featured .service__list li::before { border-color: var(--gold); }
.service__tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service--wide {
  grid-column: span 3;
}
.service__list--cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}

/* ADVISORY (Doradztwo gospodarcze) */
.advisory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advisory__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.advisory__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.advisory__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
}
.advisory__card h3 {
  font-size: 26px;
  margin-bottom: 18px;
}
.advisory__intro {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 15px;
}
.advisory__card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.advisory__card li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.advisory__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.advisory__outro {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--muted);
  font-size: 14.5px;
}

.advisory__card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-12px);
}
.advisory__card--featured:hover { transform: translateY(-18px); }
.advisory__card--featured h3 { color: var(--white); }
.advisory__card--featured .advisory__intro { color: var(--gold-soft); }
.advisory__card--featured li { color: rgba(255, 255, 255, 0.92); }
.advisory__card--featured li::before { border-color: var(--gold); }
.advisory__card--featured .advisory__outro {
  color: var(--gold-soft);
  border-top-color: rgba(255, 255, 255, 0.15);
}
.advisory__card--featured .advisory__num { color: var(--gold); opacity: 0.8; }

/* TEAM (ZESPOL) */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.member {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.member__photo {
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.6s ease;
}
.member:hover .member__photo img {
  transform: scale(1.05);
}
.member__cert {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(11, 37, 64, 0.92);
  color: var(--gold-soft);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}
.member__cert svg { color: var(--gold); flex-shrink: 0; }
.member__cert span { line-height: 1.3; letter-spacing: 0.02em; }

.member__body {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.member__body h3 {
  font-size: 24px;
  margin-bottom: 4px;
}
.member__role {
  display: block;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.member__body > p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.member__edu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.member__edu li {
  font-size: 13.5px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.member__edu li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.member__edu strong { color: var(--navy); font-weight: 700; }
.member__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.member__contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.member__contact a svg { color: var(--gold-dark); }
.member__contact a:hover { color: var(--gold-dark); }

/* CERT THUMBNAILS */
.member__certs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.member__certs-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
  width: 100%;
  margin-bottom: 4px;
}
.cert-thumb {
  width: 52px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: zoom-in;
  transition: all var(--transition);
  position: relative;
  flex-shrink: 0;
}
.cert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 2px;
}
.cert-thumb:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(11, 37, 64, 0.15);
}
.cert-thumb::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 64, 0.6);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.cert-thumb:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 64, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lbFadeIn 0.25s ease;
}
.lightbox.is-open { display: flex; }
@keyframes lbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox__inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  animation: lbZoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes lbZoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox__inner img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: var(--white);
}
.lightbox__inner figcaption {
  color: var(--gold-soft);
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lightbox__close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 32px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox__nav--prev { left: 30px; }
.lightbox__nav--next { right: 30px; }
.lightbox__nav:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .lightbox { padding: 20px; }
  .lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 24px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* CONTACT LEGAL */
.contact__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.contact__legal strong { color: var(--navy); font-weight: 600; }

.contact__list li > div a + a { display: block; }

/* WHY */
.why {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 37, 64, 0.5));
}
.why__statbox {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 1;
}
.why__stat {
  background: rgba(255, 255, 255, 0.97);
  padding: 18px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.why__stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.why__stat span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.why__content .section__title { text-align: left; }
.why__content .section__lead { font-size: 17px; margin-bottom: 36px; }
.why__content .eyebrow { padding-left: 36px; }
.why__content .section__head .eyebrow::after { display: none; }

.benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit {
  display: flex;
  gap: 20px;
  padding: 22px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.benefit:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.benefit__num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--gold-dark);
  line-height: 1;
  flex-shrink: 0;
}
.benefit h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.benefit p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, transparent 50%, transparent);
  background-size: 12px 2px;
  z-index: 0;
}
.step {
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--cream);
}
.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan__name {
  font-size: 24px;
  margin-bottom: 6px;
}
.plan__sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan__from {
  font-size: 14px;
  color: var(--muted);
}
.plan__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.plan__period {
  color: var(--muted);
  font-size: 15px;
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plan__list li {
  padding-left: 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.plan--featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.04);
}
.plan--featured:hover { transform: scale(1.04) translateY(-6px); }
.plan--featured .plan__name,
.plan--featured .plan__amount { color: var(--white); }
.plan--featured .plan__sub,
.plan--featured .plan__from,
.plan--featured .plan__period { color: var(--gold-soft); }
.plan--featured .plan__list li { color: rgba(255, 255, 255, 0.92); }
.plan--featured .plan__list li::before { border-color: var(--gold); }
.plan--featured .plan__price { border-bottom-color: rgba(255, 255, 255, 0.15); }
.plan--featured .btn--primary { background: var(--gold); color: var(--navy); }
.plan--featured .btn--primary:hover { background: var(--gold-soft); color: var(--navy); }

.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing__note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14.5px;
}
.pricing__note strong { color: var(--navy); font-weight: 600; }

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial blockquote {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial figcaption strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.testimonial figcaption span {
  font-size: 13px;
  color: var(--muted);
}

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all var(--transition);
  overflow: hidden;
}
.faq__item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-dark);
  transition: all var(--transition);
}
.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after { width: 2px; height: 10px; }
.faq__item[open] .faq__icon { background: var(--navy); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--gold); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__answer {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* MOUNTAIN QUOTE BAR */
.mountain-bar {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  isolation: isolate;
}
.mountain-bar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  z-index: -2;
}
.mountain-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 37, 64, 0.55) 0%, rgba(11, 37, 64, 0.78) 100%);
  z-index: -1;
}
.mountain-bar__inner {
  max-width: 880px;
  position: relative;
}
.mountain-bar__eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  background: rgba(11, 37, 64, 0.3);
}
.mountain-bar__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.35;
  margin-bottom: 28px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.mountain-bar__quote strong {
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}
.mountain-bar__author {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}

/* CTA */
.cta {
  margin: 0 24px 110px;
}
.cta__inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta__inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 70%);
  border-radius: 50%;
}
.cta__inner h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 10px;
}
.cta__inner p {
  color: var(--gold-soft);
  font-size: 17px;
  max-width: 500px;
}
.cta__inner .btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.cta__inner .btn:hover { background: var(--white); transform: translateY(-2px); }

/* CTA z górskim tłem */
.cta--mountains .cta__inner {
  background: transparent;
  z-index: 1;
}
.cta--mountains .cta__bg {
  position: absolute;
  inset: 0 24px;
  background-size: cover;
  background-position: center 30%;
  background-position: center;
  border-radius: var(--radius-lg);
  z-index: 0;
  filter: brightness(0.55);
}
.cta--mountains {
  position: relative;
}
.cta--mountains::after {
  content: '';
  position: absolute;
  inset: 0 24px;
  background: linear-gradient(135deg, rgba(11, 37, 64, 0.85) 0%, rgba(6, 26, 48, 0.65) 60%, rgba(168, 138, 71, 0.35) 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}
.cta--mountains .cta__inner::before { display: none; }
.cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 100px;
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info .section__title { text-align: left; font-size: 38px; }
.contact__info .section__lead { font-size: 17px; }
.contact__info .eyebrow { padding-left: 36px; }
.contact__info .eyebrow::after { display: none; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__list strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.contact__list a, .contact__list span {
  color: var(--text);
  font-size: 16px;
}
.contact__list a:hover { color: var(--gold-dark); }

.contact__form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: span 2; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.field--check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
  letter-spacing: 0;
}
.field--check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.form__msg {
  grid-column: span 2;
  text-align: center;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-dark);
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
}

/* FOOTER */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 360px;
}
.logo--footer { color: var(--white); }
.logo--footer .logo__mark { color: var(--white); }
.logo--footer .logo__text { color: var(--gold); }
.logo--footer .logo__icon { color: var(--gold); }

.footer__col h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer__col a, .footer__col span {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom div { display: flex; gap: 24px; }
.footer__bottom a:hover { color: var(--gold); }

.footer__credit {
  opacity: 0.5;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  transition: opacity var(--transition), color var(--transition);
}
.footer__credit::before {
  content: '·';
  margin-right: 24px;
  opacity: 0.5;
  pointer-events: none;
}
.footer__credit:hover { opacity: 1; }

/* LEGAL PAGES */
.legal {
  padding: 140px 0 80px;
  max-width: 860px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.legal h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-dark);
}
.legal h2 {
  font-size: 24px;
  margin: 48px 0 16px;
  color: var(--navy);
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}
.legal h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--navy);
}
.legal__lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal__date {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.legal p, .legal li {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal ul {
  padding-left: 22px;
  list-style: disc;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal ul ul { margin-top: 6px; padding-left: 22px; list-style: circle; }
.legal a { color: var(--gold-dark); text-decoration: underline; text-decoration-color: rgba(168, 138, 71, 0.4); transition: color var(--transition); }
.legal a:hover { color: var(--navy); text-decoration-color: var(--navy); }
.legal__box {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0 24px;
  font-size: 15px;
}
.legal__box strong { color: var(--navy); font-size: 15.5px; margin-bottom: 4px; }
.legal__box span { color: var(--text); }
.legal__cookie-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 16px 0;
}
.legal__cookie-cat h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.legal__tag {
  display: inline-block;
  background: var(--cream);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}
.legal__tag--locked {
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold-dark);
  border-color: rgba(201, 169, 97, 0.3);
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 14px;
}
.legal__table th, .legal__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.legal__table th {
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal__table td code {
  background: var(--cream);
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--gold-dark);
}
.legal__back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.legal__back a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
}
.legal__back a:hover { color: var(--gold-dark); }

@media (max-width: 768px) {
  .legal { padding: 110px 24px 60px; }
  .legal h1 { font-size: 32px; }
  .legal h2 { font-size: 20px; }
  .legal__cookie-cat { padding: 18px 20px; }
  .legal__table { font-size: 13px; }
  .legal__table th, .legal__table td { padding: 8px 10px; }
}

/* TO TOP */
.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  padding: 22px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
}
#cookie-banner.cb-visible { transform: translateY(0); }

.cb-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 280px; }
.cb-text strong {
  color: var(--white);
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.cb-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.cb-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.cb-text a:hover { text-decoration: underline; }

.cb-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cb-btn {
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, color 0.2s;
  white-space: nowrap;
  min-width: 130px;
  text-align: center;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn-accept { background: var(--gold); color: var(--navy); }
.cb-btn-accept:hover { background: var(--gold-soft); }
.cb-btn-necessary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cb-btn-necessary:hover { background: rgba(255, 255, 255, 0.14); }
.cb-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cb-btn-settings:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Panel ustawień */
#cb-panel {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 18px;
  border-radius: 8px;
}
.cb-panel-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 22px 12px;
}
.cb-panel-inner h3 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-weight: 700;
}
.cb-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cb-option:last-of-type { border-bottom: none; }
.cb-option-info { flex: 1; }
.cb-option-info strong {
  color: var(--white);
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}
.cb-option-info span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
  line-height: 1.45;
}
.cb-toggle-locked .cb-toggle-on {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Toggle switch */
.cb-toggle-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}
.cb-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  transition: background 0.25s;
}
.cb-slider:before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.25s;
}
.cb-toggle-switch input:checked + .cb-slider { background: var(--gold); }
.cb-toggle-switch input:checked + .cb-slider:before { transform: translateX(20px); }

.cb-panel-actions { padding-top: 18px; }

@media (max-width: 720px) {
  #cookie-banner { padding: 18px; }
  .cb-buttons { width: 100%; flex-direction: column; gap: 8px; }
  .cb-btn { width: 100%; min-width: 0; padding: 11px 14px; }
}

/* REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .why { grid-template-columns: 1fr; gap: 50px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service--wide { grid-column: span 2; }
  .service__list--cols { grid-template-columns: repeat(2, 1fr); }
  .advisory { grid-template-columns: 1fr; }
  .advisory__card--featured { transform: none; }
  .advisory__card--featured:hover { transform: translateY(-6px); }
  .pricing { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .testimonials { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .member { grid-template-columns: 240px 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    /* ukrycie — 4 mechanizmy łącznie, żeby na pewno działało */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header.scrolled .nav { top: 68px; max-height: calc(100vh - 68px); }
  .nav__link {
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav__link::after { display: none; }
  .nav__link:last-of-type { border-bottom: none; }
  .nav__cta {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

  .section { padding: 80px 0; }
  .hero { padding: 130px 0 80px; }
  .hero__title { font-size: 38px; }
  .hero__lead { font-size: 17px; }
  .hero__trust { gap: 28px; flex-wrap: wrap; }
  .hero__badge:not(.hero__badge--2) { left: -10px; }
  .hero__badge--2 { right: -10px; }

  .services { grid-template-columns: 1fr; }
  .service--wide { grid-column: auto; }
  .service__list--cols { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  /* Plakietki hero — żeby nie wystawały poza viewport */
  .hero__badge:not(.hero__badge--2) { left: 0; max-width: calc(100% - 20px); }
  .hero__badge--2 { right: 0; max-width: calc(100% - 20px); }

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px;
    text-align: left;
    min-height: 420px;
    justify-content: center;
  }
  .cta--mountains .cta__bg,
  .cta--mountains::after { inset: 0; border-radius: 0; }
  .cta--mountains { margin: 0 0 80px; }

  /* Cookie banner — żeby nie wylewał się na mobile */
  #cookie-banner { padding-left: 16px; padding-right: 16px; box-sizing: border-box; }
  .cb-inner { max-width: 100%; }
  .cb-text p { word-wrap: break-word; overflow-wrap: break-word; }

  .mountain-bar { padding: 80px 24px; }
  .mountain-bar__bg { background-attachment: scroll; }

  .contact__form { grid-template-columns: 1fr; padding: 28px; }
  .field--full { grid-column: auto; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 26px 0 30px;
    gap: 12px;
  }
  .footer__bottom > span { word-break: break-word; font-size: 12px; line-height: 1.5; }
  .footer__bottom div { flex-wrap: wrap; justify-content: center; gap: 8px 12px; }
  .footer__credit::before { margin-right: 0; display: none; }

  .contact__info .section__title { font-size: clamp(22px, 6.5vw, 32px); }

  .cta { margin-bottom: 60px; }

  .legal__cookie-cat { padding: 20px; margin: 20px 0; }
  .legal__cookie-cat + .legal__cookie-cat { margin-top: 24px; }

  .contact__legal { flex-direction: column; gap: 6px; }
  .field--check label span { flex: 1; min-width: 0; overflow-wrap: break-word; }
  .contact__info, .contact__form { min-width: 0; }
  .section { padding: 70px 0; }

  .member { grid-template-columns: 1fr; }
  .member { border-radius: 22px; }
  .member__photo { aspect-ratio: 4/5; min-height: 320px; max-height: none; }
  .member__photo img { object-position: 50% 12%; }
  .member__cert {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    font-size: 11px;
  }
  .member__body { padding: 22px 20px 24px; }
  .member__body h3 { font-size: 22px; }
  .member__role { font-size: 12px; letter-spacing: 0.05em; margin-bottom: 12px; }
  .member__edu { margin-bottom: 16px; padding: 14px 0; }
  .member__certs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    overflow: visible;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .member__certs-label { flex-basis: 100%; }
  .cert-thumb { width: 100%; height: auto; aspect-ratio: 3 / 4; }

  .to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 16px; }
  .trust-num { font-size: 36px; }
  .section__title { font-size: 28px; }
  .contact__info .section__title { font-size: 22px; }
  .contact__form { padding: 16px; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .member__photo { min-height: 280px; }
  .member__body { padding: 20px 18px 22px; }
  .member__body > p,
  .member__edu li,
  .member__contact a { font-size: 13.5px; }
  .member__certs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
