/* landing_v2.css — staging POC strony głównej. Scoped pod body.landing-v2.
   Paleta i typografia odzwierciedlają norda-biznes.info. */

/* ===== Poppins self-host (RODO + LCP; zamiast Google Fonts) ===== */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --lv-primary: #2E4872;            /* granat z wzorca norda-biznes.info (wariant C, wybór 2026-06-11) */
  --lv-primary-dark: #233e6d;       /* stan hover przycisków */
  --lv-primary-darker: #1c3559;
  --lv-accent-green: #4bd839;
  --lv-accent-lime: #85ee27;
  --lv-text: #2a2f3a;
  --lv-muted: #6b7280;
  --lv-bg: #ffffff;
  --lv-body: #f4f5f7;
  --lv-border: #e5e7eb;
  --lv-shadow: 0 8px 32px rgba(20, 30, 60, 0.08);
  --lv-radius: 24px;
  --lv-radius-sm: 12px;
  --lv-container: 1240px;
}

* { box-sizing: border-box; }

body.landing-v2 {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--lv-text);
  background: var(--lv-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* prevent any horizontal overflow leaking outside the body (preserves sticky) */
}

body.landing-v2 a { color: inherit; text-decoration: none; }
body.landing-v2 img { max-width: 100%; height: auto; display: block; }

/* Buttons override the global anchor color reset (specificity bump). */
body.landing-v2 .lv-btn--primary { color: #fff; }
body.landing-v2 .lv-btn--outline { color: var(--lv-primary); }
body.landing-v2 .lv-btn--white { color: var(--lv-primary); }
body.landing-v2 .lv-btn--ghost { color: #fff; }

/* ===== Header ===== */
.lv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lv-bg);
  border-bottom: 1px solid var(--lv-border);
}
.lv-header__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.lv-logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
body.landing-v2 .lv-logo__svg { height: 52px; width: auto; max-width: none; }
body.landing-v2 .lv-footer__logo { height: 56px; width: auto; max-width: none; }
.lv-logo__brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lv-primary);
  letter-spacing: -0.01em;
}
.lv-logo__divider {
  width: 1px;
  height: 36px;
  background: var(--lv-border);
}
.lv-logo__sub { font-size: 0.875rem; color: var(--lv-text); line-height: 1.3; }

/* Nav home icon button */
.lv-nav__home a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.lv-nav__home img {
  height: 24px;
  width: auto;
}

.lv-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.lv-nav a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--lv-text);
  transition: color 0.15s;
  white-space: nowrap;
}
.lv-nav a:hover { color: var(--lv-primary); }

.lv-cta { display: flex; gap: 12px; align-items: center; }

.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 12px 4px 12px 4px; /* sygnaturowy kształt przycisków wzorca */
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.lv-btn--primary { background: var(--lv-primary); color: #fff; }
.lv-btn--primary:hover { background: var(--lv-primary-dark); transform: translateY(-1px); }
.lv-btn--outline {
  background: transparent;
  color: var(--lv-primary);
  border-color: var(--lv-primary);
}
.lv-btn--outline:hover { background: var(--lv-primary); color: #fff; }
.lv-btn--white { background: #fff; color: var(--lv-primary); }
.lv-btn--white:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.15); transform: translateY(-1px); }
.lv-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.lv-btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.lv-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.lv-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lv-text);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
}
.lv-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lv-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lv-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.lv-hero {
  padding: 48px 32px;
  background: var(--lv-bg);
}
.lv-hero__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 37% 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 480px;
}
.lv-hero__text {
  background: var(--lv-primary);
  color: #fff;
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.lv-hero__text h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
}
.lv-hero__text p {
  margin: 0;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
}
.lv-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.lv-hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.lv-hero__photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px 4px 16px 4px;
  background: var(--lv-body);
  min-height: 480px;
  transform: skewX(-6deg); /* skośne panele jak wzorzec (wariant C) */
}
.lv-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 63, 149, 0.42);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
.lv-hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  transform: skewX(6deg) scale(1.18); /* kontr-skos + zapas, by zdjęcie pokryło rogi panelu */
}
.lv-hero__photo img:first-child { opacity: 1; }
.lv-hero__photo img.is-active { opacity: 1; }

/* ===== Members carousel ===== */
.lv-members {
  padding: 40px 32px;
  background: var(--lv-bg);
}
.lv-members__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 32px;
  align-items: center;
}
.lv-members__intro {
  font-size: 1.125rem;
  line-height: 1.45;
}
.lv-members__count {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lv-text);
}
.lv-members__label { color: var(--lv-muted); }

