/*
Theme Name: Provert Landing
Theme URI: https://provert.pl
Description: Efektowny landing zapowiadający platformę treningu motorycznego dla siatkarzy Provert. Branding zgodny z provert.avemtec.pl, zoptymalizowany pod SEO i konwersję, z zapisem do newslettera (kod early-access -20%).
Author: Provert
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: provert-landing
*/

/* ==========================================================================
   TOKENY BRANDU PROVERT
   ========================================================================== */
:root {
    --court:        #06281A;
    --court-2:      #0F4D32;
    --volt:         #83D803;
    --volt-bright:  #9BF019;
    --volt-dark:    #5FA802;
    --volt-light:   #E8F9C8;

    --ink:          #0C1F16;
    --paper:        #FFFFFF;
    --paper-2:      #F3F8EC;
    --muted:        #5A6B62;
    --line:         #E4ECE0;
    --line-dark:    rgba(131, 216, 3, 0.22);

    --ff-display: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ff-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ff-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

    --fs-hero: clamp(2.6rem, 6.2vw, 4.7rem);
    --fs-h2:   clamp(1.95rem, 3.6vw, 2.85rem);
    --fs-h3:   1.3rem;
    --fs-lead: clamp(1.08rem, 1.7vw, 1.3rem);

    --maxw: 1140px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 24px 60px rgba(6, 40, 26, 0.14);
    --shadow-volt: 0 16px 40px rgba(131, 216, 3, 0.28);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   RESET / BAZA
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--volt); outline-offset: 3px; border-radius: 4px; }

/* ==========================================================================
   UKŁAD
   ========================================================================== */
.pv-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.pv-container--narrow { max-width: 820px; }
.pv-section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.pv-section--dark { background: var(--court); color: #fff; }
.pv-section--tint { background: var(--paper-2); }

.pv-section-head { max-width: 720px; margin: 0 0 clamp(40px, 5vw, 60px); }
.pv-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.pv-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--ff-mono); font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--volt-dark); margin-bottom: 16px;
}
.pv-section--dark .pv-eyebrow { color: var(--volt); }
.pv-eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; display: inline-block; }
.pv-h2 { font-size: var(--fs-h2); }
.pv-lead { font-size: var(--fs-lead); color: var(--muted); margin-top: 18px; }
.pv-section--dark .pv-lead { color: rgba(255,255,255,0.75); }
.pv-text-volt { color: var(--volt); }

/* ==========================================================================
   PRZYCISKI
   ========================================================================== */
.pv-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--ff-display); font-weight: 700; font-size: 1rem;
    padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
    white-space: nowrap; text-align: center; line-height: 1;
}
.pv-btn--primary { background: var(--volt); color: var(--court); box-shadow: var(--shadow-volt); }
.pv-btn--primary:hover { background: var(--volt-bright); transform: translateY(-2px); }
.pv-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.pv-btn--ghost:hover { border-color: var(--volt); color: var(--volt); }
.pv-btn--dark { background: var(--court); color: #fff; }
.pv-btn--dark:hover { background: var(--court-2); transform: translateY(-2px); }
.pv-btn--lg { padding: 18px 36px; font-size: 1.08rem; }
.pv-btn--block { width: 100%; }

/* ==========================================================================
   NAGŁÓWEK / NAWIGACJA
   ========================================================================== */
.pv-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0; transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pv-header.is-scrolled {
    background: rgba(6, 40, 26, 0.92);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    padding: 10px 0; box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.pv-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pv-brand { display: inline-flex; align-items: center; gap: 11px; }
.pv-brand__mark { height: 38px; width: auto; flex-shrink: 0; display: block; }
.pv-brand__word { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.03em; color: #fff; }
.pv-brand__word span { color: var(--volt); }
.pv-nav { display: flex; align-items: center; gap: 16px; position: relative; }
.pv-nav__menu { display: flex; align-items: center; gap: 30px; }
.pv-nav__links { display: flex; gap: 26px; }
.pv-nav__links a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.82); transition: color 0.15s ease; }
.pv-nav__links a:hover { color: var(--volt); }
.pv-nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.pv-nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.25s var(--ease); }

/* ==========================================================================
   HERO + SYGNATURA „VERT"
   ========================================================================== */
.pv-hero {
    position: relative; background: var(--court); color: #fff; overflow: hidden;
    padding: clamp(130px, 17vw, 190px) 0 clamp(80px, 10vw, 120px);
}
.pv-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pv-hero__bg::before {
    content: ""; position: absolute; top: -25%; right: -10%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
    background: radial-gradient(circle, rgba(131,216,3,0.20), transparent 62%); filter: blur(8px);
}
.pv-hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(131,216,3,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(131,216,3,0.05) 1px, transparent 1px);
    background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000, transparent 75%);
}
.pv-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 240px; gap: clamp(30px, 5vw, 64px); align-items: center; }
.pv-hero__content { max-width: 680px; }
.pv-hero__badge {
    display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-mono); font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--volt);
    background: rgba(131,216,3,0.12); border: 1px solid var(--line-dark); padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.pv-hero__badge .pv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 0 rgba(131,216,3,0.6); animation: pvPulse 2s infinite; }