.lv-members__carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  min-width: 0; /* grid item: bez tego tor karuzeli rozpycha dokument w poziomie */
}
.lv-members__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lv-bg);
  border: 1px solid var(--lv-border);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lv-primary);
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.lv-members__arrow:hover { background: var(--lv-primary); color: #fff; }
.lv-members__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0; /* Required for overflow:hidden to clip flex child wider than its container */
}
.lv-members__track {
  display: flex;
  gap: 32px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.lv-members__slide {
  flex: 0 0 auto;
  width: 168px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #fff;
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  filter: grayscale(0.2);
  transition: filter 0.2s, transform 0.2s, border-color 0.2s;
}
.lv-members__slide:hover { filter: none; transform: translateY(-2px); border-color: var(--lv-primary); }
.lv-members__slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== About + stats ===== */
.lv-about {
  background: var(--lv-body);
  padding: 80px 32px;
}
.lv-about__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lv-about__media { position: relative; }
.lv-about__image img {
  width: 100%;
  border-radius: var(--lv-radius);
  background: linear-gradient(135deg, #a67052, #d4a47b);
  min-height: 360px;
}
.lv-about__stats {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 24px;
  box-shadow: var(--lv-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 220px;
}
.lv-about__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
}
.lv-about__stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lv-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.lv-about__stat-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.lv-about__content { max-width: 480px; }
.lv-about__eyebrow {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lv-primary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lv-about__lead {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 24px;
  color: var(--lv-text);
}
.lv-about__content p {
  margin: 0 0 16px;
  color: #4b5563;
}
.lv-about__cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===== Check tiles ===== */
.lv-check {
  padding: 80px 32px 100px;
  background: var(--lv-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lv-check::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.lv-check__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lv-check__header { margin-bottom: 48px; }
.lv-check__eyebrow {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  opacity: 0.95;
}
.lv-check__heading {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}
.lv-check__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
body.landing-v2 .lv-check__tile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  color: var(--lv-text);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  min-height: 280px;
}
.lv-check__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
body.landing-v2 .lv-check__tile--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.lv-check__tile--ghost:hover {
  border-color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
body.landing-v2 .lv-check__tile--ghost { color: #fff; }
.lv-check__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
}
.lv-check__icon img { width: 100%; height: 100%; object-fit: contain; }
.lv-check__tile--ghost .lv-check__icon { width: 64px; height: 64px; opacity: 0.7; }
.lv-check__name {
  font-weight: 700;
  font-size: 1.25rem;
  color: inherit;
}
.lv-check__desc {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: inherit;
  opacity: 0.9;
}
.lv-check__tile--ghost .lv-check__desc { opacity: 0.85; }

/* ===== Members grid (Nasi członkowie) ===== */
.lv-members-grid {
  background: var(--lv-body);
  padding: 60px 32px 80px;
}
.lv-members-grid__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
}
.lv-members-grid__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lv-text);
  margin: 0 0 32px;
  padding-top: 32px;
  border-top: 1px solid var(--lv-border);
}
.lv-members-grid__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
body.landing-v2 .lv-members-grid__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 28px;
  gap: 16px;
  color: var(--lv-text);
  transition: transform 0.2s, box-shadow 0.2s;
}
body.landing-v2 .lv-members-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lv-shadow);
}
.lv-members-grid__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 110px;
  border: 1px solid var(--lv-body);
  border-radius: var(--lv-radius-sm) 0 var(--lv-radius-sm) 0;
  padding: 12px;
}
.lv-members-grid__logo {
  max-height: 70px;
  max-width: 80%;
  object-fit: contain;
}
.lv-members-grid__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.lv-members-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lv-members-grid__tag {
  display: inline-block;
  background: var(--lv-body);
  color: var(--lv-primary-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lv-members-grid__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
body.landing-v2 .lv-members-grid__cta .lv-btn { background: var(--lv-primary-dark); color: #fff; border-color: var(--lv-primary-dark); }
body.landing-v2 .lv-members-grid__cta .lv-btn:hover { background: var(--lv-primary-darker); border-color: var(--lv-primary-darker); }

/* ===== News + Events (2 columns) ===== */
.lv-news-events {
  padding: 80px 32px;
  background: var(--lv-bg);
}
.lv-news-events__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}
.lv-news-events__eyebrow {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lv-primary);
  margin-bottom: 12px;
}
.lv-news-events__heading {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 32px;
  color: var(--lv-text);
}

.lv-news-card {
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lv-border);
}
.lv-news-card:last-child { border-bottom: 0; }
.lv-news-card__img {
  display: block;
  width: 100%;
  height: 140px;
  border-radius: 16px 0 16px 0;
  border: 1px solid var(--lv-border);
  overflow: hidden;
  background: var(--lv-body);
}
.lv-news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.lv-news-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0.4;
}
.lv-news-card__body { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
body.landing-v2 .lv-news-card__title { font-size: 1.0625rem; font-weight: 700; margin: 0; line-height: 1.4; color: var(--lv-text); }
body.landing-v2 .lv-news-card__title a { color: inherit; }
body.landing-v2 .lv-news-card__title a:hover { color: var(--lv-primary); }
.lv-news-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lv-body);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--lv-text);
  width: fit-content;
}
.lv-news-card__date img { width: 14px; height: 14px; }
body.landing-v2 .lv-news-card__more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lv-primary);
  text-decoration: underline;
  width: fit-content;
}

.lv-event-card {
  background: var(--lv-body);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 32px;
}
.lv-event-card__img {
  display: block;
  width: 100%;
  height: 220px;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.lv-event-card__img img { width: 100%; height: 100%; object-fit: cover; }
.lv-event-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.4;
}
body.landing-v2 .lv-event-card__title { font-size: 1.125rem; font-weight: 700; margin: 0 0 12px; color: var(--lv-text); line-height: 1.4; }
body.landing-v2 .lv-event-card__title a { color: inherit; }
body.landing-v2 .lv-event-card__title a:hover { color: var(--lv-primary); }
.lv-event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--lv-text);
}
.lv-event-card__date img { width: 14px; height: 14px; }

/* ===== Testimonials (Opinie) ===== */
.lv-testimonials {
  padding: 80px 32px;
  background: var(--lv-bg);
}
.lv-testimonials__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
}
.lv-testimonials__eyebrow {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lv-primary);
  margin-bottom: 12px;
}
.lv-testimonials__heading {
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 40px;
  color: var(--lv-text);
}
.lv-testimonials__slider { position: relative; }
.lv-testimonials__viewport { overflow: hidden; }
.lv-testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.lv-testimonials__slide {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
}
.lv-testimonials__card {
  background: #fff;
  border: 1px solid var(--lv-border);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.lv-testimonials__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lv-testimonials__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lv-body);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.lv-testimonials__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lv-testimonials__avatar-fallback {
  font-size: 1.5rem; font-weight: 700; color: var(--lv-primary-dark);
}
.lv-testimonials__person { flex: 1; }
.lv-testimonials__name { font-size: 1rem; font-weight: 700; color: var(--lv-text); }
.lv-testimonials__company { font-size: 0.875rem; color: var(--lv-muted); }
.lv-testimonials__quote-icon { width: 48px; height: 48px; opacity: 0.85; }
.lv-testimonials__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lv-text);
  margin: 0;
}
.lv-testimonials__arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.lv-testimonials__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lv-bg);
  border: 1px solid var(--lv-border);
  cursor: pointer;
  font-size: 1.5rem; font-weight: 700;
  color: var(--lv-primary);
  transition: background 0.15s, color 0.15s;
}
.lv-testimonials__arrow:hover { background: var(--lv-primary); color: #fff; border-color: var(--lv-primary); }

/* ===== Footer ===== */
.lv-footer {
  background: var(--lv-primary); /* stopka #2E4872 jak wzorzec */
  color: #d1d5db;
  padding: 64px 32px 24px;
}
.lv-footer__inner {
  max-width: var(--lv-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.lv-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1); /* biała wersja logo (zamiast 117KB SVG z osadzonym rastrem) */
}
.lv-footer__col h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.lv-footer__col a { color: #d1d5db; }
.lv-footer__col a:hover { color: #fff; }
.lv-footer .lv-logo__brand { color: #fff; }
.lv-footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lv-footer__social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background 0.2s;
}
.lv-footer__social a:hover { background: rgba(255,255,255,0.16); }
.lv-footer__social img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.lv-footer__bottom {
  max-width: var(--lv-container);
  margin: 32px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72); /* >=4.5:1 na granacie (WCAG AA; było 0.5 = kontrast 4.32) */
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .lv-hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .lv-hero__text { border-radius: var(--lv-radius); padding: 40px 32px; }
  .lv-hero__media { grid-template-columns: 1fr 1fr; min-height: 280px; }
  .lv-hero__photo { min-height: 280px; }
  .lv-hero__photo--3 { display: none; }
  .lv-about__inner { grid-template-columns: 1fr; gap: 32px; }
  .lv-check__grid { grid-template-columns: repeat(2, 1fr); }
  .lv-footer__inner { grid-template-columns: 1fr 1fr; }
  .lv-logo__svg { height: 44px; }
  .lv-members-grid__cards { grid-template-columns: repeat(2, 1fr); }
  .lv-news-events__inner { grid-template-columns: 1fr; gap: 48px; }
  .lv-testimonials__slide { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  .lv-header__inner { padding: 12px 12px; gap: 8px; }
  .lv-logo__divider, .lv-logo__sub { display: none; }
  body.landing-v2 .lv-logo__svg { height: 40px; }
  .lv-nav { display: none; }
  /* kompaktowe CTA w mobilnym headerze — jak na norda-biznes.info */
  .lv-cta { gap: 6px; margin-left: auto; }
  .lv-cta .lv-btn { padding: 7px 12px; font-size: 0.75rem; }
  .lv-mobile-toggle { display: flex; flex-shrink: 0; }
  .lv-header__inner.is-open .lv-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    gap: 12px;
    box-shadow: var(--lv-shadow);
    border-top: 1px solid var(--lv-border);
  }
  .lv-header__inner.is-open .lv-nav ul { flex-direction: column; gap: 12px; }
  .lv-hero { padding: 24px 16px; }
  .lv-hero__text { padding: 32px 24px; }
  .lv-hero__media { grid-template-columns: 1fr; min-height: 240px; }
  .lv-hero__photo--2, .lv-hero__photo--3 { display: none; }
  /* mobile: pojedyncze zdjęcie prosto, jak wzorzec */
  .lv-hero__photo { transform: none; border-radius: var(--lv-radius) 0 var(--lv-radius) 0; }
  .lv-hero__photo img { transform: none; }
  .lv-members { padding: 32px 16px; }
  .lv-members__inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .lv-about { padding: 48px 16px; }
  .lv-about__stats {
    position: static;
    margin: -32px auto 24px;
    max-width: none;
  }
  .lv-check { padding: 48px 16px; }
  .lv-check__grid { grid-template-columns: 1fr; }
  .lv-footer { padding: 48px 16px 16px; }
  .lv-footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .lv-members-grid { padding: 48px 16px; }
  .lv-members-grid__cards { grid-template-columns: 1fr; }
  .lv-news-events { padding: 48px 16px; }
  .lv-news-card { grid-template-columns: 1fr; gap: 12px; }
  .lv-news-card__img { height: 180px; }
  .lv-testimonials { padding: 48px 16px; }
  .lv-testimonials__quote-icon { width: 32px; height: 32px; }
}

/* ===== Scroll reveal (klasy dodaje landing_v2.js; bez JS wszystko widoczne) ===== */
@media (prefers-reduced-motion: no-preference) {
  .lv-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .lv-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ===== Podstrony publiczne (Faza 1: o-nas, statut, władze, opłaty, kontakt, członkowie, aktualności, wydarzenia) ===== */
.lv-page-hero { padding: 24px 32px 0; }
.lv-page-hero__panel {
  max-width: var(--lv-container);
  margin: 0 auto;
  background: var(--lv-primary);
  color: #fff;
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.lv-page-hero__panel h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
}
.lv-page {
  max-width: var(--lv-container);
  margin: 0 auto;
  padding: 40px 32px 80px;
}
.lv-page--narrow { max-width: 880px; }
.lv-page h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.lv-page h3 { font-size: 1.15rem; margin: 28px 0 8px; }
.lv-page p, .lv-page li { line-height: 1.7; color: var(--lv-text); }
body.landing-v2 .lv-page a:not(.lv-btn) { color: var(--lv-primary); text-decoration: underline; }
.lv-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--lv-primary);
  color: var(--lv-primary);
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 4px 0 12px;
}
.lv-date-badge img { width: 18px; height: 18px; }

/* Kafelki celów / „Norda w liczbach" (o-nas) */
.lv-goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
body.landing-v2 .lv-goal-card {
  background: #fff;
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 24px;
}
.lv-goal-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.lv-goal-card p { margin: 0; font-size: 0.9375rem; color: var(--lv-muted); }
.lv-stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.lv-stat-strip__item {
  background: var(--lv-body);
  border-radius: var(--lv-radius-sm);
  padding: 20px;
  text-align: center;
}
.lv-stat-strip__value { display: block; font-size: 1.6rem; font-weight: 700; color: var(--lv-primary); }
.lv-stat-strip__label { font-size: 0.875rem; color: var(--lv-muted); }

/* Władze Izby */
.lv-people-section h2 { margin: 40px 0 16px; }
.lv-people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
body.landing-v2 .lv-person-card {
  background: #fff;
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  padding: 24px 16px;
  text-align: center;
}
.lv-person-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  background: var(--lv-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lv-primary);
}
.lv-person-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lv-person-card__name { font-weight: 600; }
.lv-person-card__role { display: block; font-size: 0.8125rem; color: var(--lv-primary); font-weight: 600; margin-top: 2px; }
.lv-person-card__company { display: block; font-size: 0.8125rem; color: var(--lv-muted); margin-top: 4px; }