@keyframes pvPulse { 0% { box-shadow: 0 0 0 0 rgba(131,216,3,0.6); } 70% { box-shadow: 0 0 0 10px rgba(131,216,3,0); } 100% { box-shadow: 0 0 0 0 rgba(131,216,3,0); } }
.pv-hero__title { font-size: var(--fs-hero); margin-bottom: 22px; }
.pv-hero__sub { font-size: var(--fs-lead); color: rgba(255,255,255,0.82); max-width: 580px; margin-bottom: 34px; }

/* Pole zapisu w hero */
.pv-hero__cta { max-width: 540px; }
.pv-hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.pv-hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.pv-hero__trust svg { color: var(--volt); flex-shrink: 0; }

/* Sygnatura: pionowy miernik wybicia (pasek po prawej, etykiety po lewej) */
.pv-meter { position: relative; height: 360px; width: 100%; max-width: 230px; margin-left: auto; }
.pv-meter__track { position: absolute; top: 0; bottom: 0; right: 6px; width: 10px; background: rgba(255,255,255,0.08); border-radius: 999px; }
.pv-meter__fill {
    position: absolute; left: 0; right: 0; bottom: 0; height: 84%;
    background: linear-gradient(to top, var(--volt-dark), var(--volt) 60%, var(--volt-bright));
    border-radius: 999px; transform-origin: bottom; transform: scaleY(0); animation: pvRise 1.6s 0.3s var(--ease) forwards;
}
@keyframes pvRise { to { transform: scaleY(1); } }
.pv-meter__marker {
    position: absolute; right: calc(100% + 12px); bottom: 84%; transform: translateY(50%);
    background: var(--volt); color: var(--court); border-radius: 9px; padding: 7px 12px;
    font-family: var(--ff-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; white-space: nowrap;
    box-shadow: var(--shadow-volt); opacity: 0; animation: pvMarker 0.5s 1.7s var(--ease) forwards;
}
@keyframes pvMarker { from { opacity: 0; transform: translateY(50%) scale(0.7); } to { opacity: 1; transform: translateY(50%) scale(1); } }
.pv-meter__ticks { position: absolute; top: 0; bottom: 0; left: 0; right: 24px; }
.pv-meter__tick { position: absolute; right: 0; display: flex; flex-direction: row-reverse; align-items: center; gap: 8px; transform: translateY(50%); white-space: nowrap; }
.pv-meter__tick::before { content: ""; width: 10px; height: 2px; background: rgba(255,255,255,0.45); flex-shrink: 0; }
.pv-meter__tick span { font-family: var(--ff-mono); font-size: 0.72rem; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   FORMULARZ NEWSLETTERA
   ========================================================================== */
.pv-form { position: relative; }
.pv-form__row { display: flex; gap: 10px; }
.pv-form__input {
    flex: 1; min-width: 0; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
    background: #fff; border: 2px solid transparent; border-radius: 999px; padding: 15px 22px; transition: border-color 0.15s ease;
}
.pv-form__input::placeholder { color: #98a69d; }
.pv-form__input:focus { outline: none; border-color: var(--volt); }
.pv-form__consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.pv-form__consent a { color: var(--volt); text-decoration: underline; }
.pv-section--tint .pv-form__consent, .pv-form--light .pv-form__consent { color: var(--muted); }
.pv-form__consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--volt-dark); flex-shrink: 0; }
.pv-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pv-form__msg { margin-top: 14px; font-size: 0.95rem; font-weight: 600; min-height: 1px; }
.pv-form__msg.is-ok { color: var(--volt); }
.pv-form--light .pv-form__msg.is-ok { color: var(--volt-dark); }
.pv-form__msg.is-err { color: #ff8e8e; }
.pv-form--light .pv-form__msg.is-err { color: #c0392b; }
.pv-form.is-done .pv-form__row, .pv-form.is-done .pv-form__consent, .pv-form.is-done .pv-form__fields { display: none; }

/* Formularz B2B (kluby) */
.pv-form__fields { display: flex; flex-direction: column; gap: 10px; }
.pv-form__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pv-form__textarea { width: 100%; border-radius: 14px; resize: vertical; min-height: 88px; font-family: var(--ff-body); line-height: 1.5; }
.pv-form--club .pv-btn { margin-top: 4px; }

/* ==========================================================================
   KARTY WARTOŚCI
   ========================================================================== */
.pv-grid { display: grid; gap: 22px; }
.pv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pv-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pv-grid--2 { grid-template-columns: repeat(2, 1fr); }

.pv-feature {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pv-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--volt); }
.pv-feature__icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--volt-light); color: var(--court-2);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.pv-feature__title { font-size: var(--fs-h3); margin-bottom: 10px; }
.pv-feature__text { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* Sekcja „dla kogo" — pozycje */
.pv-positions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pv-position {
    background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
    padding: 22px; transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pv-position:hover { background: rgba(131,216,3,0.08); border-color: var(--volt); }
.pv-position__num { font-family: var(--ff-mono); font-size: 0.8rem; color: var(--volt); margin-bottom: 10px; }
.pv-position__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.12rem; color: #fff; margin-bottom: 6px; }
.pv-position__desc { font-size: 0.9rem; color: rgba(255,255,255,0.66); margin: 0; }

/* ==========================================================================
   PAKIETY / CENNIK
   ========================================================================== */
.pv-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pv-tier {
    position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; display: flex; flex-direction: column;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pv-tier:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pv-tier--featured { border: 2px solid var(--volt); box-shadow: var(--shadow); }
.pv-tier__flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--volt); color: var(--court); font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.pv-tier__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; }
.pv-tier__tagline { color: var(--muted); font-size: 0.92rem; margin: 6px 0 22px; }
.pv-tier__price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.pv-tier__old { font-family: var(--ff-mono); font-size: 1.05rem; color: #b3bdb4; text-decoration: line-through; }
.pv-tier__now { font-family: var(--ff-display); font-weight: 700; font-size: 2.5rem; color: var(--ink); line-height: 1; }
.pv-tier__per { color: var(--muted); font-size: 0.9rem; }
.pv-tier__early {
    display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 0.78rem; font-weight: 600;
    color: var(--volt-dark); background: var(--volt-light); padding: 6px 12px; border-radius: 8px; margin: 14px 0 22px; align-self: flex-start;
}
.pv-tier__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pv-tier__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: #344a3e; }
.pv-tier__list svg { color: var(--volt-dark); flex-shrink: 0; margin-top: 3px; }
.pv-tiers-note { text-align: center; margin-top: 26px; font-size: 0.92rem; color: var(--muted); }

/* ==========================================================================
   JAK TO DZIAŁA
   ========================================================================== */
.pv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.pv-step { position: relative; padding-top: 14px; }
.pv-step__num {
    font-family: var(--ff-mono); font-weight: 700; font-size: 1rem; color: var(--court);
    width: 44px; height: 44px; border-radius: 12px; background: var(--volt); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.pv-step__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }
.pv-step__text { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ==========================================================================
   PASEK OFERTY EARLY ACCESS
   ========================================================================== */
.pv-offer {
    position: relative; overflow: hidden; background: linear-gradient(135deg, var(--court), var(--court-2));
    border-radius: 28px; padding: clamp(40px, 6vw, 68px); color: #fff; text-align: center;
}
.pv-offer::before {
    content: ""; position: absolute; top: -40%; left: -10%; width: 50%; height: 180%;
    background: radial-gradient(circle, rgba(131,216,3,0.25), transparent 60%);
}
.pv-offer > * { position: relative; z-index: 1; }
.pv-offer__code {
    display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-mono); font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: 0.1em; color: var(--court);
    background: var(--volt); padding: 14px 30px; border-radius: 14px; margin: 22px 0 8px;
    border: 2px dashed rgba(6,40,26,0.3);
}
.pv-offer__discount { font-family: var(--ff-display); font-weight: 700; color: var(--volt); }
.pv-offer__code--locked { letter-spacing: 0.32em; padding-right: 22px; }
.pv-offer__codecap { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin: 4px 0 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.pv-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.pv-faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.pv-faq__q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
    padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.pv-faq__q::after { content: "+"; font-size: 1.6rem; color: var(--volt-dark); line-height: 1; transition: transform 0.25s var(--ease); }
.pv-faq__item.is-open .pv-faq__q::after { transform: rotate(45deg); }
.pv-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.pv-faq__a p { padding: 0 24px 22px; margin: 0; color: var(--muted); }

/* ==========================================================================
   FINAŁOWE CTA
   ========================================================================== */
.pv-final { text-align: center; }
.pv-final .pv-form { max-width: 520px; margin: 30px auto 0; }

/* ==========================================================================
   STOPKA
   ========================================================================== */
.pv-footer { background: var(--court); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.pv-footer__logo { display: inline-block; }
.pv-footer__logo-img { height: 78px; width: auto; display: block; }
.pv-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.pv-footer__about { max-width: 320px; }
.pv-footer__about p { font-size: 0.92rem; margin-top: 16px; }
.pv-footer__col h4 { font-family: var(--ff-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--volt); margin-bottom: 16px; }
.pv-footer__col a, .pv-footer__col span { display: block; font-size: 0.95rem; margin-bottom: 11px; color: rgba(255,255,255,0.72); transition: color 0.15s ease; }
.pv-footer__col a:hover { color: var(--volt); }
.pv-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.pv-footer__bottom .pv-mono { font-family: var(--ff-mono); }

/* ==========================================================================
   PROBLEM / ROZWIĄZANIE / DLA KOGO (split) / KLUBY / LISTA WARTOŚCI
   ========================================================================== */
.pv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* Problem */
.pv-problem {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px;
}
.pv-section--dark .pv-problem { background: rgba(255,255,255,0.04); border-color: var(--line-dark); }
.pv-problem__label {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-mono); font-size: 0.76rem;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--volt-dark); margin-bottom: 14px;
}
.pv-section--dark .pv-problem__label { color: var(--volt); }
.pv-problem__title { font-size: var(--fs-h3); margin-bottom: 16px; }
.pv-problem__list { display: flex; flex-direction: column; gap: 12px; }
.pv-problem__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.97rem; color: var(--muted); }
.pv-section--dark .pv-problem__list li { color: rgba(255,255,255,0.74); }
.pv-problem__list svg { color: #e06a6a; flex-shrink: 0; margin-top: 2px; }

/* Rozwiązanie — „dlaczego działa" */
.pv-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
.pv-why__item { border-left: 3px solid var(--volt); padding: 4px 0 4px 18px; }
.pv-why__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem; margin-bottom: 8px; color: #fff; }
.pv-why__text { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin: 0; }

/* Dla kogo — dwie grupy */
.pv-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pv-audience__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; }
.pv-audience__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--volt-light); color: var(--court-2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pv-audience__title { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; }
.pv-audience__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.pv-audience__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: #344a3e; }
.pv-audience__list svg { color: var(--volt-dark); flex-shrink: 0; margin-top: 3px; }
.pv-audience__link { margin-top: auto; font-family: var(--ff-display); font-weight: 700; color: var(--volt-dark); display: inline-flex; align-items: center; gap: 7px; }
.pv-audience__link:hover { gap: 11px; }

/* Sekcja klubów (B2B) */
.pv-club { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
.pv-club__list { display: flex; flex-direction: column; gap: 13px; margin: 24px 0 0; }
.pv-club__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: rgba(255,255,255,0.85); }
.pv-club__list svg { color: var(--volt); flex-shrink: 0; margin-top: 3px; }
.pv-club__panel { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 30px 28px; }
.pv-club__panel-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.pv-club__panel-sub { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.pv-club__alt { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 14px 0 0; text-align: center; }
.pv-club__alt a { color: var(--volt); text-decoration: underline; }

/* Lista wartości (lead magnet) */
.pv-valuelist { display: inline-flex; flex-direction: column; gap: 12px; margin: 22px auto 28px; text-align: left; }
.pv-valuelist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: rgba(255,255,255,0.9); }
.pv-valuelist svg { color: var(--volt); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   REVEAL (scroll) — ukrywanie tylko, gdy JS doda .pv-js-reveal na <html>
   ========================================================================== */
.pv-js-reveal .pv-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.pv-js-reveal .pv-reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSYWNOŚĆ
   ========================================================================== */
@media (max-width: 980px) {
    .pv-hero__inner { grid-template-columns: 1fr; }
    .pv-meter { display: none; }
    .pv-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .pv-footer__top { grid-template-columns: 1fr 1fr; }
    .pv-footer__about { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 760px) {
    .pv-nav__menu { display: none; }
    .pv-nav__toggle { display: block; }
    .pv-nav.is-open .pv-nav__menu {
        display: flex; flex-direction: column; align-items: stretch; gap: 6px;
        position: absolute; top: calc(100% + 8px); right: 0; left: auto; min-width: 220px;
        background: var(--court-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 16px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }
    .pv-nav.is-open .pv-nav__links { flex-direction: column; gap: 4px; }
    .pv-nav.is-open .pv-nav__links a { padding: 10px 8px; }
    .pv-nav.is-open .pv-btn { width: 100%; margin-top: 6px; }
    .pv-grid--3, .pv-grid--4, .pv-grid--2, .pv-tiers, .pv-steps, .pv-positions { grid-template-columns: 1fr; }
    .pv-split, .pv-why, .pv-audience, .pv-club, .pv-form__grid2 { grid-template-columns: 1fr; }
    .pv-form__row { flex-direction: column; }
    .pv-form__input { width: 100%; }
    .pv-btn { width: 100%; }
    .pv-hero__trust { gap: 8px 16px; }
}

/* ==========================================================================
   DOSTĘPNOŚĆ — REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .pv-meter__fill { transform: scaleY(1); }
    .pv-meter__marker { opacity: 1; }
    .pv-reveal { opacity: 1; transform: none; }
}