/* Publiczny katalog członków */
.lv-dir-search {
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius-sm);
  font: inherit;
  margin: 8px 0 24px;
}
.lv-dir-search:focus { outline: 2px solid var(--lv-primary); border-color: var(--lv-primary); }
.lv-dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Listy aktualności / wydarzeń */
.lv-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.landing-v2 .lv-list-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 2px solid var(--lv-border);
  border-radius: var(--lv-radius) 0 var(--lv-radius) 0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
body.landing-v2 .lv-list-card:hover { transform: translateY(-2px); box-shadow: var(--lv-shadow); }
.lv-list-card__img {
  flex: 0 0 180px;
  min-height: 150px;
  background: var(--lv-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.lv-list-card__img img { width: 100%; height: 100%; object-fit: cover; }
.lv-list-card__body { padding: 16px 20px 16px 0; display: flex; flex-direction: column; gap: 6px; }
.lv-list-card__title { margin: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
body.landing-v2 .lv-list-card__body a { color: inherit; text-decoration: none; }
.lv-list-card__more { font-size: 0.875rem; font-weight: 600; color: var(--lv-primary); text-decoration: underline; margin-top: auto; }

/* „Wszystkie …" przyciski pod sekcjami landingu */
.lv-news-events__all { margin-top: 16px; }

@media (max-width: 1024px) {
  .lv-people-grid, .lv-dir-grid { grid-template-columns: repeat(3, 1fr); }
  .lv-goal-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lv-page-hero { padding: 16px 16px 0; }
  .lv-page-hero__panel { padding: 32px 24px; }
  .lv-page { padding: 24px 16px 56px; }
  .lv-people-grid, .lv-dir-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-goal-grid { grid-template-columns: 1fr; }
  .lv-list-card { flex-direction: column; }
  .lv-list-card__img { flex-basis: auto; height: 180px; }
  .lv-list-card__body { padding: 0 16px 16px; }
}

/* Treść artykułu (publiczna aktualność / wydarzenie) */
.lv-article-content p { margin: 0 0 14px; }
.lv-article-content img { border-radius: var(--lv-radius-sm); margin: 12px 0; }
.lv-article-content h3 { margin: 28px 0 10px; }
.lv-article-content ul, .lv-article-content ol { line-height: 1.7; }

/* ===== View Transitions między podstronami (progressive enhancement, Chrome 126+) ===== */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}

/* Swipe na karuzeli logotypów — przewijanie pionowe strony zostaje natywne */
.lv-members__viewport { touch-action: pan-y; cursor: grab; }
.lv-members__viewport:active { cursor: grabbing; }


/* Wejście dla członków Izby — mocno wyeksponowane (dyrektywa Macieja 17.07):
   wytłuszczone, czerwona obwoluta, dopisek pod spodem. */
.lv-btn--member {
  display: inline-flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 8px 20px; border: 2.5px solid #c1121f; border-radius: 6px;
  color: #c1121f; background: #fff; line-height: 1.2; text-align: center;
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.12);
}
.lv-btn--member strong { font-weight: 800; letter-spacing: .01em; }
.lv-btn--member .lv-btn-sub { font-size: 10.5px; font-weight: 600; color: #c1121f; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }
.lv-btn--member:hover { background: #c1121f; color: #fff; }
.lv-btn--member:hover .lv-btn-sub { color: #fff; }
